/* ===========================================
   MY CARIBBEAN JOURNEY - Hub Homepage Styles
   (Shared styles in /shared/shared.css)
   =========================================== */

/* --- Hub container override (narrower than default) --- */
.hero .container,
.books .container,
.about .container,
.bio .container,
.island-sound .container,
.explore .container,
.blog-promo .container {
  max-width: 1100px;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh; /* dvh excludes mobile browser chrome — prevents iOS Safari jump */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--green-deep) 0%, #0a2e15 40%, #132e1a 70%, #1a3520 100%);
  padding: 8rem 1.5rem 6rem;
  overflow: hidden;
}

/* Hero reel layers (back to front): images -> flash -> overlay -> content */
.hero-reel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-reel-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.hero-reel-img.active {
  opacity: 1;
}

.hero-flash {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: white;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.08s ease;
}

.hero-flash.flash {
  opacity: 0.6;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(13, 31, 18, 0.6) 80%, rgba(13, 31, 18, 0.95) 100%),
    rgba(13, 31, 18, 0.8);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

@media (prefers-reduced-motion: reduce) {
  .hero-reel-img { transition: none; }
  .hero-flash { display: none; }
}

.hero-label {
  font-size: 0.9rem;
  font-weight: 500;
  /* color: var(--gold); */
  background: linear-gradient(135deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.15rem;
  color: rgba(232, 228, 220, 0.75);
  line-height: 1.8;
  max-width: 550px;
  margin: 0 auto;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

/* Hub hero buttons use slightly smaller padding than shared default */
.hero-actions .btn {
  padding: 0.75rem 1.75rem;
}

/* --- Books Section --- */
.books {
  padding: 5rem 0;
}

.books .section-header {
  margin-bottom: 3rem;
}

.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(188px, 300px));
  gap: 2rem;
  justify-content: center;
  container-type: inline-size;
}


.book-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(212, 160, 48, 0.12);
  transition: transform var(--transition), box-shadow var(--transition);

  &:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(26, 74, 46, 0.15);

    .book-card-image img { transform: scale(1.04); }
    .book-card-link { gap: 0.65rem; color: var(--gold); }
  }

  &.coming-soon .book-card-image {
    background: linear-gradient(135deg, var(--green-mid) 0%, var(--green-deep) 100%);
  }

  /* Diagonal shimmer sweep — available books only */
  &:not(.coming-soon)::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 4;
    background: linear-gradient(
      108deg,
      transparent 35%,
      rgba(255, 255, 255, 0.08) 44%,
      rgba(255, 255, 255, 0.18) 50%,
      rgba(255, 255, 255, 0.08) 56%,
      transparent 65%
    );
    transform: translateX(-120%) skewX(-12deg);
    animation: book-shimmer 6s ease-in-out 1.5s infinite;
    pointer-events: none;
  }
}

@keyframes book-shimmer {
  0%   { transform: translateX(-120%) skewX(-12deg); }
  35%  { transform: translateX(220%)  skewX(-12deg); }
  100% { transform: translateX(220%)  skewX(-12deg); }
}

@media (prefers-reduced-motion: reduce) {
  .book-card::before { animation: none; }
}

.book-card-image {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  /* Dark gradient — lifts overlay text off the image */
  &::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.04) 0%,
      rgba(0, 0, 0, 0.1) 25%,
      rgba(13, 31, 18, 0.72) 55%,
      rgba(13, 31, 18, 0.96) 100%
    );
    pointer-events: none;
  }
}

.book-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1.1rem 1rem;
  z-index: 2;
}

.book-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.25;
  margin: 0 0 0.35rem;
  text-wrap: balance;
}

.book-card-subtitle {
  font-size: 0.8rem;
  color: rgba(232, 228, 220, 0.78);
  line-height: 1.5;
  margin: 0;
  text-wrap: pretty;
}

.book-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.75rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(232, 228, 220, 0.18);
}

.book-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--green-deep);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5), 0 3px 10px rgba(0, 0, 0, 0.25);
}

/* Coming soon — big centred label on the green bg */
.book-card.coming-soon .book-card-overlay {
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.book-card-coming-soon-label {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.1;
  color: var(--cream);
  margin: 0 0 1.25rem;
  text-wrap: balance;
}

.book-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(232, 228, 220, 0.85);
  white-space: nowrap;
  transition: gap var(--transition), color var(--transition);

  svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }
}

/* --- Explore the Caribbean Section --- */
.explore {
  padding: 5rem 0;
  background: var(--warm-white);
}

.explore .section-header {
  margin-bottom: 2.5rem;
}

.explore-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0.5rem auto 0;
  text-wrap: balance;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 360px));
  gap: 2rem;
  justify-content: center;
  container-type: inline-size;
}

.explore-card {
  background: var(--warm-white);
  border: 1px solid rgba(212, 160, 48, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);

  &:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(26, 74, 46, 0.15);

    .explore-card-image img { transform: scale(1.04); }

    .explore-card-arrow {
      background: var(--gold);
      border-color: var(--gold);
      color: var(--green-deep);
    }
  }
}

/* Image area */
.explore-card-image {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: linear-gradient(145deg, var(--green-deep) 0%, #0a2e15 60%, #1a3520 100%);
}

.explore-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Dark gradient — lifts overlay text off the image */
.explore-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.0) 0%,
    rgba(0, 0, 0, 0.05) 25%,
    rgba(13, 31, 18, 0.52) 55%,
    rgba(13, 31, 18, 0.82) 100%
  );
  pointer-events: none;
}

/* Arrow circle — top right corner */
.explore-card-arrow {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

/* Text overlay — title + excerpt + foot */
.explore-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1.1rem 1rem;
  z-index: 2;
}

.explore-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--cream);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 0.3rem;
  text-wrap: balance;
}

.explore-card-excerpt {
  font-size: 0.8rem;
  color: rgba(232, 228, 220, 0.78);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 0.65rem;
}

.explore-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.explore-card-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(232, 228, 220, 0.7);
}

.explore-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(232, 228, 220, 0.7);
  white-space: nowrap;
  transition: gap var(--transition), color var(--transition);

  svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
  }
}

.explore-card:hover .explore-card-link {
  gap: 0.55rem;
  color: var(--gold);
}

/* --- Island Sound (Video) Section --- */
.island-sound {
  background: linear-gradient(135deg, var(--green-deep) 0%, #0a2e15 50%, var(--green-dark) 100%);
  padding: 5rem 0;
  text-align: center;
}

.island-sound .section-label {
  /* color: var(--gold); */
  background: linear-gradient(135deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.island-sound .section-header {
  margin-bottom: 0;
}

.island-sound .section-title {
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.island-sound-credit {
  font-size: 0.8rem;
  color: rgba(232, 228, 220, 0.45);
  margin-bottom: 2.5rem;

  a {
    color: var(--gold-light);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color var(--transition);

    &:hover { color: #fff; }
  }
}

.island-sound-embed {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  max-width: 860px;
  margin: 0 auto 1.5rem;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
}

.island-sound-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.island-sound-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(232, 228, 220, 0.4);
  font-size: 0.875rem;
  transition: color var(--transition);
}

.island-sound-link:hover {
  color: var(--gold);
}

/* --- About Section --- */
.about {
  background: var(--cream);
  padding: 5rem 0;
}

.about-layout {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 900px;
  margin: 0 auto;
}

.about-icon {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mid), var(--green-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.about-icon svg {
  width: 50px;
  height: 50px;
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--green-deep);
  margin-bottom: 1rem;
}

.about-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.about-inline-link {
  color: var(--green-mid);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);

  &:hover { color: var(--gold); }
}

.about-cta {
  margin-top: 1.5rem;
}

/* --- Bio Section --- */
.bio {
  background: linear-gradient(135deg, var(--green-deep) 0%, #0a2e15 50%, var(--green-dark) 100%);
  color: var(--cream);
  padding: 5rem 0;
}

.bio .section-label {
  /* color: var(--gold); */
  background: linear-gradient(135deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

.bio .section-title {
  color: var(--cream);
  text-align: center;
  margin-bottom: 2.5rem;
}

.bio-content {
  max-width: 800px;
  margin: 0 auto;
}

.bio-content p {
  color: rgba(232, 228, 220, 0.8);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  text-wrap: pretty;
}

/* Drop cap on opening paragraph */
.bio-drop-cap::first-letter {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  float: left;
  line-height: 0.82;
  margin: 0.1rem 0.18rem 0 0;
  color: var(--gold);
}

/* Chapter break — gold rule with italic label */
.bio-chapter {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2.75rem 0 1.75rem;

  &::before,
  &::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(212, 160, 48, 0.25);
  }
}

.bio-chapter-label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(212, 160, 48, 0.65);
  white-space: nowrap;
}

/* Pull quote */
.bio-pull-quote {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  font-style: italic;
  font-weight: 700;
  color: var(--gold);
  text-align: center;
  line-height: 1.35;
  margin: 0 0 1.75rem;
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(212, 160, 48, 0.3);
  border-bottom: 1px solid rgba(212, 160, 48, 0.3);
  text-wrap: balance;

  &::before {
    content: '\201C';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10rem;
    line-height: 1;
    color: rgba(212, 160, 48, 0.06);
    font-style: normal;
    pointer-events: none;
    z-index: 0;
  }
}

/* Island section — 2-column with author photo */
.bio-island-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 0.5rem;
}

.bio-author-image {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(212, 160, 48, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  background: linear-gradient(145deg, var(--green-deep) 0%, #0a2e15 60%, #1a3520 100%);

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    opacity: 0;
    transition: opacity 0.4s ease;

    &.img-loaded { opacity: 1; }
  }
}

.bio-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  /* background: var(--gold); */
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--green-deep);
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  margin: 0.5rem 0 1.75rem;
  transition: background var(--transition), transform var(--transition);
  box-shadow: 0 4px 20px var(--gold-glow);

  &:hover {
    /* background: var(--gold-light); */
    background: linear-gradient(135deg, var(--gold-light), #f0814a);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px var(--gold-glow);
  }

  svg {
    width: 18px;
    height: 18px;
  }
}

.bio-inline-link {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);

  &:hover { color: var(--gold-light); }
}

.bio-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(232, 228, 220, 0.5);
  font-size: 0.95rem;
  font-weight: 500;
  margin-top: 1.5rem;
  transition: color var(--transition);

  &:hover { color: var(--gold); }

  svg {
    width: 18px;
    height: 18px;
  }
}

/* --- Blog Promo Section --- */
.blog-promo {
  background: var(--cream);
  padding: 5rem 0;
  text-align: center;
}

.blog-promo-content {
  max-width: 620px;
  margin: 0 auto;
}

.blog-promo-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mid), var(--green-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin: 0 auto 1.75rem;
}

.blog-promo-icon svg {
  width: 36px;
  height: 36px;
}

.blog-promo .section-label {
  color: var(--green-mid);
}

.blog-promo .section-title {
  margin-bottom: 1.25rem;
}

.blog-promo-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.blog-promo-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.blog-promo-posts {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 2.5rem;
}

.blog-promo-card {
  width: 120px;
  flex-shrink: 0;
  text-align: center;
  transition: transform var(--transition);

  &:hover {
    transform: translateY(-3px);

    .blog-promo-card-image img { transform: scale(1.06); }
    .blog-promo-card-title { color: var(--gold); }
  }
}

.blog-promo-card-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  margin-bottom: 0.5rem;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
}

.blog-promo-card-title {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.35;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--transition);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding: calc(7rem + env(safe-area-inset-top)) 1rem 5rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-actions {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .books {
    padding: 3.5rem 0;
  }

  .books-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .books .section-header {
    margin-bottom: 2rem;
  }

  .island-sound {
    padding: 3.5rem 0;
  }

  .island-sound .section-title {
    margin-bottom: 2rem;
  }

  .about {
    padding: 3.5rem 0;
  }

  .about-layout {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .about-icon {
    width: 90px;
    height: 90px;
  }

  .about-icon svg {
    width: 40px;
    height: 40px;
  }

  .about-text h2 {
    font-size: 1.6rem;
  }

  .about-text p {
    font-size: 0.95rem;
  }

  .explore {
    padding: 3.5rem 0;
  }

  .explore-grid {
    grid-template-columns: 1fr;
  }

  .bio {
    padding: 3.5rem 0;
  }

  .bio-content p {
    font-size: 0.95rem;
  }

  .bio-island-layout {
    grid-template-columns: 1fr;
  }

  .bio-author-image {
    max-width: 220px;
    margin: 0 auto;
  }

  .blog-promo-posts {
    gap: 0.65rem;
    margin-top: 1.5rem;
  }

  .blog-promo-card {
    width: 90px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: calc(6.5rem + env(safe-area-inset-top)) 0.75rem 5rem;
  }

  .hero-label {
    font-size: 0.75rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    padding: 0.65rem 1.25rem;
    font-size: 0.85rem;
    width: 100%;
    text-align: center;
  }

  .books {
    padding: 2.5rem 0;
  }

  .books .section-header {
    margin-bottom: 1.5rem;
  }

  .about {
    padding: 2.5rem 0;
  }

  .about-icon {
    width: 70px;
    height: 70px;
  }

  .about-icon svg {
    width: 32px;
    height: 32px;
  }

  .about-text h2 {
    font-size: 1.4rem;
  }

  .explore {
    padding: 2.5rem 0;
  }

  .bio {
    padding: 2.5rem 0;
  }

  .bio .section-title {
    margin-bottom: 1.5rem;
  }

  .bio-content p {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .bio-drop-cap::first-letter {
    font-size: 3rem;
  }

  .bio-cta {
    padding: 0.65rem 1.25rem;
    font-size: 0.9rem;
  }
}
