/* =========================================================
   URS Choices Ltd — Global Stylesheet
   ========================================================= */

:root {
  /* Brand palette — blue-led, drawn from the URS Choices eagle mark */
  --navy: #0b2947;
  --navy-2: #123b64;
  --blue: #1c5f9e;
  --blue-2: #2b74b8;
  --sky: #4f9fe0;
  --blue-light: #eaf3fc;
  --blue-mist: #f2f7fc;
  --gold: #b98a3d;

  --ink: #131c26;
  --grey-900: #212b36;
  --grey-700: #4b5966;
  --grey-500: #6d7a86;
  --grey-300: #c4ccd4;
  --grey-100: #e7ecf1;
  --paper: #ffffff;
  --offwhite: #f7f9fb;

  --shadow-sm: 0 1px 2px rgba(11, 41, 71, 0.08), 0 1px 1px rgba(11, 41, 71, 0.04);
  --shadow-md: 0 8px 24px rgba(11, 41, 71, 0.12);
  --shadow-lg: 0 20px 48px rgba(11, 41, 71, 0.18);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --container: 1180px;
  --header-h: 84px;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; }

h1, h2, h3, h4 {
  margin: 0 0 0.5em;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--navy);
}

h1 { font-size: clamp(2.2rem, 5.4vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1em; color: var(--grey-700); }
p:last-child { margin-bottom: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 2rem);
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.9rem;
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--grey-700);
}

.section {
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
}

.section-alt { background: var(--blue-mist); }
.section-navy {
  background: var(--navy);
  color: #fff;
}
.section-navy h2, .section-navy h3, .section-navy h4 { color: #fff; }
.section-navy p { color: rgba(255,255,255,0.78); }

.section-head {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
}
.section-head.left { margin: 0 0 3rem; text-align: left; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.96rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--navy-2); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-light {
  background: #fff;
  color: var(--navy);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.55);
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.btn-outline-navy {
  background: transparent;
  border-color: var(--blue);
  color: var(--blue);
}
.btn-outline-navy:hover { background: var(--blue); color: #fff; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid var(--grey-100);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}
.brand img { height: 44px; width: auto; }
.brand-text {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  color: var(--navy);
  line-height: 1.05;
}
.brand-text span {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--blue);
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 1.6vw, 1.8rem);
}
.main-nav a {
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--grey-700);
  padding: 0.4rem 0.1rem;
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.main-nav a:hover { color: var(--navy); }
.main-nav a:hover::after { transform: scaleX(1); }
.main-nav a.active { color: var(--navy); }
.main-nav a.active::after { transform: scaleX(1); }

/* The "Get in Touch" pill lives inside .main-nav, so it needs to win
   against the ".main-nav a" text-colour rule above (higher specificity
   than plain ".btn-primary" would otherwise get). */
.main-nav a.btn-primary,
.main-nav a.btn-primary:hover {
  color: #fff;
}
.main-nav a.btn-primary::after { display: none; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.nav-phone {
  display: none;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.92rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--grey-100);
  background: #fff;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 641px) {
  .nav-phone { display: inline-block; }
}

@media (max-width: 1080px) {
  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem clamp(1.5rem, 5vw, 2rem) 2rem;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    overflow-y: auto;
    z-index: 99;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--grey-100);
    font-size: 1.05rem;
  }
  .main-nav a::after { display: none; }
  .main-nav .btn { margin-top: 1.2rem; align-self: flex-start; }
  .nav-toggle { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(88vh, 780px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,20,36,0.35) 0%, rgba(6,20,36,0.55) 55%, rgba(6,20,36,0.92) 100%);
  z-index: -1;
}
.hero-inner {
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(3rem, 7vw, 4.5rem);
  max-width: 760px;
}
.hero-inner .eyebrow { color: #bcdcfb; }
.hero-inner h1 { color: #fff; }
.hero-inner p.lead { color: rgba(255,255,255,0.86); }

.page-banner {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  color: #fff;
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(11,41,71,0.92) 0%, rgba(11,41,71,0.68) 100%);
  z-index: -1;
}
.page-banner-inner { padding: 3.5rem 0; }
.page-banner h1 { color: #fff; margin-bottom: 0.6rem; }
.page-banner p { color: rgba(255,255,255,0.85); max-width: 620px; }
.breadcrumb {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
}
.breadcrumb a { color: #fff; }
.breadcrumb a:hover { text-decoration: underline; }

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--navy);
  color: #fff;
  padding: 1.4rem 0;
}
.trust-bar .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.6rem 2.6rem;
  text-align: center;
}
.trust-bar .trust-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky);
}
.trust-names {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  justify-content: center;
}
.trust-names span {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: #fff;
  opacity: 0.92;
}

/* ---------- Grids & cards ---------- */
.grid {
  display: grid;
  gap: clamp(1.2rem, 2.4vw, 2rem);
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

@media (max-width: 900px) {
  .grid-3, .grid-4, .grid-5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
}
.split.reverse .split-media { order: 2; }
.split.reverse .split-text { order: 1; }
@media (max-width: 820px) {
  .split.reverse .split-media, .split.reverse .split-text { order: initial; }
}

.split-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.card {
  background: #fff;
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-md);
  padding: clamp(1.5rem, 2.6vw, 2rem);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card .icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  flex-shrink: 0;
}
.card .icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 0.5rem; }
.card p { font-size: 0.96rem; }

.value-card { text-align: left; }

/* ---------- Stats ---------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
@media (max-width: 760px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }
.stat .num {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.section-navy .stat .num { color: #fff; }
.stat .label {
  margin-top: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--grey-500);
  letter-spacing: 0.02em;
}
.section-navy .stat .label { color: rgba(255,255,255,0.7); }

/* ---------- Pull quote ---------- */
.pull-quote {
  position: relative;
  padding: clamp(2rem, 5vw, 3rem) 0;
  text-align: center;
}
.pull-quote blockquote {
  margin: 0 auto;
  max-width: 780px;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.pull-quote blockquote::before { content: "\201C"; }
.pull-quote blockquote::after { content: "\201D"; }
.pull-quote cite {
  display: block;
  margin-top: 1.1rem;
  font-style: normal;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--blue);
}
.pull-quote cite span {
  display: block;
  font-weight: 500;
  color: var(--grey-500);
  font-size: 0.85rem;
  margin-top: 0.15rem;
}

.section-navy .pull-quote blockquote { color: #fff; }
.section-navy .pull-quote cite { color: var(--sky); }
.section-navy .pull-quote cite span { color: rgba(255,255,255,0.65); }

/* ---------- Badges (compliance / standards) ---------- */
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  background: var(--blue-light);
  color: var(--navy-2);
  font-weight: 700;
  font-size: 0.87rem;
  border: 1px solid #dcebfa;
}
.badge svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--blue); }
.badge.badge-soft {
  background: transparent;
  border-style: dashed;
  color: var(--grey-700);
}

/* ---------- Timeline ---------- */
.timeline {
  position: relative;
  margin: 0;
  padding-left: 2rem;
  border-left: 3px solid var(--blue-light);
}
.timeline-item {
  position: relative;
  padding-bottom: 2.4rem;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -2.44rem;
  top: 0.2rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--blue-light);
}
.timeline-item .year {
  font-weight: 800;
  color: var(--blue);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

/* ---------- Photo / gallery ---------- */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}
@media (max-width: 900px) { .photo-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .photo-grid { grid-template-columns: repeat(2, 1fr); } }

.photo-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: zoom-in;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--grey-100);
}
.photo-grid figure:nth-child(5n+1) { grid-row: span 2; aspect-ratio: 4/5; }
.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.photo-grid figure:hover img { transform: scale(1.06); }
.photo-grid figure::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,41,71,0) 55%, rgba(11,41,71,0.55) 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.photo-grid figure:hover::after { opacity: 1; }
.photo-grid figcaption {
  position: absolute;
  left: 0.85rem; right: 0.85rem; bottom: 0.7rem;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 1;
}
.photo-grid figure:hover figcaption { opacity: 1; transform: translateY(0); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(6,14,24,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vh 4vw;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
  cursor: zoom-out;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 100%;
  max-height: 88vh;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}
.lightbox figcaption {
  position: absolute;
  bottom: 4vh;
  left: 0; right: 0;
  text-align: center;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.75rem;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 300;
  cursor: pointer;
  background: none;
  border: none;
}

/* ---------- FAQ accordion ---------- */
.accordion-item {
  border-bottom: 1px solid var(--grey-100);
}
.accordion-item:first-child { border-top: 1px solid var(--grey-100); }
.accordion-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  text-align: left;
  padding: 1.35rem 0;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--navy);
  cursor: pointer;
}
.accordion-q .plus {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: transform 0.25s ease;
}
.accordion-item.open .plus { transform: rotate(45deg); }
.accordion-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.accordion-a p { padding-bottom: 1.35rem; margin: 0; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card {
  background: #fff;
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
}
.contact-card .icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--blue-light);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-card .icon svg { width: 22px; height: 22px; }
.contact-card h4 { margin-bottom: 0.25rem; }
.contact-card a.link { color: var(--blue); font-weight: 700; }

.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--grey-100);
  box-shadow: var(--shadow-sm);
}
.map-wrap iframe { display: block; width: 100%; height: 340px; border: 0; }

.email-badge {
  display: inline-flex;
  align-items: center;
  background: var(--blue-light);
  border: 1px solid #dcebfa;
  border-radius: var(--radius-md);
  padding: 0.9rem 1.3rem;
}
.email-badge img { height: 22px; width: auto; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--navy) 0%, var(--blue) 130%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(2.2rem, 5vw, 3.5rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.cta-banner h2 { color: #fff; margin-bottom: 0.35rem; }
.cta-banner p { color: rgba(255,255,255,0.85); margin: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.72);
  padding: clamp(3rem, 6vw, 4.5rem) 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; }
.footer-brand img { height: 42px; width: auto; }
.footer-brand-text { font-weight: 800; color: #fff; font-size: 1.1rem; }
.site-footer h4 {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.site-footer li { margin-bottom: 0.65rem; }
.site-footer a:hover { color: #fff; }
.footer-address { line-height: 1.7; }
.footer-email img { height: 18px; width: auto; margin-top: 0.3rem; }

.footer-bottom {
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.65); }

.whatsapp-fab {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s ease;
}
.whatsapp-fab:hover { transform: scale(1.08); }
.whatsapp-fab svg { width: 28px; height: 28px; fill: #fff; }

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Misc utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.small { font-size: 0.88rem; color: var(--grey-500); }
.divider { height: 1px; background: var(--grey-100); border: none; margin: clamp(2rem,4vw,3rem) 0; }
.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: #fbf2e3;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.8rem;
}
