:root {
  --primary: #fbdc30;
  --primary-dark: #fbea81;
  --accent: #6b7280;
  --text: #959495;
  --muted: #6f7277;
  --bg: #f3f0e8;
  --white: #fafafa;
  --border: #ddd5c6;
}
/* ===== GLOBAL CLEAN SPACING ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
section {
  padding: 2rem 0; /* reduced spacing */
}

.container {
  margin: 0 auto;
  padding: 0;
}
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  /* background: linear-gradient(145deg, #fffef4, #fbea81); */
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  /* Use the updated wider width */
  width: min(1280px, 96%);
  margin: 0 auto;
}

header {
  background: #fafafac2;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #fafafa70;
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 6px 20px #16457514;
}

.home-page header {
  position: absolute;
  width: 100%;
  background: #fafafad9;
  border-bottom: 1px solid #d7e5f3;
  box-shadow: 0 4px 14px #183b5b1a;
}

.top-contact {
  border-bottom: 1px solid #fafafa88;
  background: linear-gradient(145deg, #fffef4, #fbea81);
}

.top-contact-inner {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  padding: 0.35rem 0;
  color: #eff6ff;
  font-size: 0.86rem;
}

.top-contact-inner p {
  margin: 0;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.home-page .topbar {
  padding: 0.7rem 0;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  color: #383733;
}

.brand span {
  color: #d4a017;
}

.home-page .brand {
  color: #3b3934;
  text-shadow: none;
  font-size: 1rem;
  letter-spacing: 0.2px;
}

.home-page .brand span {
  color: #c99713;
}

.btn {
  background: #fafafa;
  color: #FBDC30 !important;
  
  border-radius: 10px;
  border:#FBDC30 3px solid;
  padding: 0.7rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
  box-shadow: 0 6px 18px rgba(184, 134, 11, 0.25);
  transition: all 0.3s ease;
}

/* 🔥 HOVER */
.btn:hover {
  background: #FBDC30;
  border:#FBDC30 3px solid;
  font-weight: 500;
   
  color:#fafafa !important;
}
.btn-light {
  background: white;
  color: #3e3a33;
  border: 1px solid #e6dcc6;
}

.btn-light:hover {
  background: linear-gradient(145deg, #fffef4, #fbea81);
}
.section {
  padding: 2rem 0;
}

/* ================= HERO ================= */
.hero {
  position: relative;
  min-height: 500px;
  height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(44, 41, 36, 0.95) 0%,
      rgba(44, 41, 36, 0.86) 35%,
      rgba(44, 41, 36, 0) 70%
    ),
    url("images/WhatsApp\ Image\ 2026-04-07\ at\ 3.07.28\ PM.jpeg");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  color: #fafafa;
}

.hero-text {
  max-width: 650px;
  padding-left: 10px;
  padding-top: 30px;
}

.hero-tag {
  font-size: 1.1rem;
  font-weight: 400;
  color: #efd98c;
  margin-bottom: 1rem;
  display: block;
}

.hero-text h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1;
  margin: 0 0 1rem 0;
  font-weight: 700;
  letter-spacing: -1px;
}

.hero-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ece4d4;
  margin-bottom: 1.2rem;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn-hero {
  padding: 0.8rem 1.8rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-hero.primary {
  background: transparent;
  color: #FBDC30 !important;
  
  border-radius: 10px;
  border:#FBDC30 3px solid;
}

.btn-hero.primary:hover {
  background:#FBDC30;
  color: #fafafa !important;; 
}
.btn-hero.secondary {
  background-color: #656361;
  border:#fafafa 2px solid;
  color: #fafafa;
}

.btn-hero.secondary:hover {
  background: transparent;
  color: #FBDC30 !important;
  
  border-radius: 10px;
  border:#FBDC30 3px solid;
}

/* ================= ABOUT SECTION ================= */
.about-section .container {
  width: min(1350px, 97%);
}

.about-section {
  background:
    #fafafa;
  position: relative;
  overflow: hidden;
}

.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.about-content {
  flex: 1.1;
  padding-right: 15px;
}

.about-content h2 {
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  line-height: 1.1;
  margin: 0 0 1.2rem 0;
  color: #3e3a33;
  font-weight: 700;
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #000;
  margin-bottom: 1rem;
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 1.5rem 0;
}

.about-highlights span {
  padding: 2px 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #b8860b;
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-highlight-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: inline-block;
}

.about-highlight-icon .tooth-fill {
  fill: #fafafa;
  stroke: rgba(184, 134, 11, 0.45);
  stroke-width: 1;
}

.about-highlight-icon .tooth-detail {
  fill: none;
  stroke: #b8860b;
  stroke-width: 1.4;
  stroke-linecap: round;
}

.about-image {
  flex: 0.9;
  display: flex;
  justify-content: flex-end;
}

.about-image img {
  width: 100%;
  max-width: 540px;
  border-radius: 12px;
  box-shadow: 20px 20px 50px rgba(61, 57, 49, 0.12);
  display: block;
}

/* ================= WHY CHOOSE US ================= */
.why-choose-section {
  background: linear-gradient(
  to bottom,
  #FBDC30 -10%,
  #fafafa 50%,
  #FBDC30 120%
);
  padding: 1rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.why-choose-section .container {
  width: min(1350px, 97%);
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 2rem auto;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: black;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.section-header p {
  font-size: 1.05rem;
  line-height: 1.5;
  color: #000;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 20px;
}

.feature-card {
  background:#fafafa;
  backdrop-filter: blur(10px);
  padding: 1.8rem;
  border-radius: 18px;
  border: 2px solid #959495;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-6px);
  background: #fafafa;
  border-color: black;
  box-shadow: 0 20px 40px rgba(61, 57, 49, 0.08);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 1.2rem;
}

.icon-box {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border:#fbdc30 2px solid;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(150, 150, 147, 0.4);
  color: #c99713;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.icon-box svg {
  width: 30px;
  height: 30px;
 stroke: black;
  fill: none;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card:hover .icon-box {
  
  transform: scale(1.05);
}

.feature-card h3 {
  font-size: 1.3rem;
  color: #2f3133;
  margin: 0;
  line-height: 1.2;
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #000;
}

/* /* 
/* ================= TESTIMONIALS ================= */
/* .testimonials-section {
 background: linear-gradient(
  to bottom,
  #FBDC30 -10%,
  #fafafa 50%,
  #FBDC30 120%
);
  overflow: hidden;
}

.testimonials-section .container > h2 {
  text-align: center;
  margin: 0 auto 1rem;
  font-size: clamp(2rem, 4.8vw, 3rem);
  color: black;
  margin: 0 0 2rem 0;
}

.reviews-track {
  display: flex;
  width: 100%;
  overflow: hidden;
  
  position: relative;
 
  padding: 0.5rem 0 1.5rem;

  
}


.reviews-row {
  display: flex;
  gap: 1.5rem;
  padding-right: 1.5rem;
  flex-shrink: 0;
  will-change: transform;
  animation: scrollTestimonials 25s linear infinite;
}

.reviews-track:hover .reviews-row {
  animation-play-state: paused;
}

.reviews-row .quote {
  width: 360px;
  min-height: 220px;
  flex-shrink: 0;
  background:  #fafafa;

  padding: 1.8rem 1.9rem 1rem;
  border: 1px solid black;
  box-shadow: 0 18px 40px rgba(82, 74, 55, 0.12);
  position: relative;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  border-radius: 38px 38px 26px 26px;
  overflow: hidden;
}

.reviews-row .quote::before {
  content: "\201C";
  position: absolute;
  top: 12px;
  left: 20px;
  font-size: 4.4rem;
  line-height: 1;
  color: grey;
  font-family: Georgia, serif;
}

.reviews-row .quote::after {
  content: "";
  position: absolute;
  left: 68px;
  right: 68px;
  bottom: 0;
  height: 48px;
  
  background:
    radial-gradient(
      circle at 18% 0,
      grey 0 14px,
      transparent 15px
    ),
    radial-gradient(
      circle at 50% 0,
      grey 0 14px,
      transparent 15px
    ),
    radial-gradient(
      circle at 82% 0,
      grey 0 14px,
      transparent 15px
    );
  opacity: 1;
  pointer-events: none;
}

.reviews-row .quote:nth-child(odd),
.reviews-row .quote:nth-child(even) {
  margin-top: 0;
}

.reviews-row .quote:hover {
  transform: translateY(-8px);
  border-color: #d8b65a;
  border: 1px black solid;
  box-shadow: 0 24px 46px rgba(82, 74, 55, 0.18);
}

.reviews-row .quote p {
  margin: 1.2rem 0 0.55rem;
  color: #000;
  font-size: 1rem;
  line-height: 1.55;
  position: relative;
  z-index: 1;
}

.reviews-row .quote h3 {
  text-align:center;
  margin: 0;
  color: black;
  font-size: 1.25rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
  padding-bottom: 0.2rem;
}

@keyframes scrollTestimonials {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}  */


.testimonials-section {
  background: linear-gradient(
    to bottom,
    #FBDC30 -10%,
    #fafafa 50%,
    #FBDC30 120%
  );
  padding: 20px 0;
  text-align: center;
}

/* TITLE */
.testimonials-section .container > h2 {
  font-size: clamp(2rem, 4.8vw, 3rem);
  color: black;
  margin-bottom: 10px;
}

/* TRACK */
.reviews-track {
  position: relative;
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* ROW */
.reviews-row {
  position: relative;
  width: 100%;
  height: 100%;
}

/* ================= CARD BASE ================= */
.reviews-row .quote {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 360px;
  min-height: 220px;

  background: #fafafa;
  padding: 1.8rem 1.9rem;

  border-radius: 30px;
  border: 1px solid black;

  transform: translate(-50%, -50%) scale(0.7);

  opacity: 0;
  z-index: 1;

  transition: transform 0.5s ease, opacity 0.5s ease;

  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
/* ===== DISABLE ALL HOVER EFFECTS FOR TESTIMONIALS ===== */
.reviews-row .quote {
  pointer-events: none;
}
/* ================= ACTIVE (CENTER) ================= */
.reviews-row .quote.active {
  opacity: 1;
  z-index: 10;

  transform: translate(-50%, -50%) scale(1);

  border: 2px solid #FBDC30;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* ================= LEFT ================= */
.reviews-row .quote.left {
  opacity: 0.5;
  z-index: 5;

  transform: translate(calc(-50% - 260px), -50%) scale(0.85);
}

/* ================= RIGHT ================= */
.reviews-row .quote.right {
  opacity: 0.5;
  z-index: 5;

  transform: translate(calc(-50% + 260px), -50%) scale(0.85);
}

/* TEXT */
.reviews-row .quote p {
  margin: 1rem 0;
  color: #000;
  font-size: 1rem;
}

.reviews-row .quote h3 {
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .reviews-row .quote.left,
  .reviews-row .quote.right {
    opacity: 0;
  }
}


/* ================= FAQ SECTION (FINAL CLEAN VERSION) ================= */
.faq-section {
  position: relative;
  padding: 1rem 0;
  overflow: hidden;

  /* FULL BACKGROUND IMAGE */
  background: url("images/home-faq.jpg") center/cover no-repeat;
}

/* OPTIONAL LIGHT OVERLAY FOR TEXT READABILITY */
.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15); /* very light */
  z-index: 0;
}

/* CONTENT ABOVE BACKGROUND */
.faq-section .container {
  position: relative;

  z-index: 2;
}

/* HEADER */
.faq-header {
  text-align: start;
  margin-bottom: 1rem;
  transform: translateX(330px);
}

.faq-header h2 {
  color: #fafafa;
  font-size: 2.5rem;
    font-weight: 700;
}

.faq-header p {
  color: #6a655b;
  font-size: 1rem;
}

/* LAYOUT (RIGHT SIDE FAQ) */
.faq-centered {
  display: flex;
  justify-content: flex-end;
}

/* FAQ LIST */
.faq-list {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 16px;

  margin-right: 40px;
}

/* FAQ CARD */
.faq-item {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  

  padding: 1.2rem 1.6rem;
  border-radius: 14px;
  border: 3px solid var(--primary);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.95);
}

/* QUESTION */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.05rem;
  color: #000;
}

/* ICON */
.faq-toggle-icon {
  color: #000;
  font-size: 1.4rem;
  font-weight: bold;
  transition: transform 0.3s ease;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  margin-top: 10px;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
}

.faq-answer p {
  color: #000;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .faq-centered {
    justify-content: center;
  }

  .faq-list {
    margin-right: 0;
    max-width: 100%;
  }

  .faq-header {
    text-align: center;
  }
}
/* ================= GRID & CARDS ================= */
.grid {
  display: grid;
  gap: 1rem;
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: linear-gradient(180deg, #fafafa 0%, #faf6ee 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.15rem;
  box-shadow: 0 8px 18px rgba(61, 57, 49, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(61, 57, 49, 0.14);
}

.card h3 {
  color:black;
  margin-top: 0;
  font-size: 1.05rem;
}

.muted {
  color: var(--muted);
}

/* ================= SERVICES SECTION ================= */
.services-showcase {
  background: #fafafa;
}

.services-track {
  display: flex;
  overflow: hidden;
  position: relative;
  /* mask-image: linear-gradient(
    to right,
    transparent,
    black 8%,
    black 92%,
    transparent
  );
  padding: 18px 0; */
}

.services-row {
  display: flex;
  gap: 1.35rem;
  padding-right: 1.35rem;
  flex-shrink: 0;
  animation: scrollServices 34s linear infinite;
  will-change: transform;
}

.services-track:hover .services-row {
  animation-play-state: paused;
}

.section-header {
  text-align: center;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin: 0 0 0rem 0;
  
  font-weight: 700;
}

.section-header p {
  font-size: 1.1rem;
  color: #000;
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
}

.service-card {
  background:transparent;
  border:var(--primary) 2px solid;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
  width: 260px;
  flex-shrink: 0;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(145deg, #fffef4, #fbea81);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 8px 16px rgba(184, 134, 11, 0.22);
  overflow: hidden;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card:hover .service-icon {
  transform: translateY(-8px) scale(1.08);
  box-shadow: 0 12px 24px rgba(184, 134, 11, 0.3);
}

.service-card h3 {
  margin: 0 0 0.8rem 0;
  font-size: 1.2rem;
  color: black;
  font-weight: 500;
}

.service-card p {
  color:#242424;
  margin: 0 0 1.5rem 0;
  flex-grow: 1;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-link {
  color: black;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}


.card-link:hover {
  color: #fbdc30;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.card-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #fbdc30;
  transition: width 0.3s ease;
}

.card-link:hover::after {
  width: 100%;
}

@keyframes scrollServices {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.page-banner {
  padding: 2.2rem 0;
  background: #f3ede1;
  border-bottom: 1px solid var(--border);
}

.page-banner h1 {
  margin: 0;
}

.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.photo {
  height: 170px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, #fffef4, #fbea81);
  display: grid;
  place-items: center;
  color: #334155;
  font-weight: 600;
}

form {
  display: grid;
  gap: 0.9rem;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 0.7rem 0.75rem;
  font: inherit;
}

footer {
  background: #2e2b27;
  color: #e6dfd0;
  padding: 1rem 0;
  
}

footer .small {
  font-size: 0.9rem;
}


/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .about-wrapper,
  .faq-layout {
    flex-direction: column-reverse;
    text-align: center;
    gap: 25px;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .card-header {
    flex-direction: row;
    text-align: left;
  }
}

.reviews-row .quote::after {
  display:none;
}

@media (max-width: 860px) {
  .container {
    width: 94%;
  }
  .topbar {
    flex-wrap: wrap;
  }
  nav ul {
    flex-wrap: wrap;
    row-gap: 0.6rem;
  }
  .reviews-row .quote {
    width: 300px;
    min-height: 200px;
    padding: 1.6rem 1.35rem 0.9rem;
  }
  .hero {
    min-height: auto;
    padding: 5.1rem 0 3.4rem;
  }
  .hero-text {
    padding-left: 0;
  }
  .services-row {
    animation-duration: 26s;
  }
  .service-card {
    width: 220px;
  }
  .home-page nav a {
    font-size: 0.82rem;
  }
}


@media (max-width: 640px){
  .hero{
    height: 80vh;
    padding: 100px 0px;
    padding-bottom: 10px;
  }
}
@media (max-width: 400px){
  .hero{
    height: 90vh;
    padding: 90px 0px;
    padding-bottom: 20px;
  }
}



/* ================= FIX FAQ HEADING MOBILE ================= */

@media (max-width: 768px) {
  .faq-header {
    transform: none !important; /* reset position */
    margin: 0 auto 1.5rem;
    text-align: center;
  }

  .faq-header h2 {
    display: block;
    font-size: 2rem;
    color: #000;
  }
}


@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: row;   /* ❌ no column */
    flex-wrap: wrap;       /* ✅ allow wrap */
    justify-content: flex-start;
  }

  .btn-hero {
    width: auto;           /* ❌ remove full width */
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    gap: 10px;
  }

  .btn-hero {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }
}