/*
Theme Name: Indie Beauty
Theme URI:
Author:
Description: Offline Bootstrap WordPress Theme
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 8.0
Text Domain: indie-beauty
*/

/* ==========================================
   1. FONTS
========================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&display=swap');

/* ==========================================
   2. CSS CUSTOM PROPERTIES (Design Tokens)
========================================== */
:root {
  --radius: 0.625rem;
  --background: #ffffff;
  --foreground: #1e1e1e;
  --ink: #1e1e1e;
  --body: #5e5e5e;
  --cream: #fcfaf8;
  --beige: #f7f2ee;
  --border-soft: #efeae5;
  --rose: #d96a88;
  --rose-soft: #e9bbc6;
  --card: #ffffff;
  --card-foreground: #1e1e1e;
  --popover: #ffffff;
  --popover-foreground: #1e1e1e;
  --primary: #1e1e1e;
  --primary-foreground: #ffffff;
  --secondary: #f7f2ee;
  --secondary-foreground: #1e1e1e;
  --muted: #fcfaf8;
  --muted-foreground: #5e5e5e;
  --accent: #e9bbc6;
  --accent-foreground: #1e1e1e;
  --destructive: #dc2626;
  --destructive-foreground: #ffffff;
  --border: #efeae5;
  --input: #efeae5;
  --ring: #D3587A;
  
  --font-serif: "Cormorant Garamond", "Ivy Presto", ui-serif, Georgia, serif;
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
}

/* ==========================================
   3. BASE STYLES
========================================== */
*,
*::before,
*::after {
  border-color: var(--border);
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6,
.font-serif {
  font-family: var(--font-serif);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--ink);
}

p, .lead {
  color: var(--body);
}

.lead {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

img {
  max-width: 100%;
  height: auto;
}

/* ==========================================
   4. BOOTSTRAP OVERRIDES
========================================== */

/* Container */
.container {
  max-width: 1280px;
  padding-top:1.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border-radius: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 1rem 1.75rem;
  border: none;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary {
  background: #111111;
  color: #ffffff;
}

.btn-primary:hover,
.btn-primary:focus {
  background: #2a2a2a;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn-link {
  color: var(--ink);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  padding: 0;
  gap: 0.5rem;
}

.btn-link:hover {
  color: var(--rose);
}

/* Form Control */
.form-control {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control::placeholder {
  color: var(--muted-foreground);
}

.form-control:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(217, 106, 136, 0.1);
  outline: none;
}

/* Horizontal Rule */
hr {
  border-color: var(--border-soft);
  opacity: 1;
  margin: 1.5rem 0;
}

/* ==========================================
   5. UTILITY CLASSES
========================================== */

/* Backgrounds */
.bg-cream {
  background-color: var(--cream) !important;
}

.bg-beige {
  background-color: var(--beige) !important;
}

/* Text Colors */
.text-rose {
  color: var(--rose) !important;
}

.text-dark {
  color: var(--ink) !important;
}

/* ==========================================
   6. HEADER / NAVIGATION (Bootstrap)
========================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-soft);
}

.site-header .navbar {
  background: transparent !important;
  padding-top: 0;
  padding-bottom: 0;
}

.site-header .container {
  height: 96px;
}

/* Logo / Branding */
.site-header .navbar-brand {
  line-height: 1;
  padding: 0;
  margin: 0;
}

.site-header .logo-title {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.875rem;
  letter-spacing: -0.025em;
  color: var(--ink);
  text-transform: lowercase;
}

.site-header .logo-tagline {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: lowercase;
  color: var(--rose);
  margin-top: 4px;
}

/* ==========================================
   NAV LINKS — HOVER EFFECTS
========================================== */

/* Base nav link styles — override Bootstrap */
.site-header .navbar-nav {
  gap: 2.25rem;
}

.site-header .navbar-nav .nav-item {
  position: relative;
}

.site-header .navbar-nav .menu-item .nav-link,
.site-header .navbar-nav .menu-item .nav-link:link,
.site-header .navbar-nav .menu-item .nav-link:visited,
.site-header .navbar-nav .menu-item .nav-link:focus {
  position: relative !important;
  display: inline-block !important;
  padding: 0.5rem 0 !important;
  font-size: 12px !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  color: var(--ink) !important;
  text-decoration: none !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
  transition: color 0.3s ease !important;
}

/* Underline — hidden by default */
.site-header .navbar-nav .nav-link::after {
  content: '' !important;
  position: absolute !important;
  left: 0 !important;
  bottom: -2px !important;
  width: 100% !important;
  height: 2px !important;
  background-color: #D3587A !important;
  transform: scaleX(0) !important;
  transform-origin: left center !important;
  transition: transform 0.3s ease !important;
}

/* === HOVER: Color #D3587A + underline slides in === */
.navbar-nav .menu-item:hover {
  color: #D3587A !important;
}

.site-header .navbar-nav .nav-link:hover::after {
  transform: scaleX(1) !important;
}

/* === ACTIVE / CURRENT PAGE === */
.site-header .navbar-nav .menu-item .nav-link.active,
.site-header .navbar-nav .menu-item .current-menu-item > .nav-link,
.site-header .navbar-nav .menu-item .current_page_item > .nav-link,
.site-header .navbar-nav .menu-item .current-menu-parent > .nav-link {
  color: #D3587A !important;
}

.site-header .navbar-nav .menu-item .nav-link.active::after,
.site-header .navbar-nav .menu-item .current-menu-item > .nav-link::after,
.site-header .navbar-nav .menu-item .current_page_item > .nav-link::after,
.site-header .navbar-nav .menu-item .current-menu-parent > .nav-link::after {
  transform: scaleX(1) !important;
}

/* Header icons */
.header-icons {
  gap: 1.25rem;
}

.header-icons .btn-link,
.header-icons a {
  color: var(--ink);
  padding: 0;
  border: none;
  background: none;
  line-height: 1;
  transition: color 0.25s ease;
}

.header-icons .menu-item .btn-link:hover,
.header-icons .menu-item a:hover {
  color: #D3587A;
}

.header-icons i {
  font-size: 20px;
  display: block;
}

/* Search bar collapse */
#searchBar {
  border-color: var(--border-soft) !important;
}

#searchBar .form-control-lg {
  height: 48px;
  font-size: 14px;
  font-weight: 300;
  border-color: var(--border-soft);
}

#searchBar .form-control-lg:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(217, 106, 136, 0.1);
}

/* ==========================================
   7. EYEBROW UTILITY
========================================== */
.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--rose);
  font-family: var(--font-sans);
}

/* ==========================================
   8. CARD SOFT
========================================== */
.card-soft {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-soft:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

/* ==========================================
   9. HERO SECTION
========================================== */
.hero-section {
  padding: 5rem 0;
  background-color: var(--cream);
}

.hero-section .display-1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.hero-section .display-1 .text-rose {
  font-style: italic;
}

/* Hero Avatars */
.hero-avatars {
  display: flex;
  align-items: center;
}

.hero-avatars .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  overflow: hidden;
  margin-left: -12px;
  display: inline-block;
}

.hero-avatars .avatar:first-child {
  margin-left: 0;
}

.hero-avatars .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero Community Text */
.hero-community {
  font-size: 0.875rem;
  color: var(--body);
  font-weight: 400;
}

/* Hero Badge */
.hero-badge {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.4;
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

/* ==========================================
   10. BENEFITS SECTION
========================================== */
.benefits-section {
  padding: 4rem 0;
  background-color: var(--background);
}

.benefits-section .card-soft {
  padding: 2rem;
}

.benefits-section i {
  color: var(--rose);
}

.benefits-section h5 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.benefits-section p {
  font-size: 0.875rem;
  color: var(--body);
  margin-bottom: 0;
}

/* ==========================================
   11. EDITOR'S PICKS
========================================== */
.editors-picks {
  padding: 5rem 0;
  background-color: var(--background);
}

.editors-picks h2,
.magazine-section h2,
.trending-brands h2,
.newsletter-section h2,
.page-hero h1 {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
}

.editors-picks .card-soft img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.editors-picks .card-soft h4 {
  font-size: 1.125rem;
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.editors-picks .card-soft p {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.editors-picks .card-soft small {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  font-weight: 400;
}

/* ==========================================
   12. SECTION HEAD
========================================== */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.section-head h2 {
  font-size: 2.25rem;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 0;
}

.section-head p {
  margin-top: 0.75rem;
  font-size: 14px;
  color: var(--body);
  margin-bottom: 0;
}

.section-head .section-link {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--rose);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.2s ease;
}

.section-head .section-link:hover {
  gap: 0.75rem;
}

.section-head .section-link i {
  font-size: 16px;
}

@media (min-width: 768px) {
  .section-head h2 {
    font-size: 3rem;
  }
}

/* ==========================================
   13. TRENDING BRANDS
========================================== */
.trending-brands {
  padding: 5rem 0;
  background-color: var(--cream);
}

.brand-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-circle:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.brand-circle span {
  font-family: var(--font-serif);
  font-size: 0.8125rem;
  font-weight: 300;
  text-align: center;
  line-height: 1.3;
  color: var(--ink);
}

/* ==========================================
   14. MAGAZINE SECTION
========================================== */
.magazine-section {
  padding: 5rem 0;
  background-color: var(--background);
}

.magazine-section h3 {
  font-size: 1.75rem;
  line-height: 1.25;
}

.magazine-section .d-flex img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

.magazine-section .d-flex h6 {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  margin-bottom: 0.25rem;
  color: var(--ink);
}

.magazine-section .d-flex small {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* ==========================================
   15. NEWSLETTER SECTION
========================================== */
.newsletter-section {
  padding: 4rem 0;
  background-color: var(--background);
}

.newsletter-box,
.community-box {
  border-radius: 16px;
  padding: 2.5rem;
}

.newsletter-box {
  background: var(--beige);
}

.community-box {
  background: rgba(233, 187, 198, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.newsletter-box h3,
.community-box h3 {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  line-height: 1.25;
  color: var(--ink);
}

.newsletter-box p {
  margin-top: 0.75rem;
  font-size: 14px;
  color: var(--body);
  max-width: 28rem;
}

.newsletter-box form {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 32rem;
}

.newsletter-box form .form-control {
  flex: 1;
  height: 48px;
  padding: 0 1rem;
  border-radius: 8px;
}

.newsletter-box form .btn-primary {
  height: 48px;
  padding-top: 0;
  padding-bottom: 0;
}

.newsletter-box .trust-badges {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 11px;
  color: var(--body);
}

.newsletter-box .trust-badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.newsletter-box .trust-badges span::before {
  content: '';
  width: 6px;
  height: 6px;
  border: 1px solid var(--body);
  border-radius: 50%;
  display: inline-block;
}

.community-box .btn-primary {
  background: var(--rose);
}

.community-box .btn-primary:hover {
  background: #c25877;
}

.community-avatars {
  display: flex;
  margin-left: -0.5rem;
}

.community-avatars .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  overflow: hidden;
  margin-left: -0.5rem;
  background: #ffffff;
}

.community-avatars .avatar img {
  width: 400%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .newsletter-box,
  .community-box {
    padding: 3rem;
  }
  
  .newsletter-box form {
    flex-direction: row;
  }
}

/* ==========================================
   16. PAGE HERO (Inner Pages)
========================================== */
.page-hero {
  background-color: var(--cream);
}

.page-hero .container {
  padding-top: 5rem;
  padding-bottom: 5rem;
  text-align: center;
  max-width: 768px;
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.page-hero p {
  margin-top: 1.5rem;
  font-size: 15px;
  line-height: 1.625;
  color: var(--body);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .page-hero .container {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
  
  .page-hero h1 {
    font-size: 4.5rem;
  }
}

/* ==========================================
   17. FILTER CHIPS
========================================== */
.filter-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem 0;
}

.filter-chip {
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--border-soft);
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-chip:hover {
  border-color: var(--rose);
}

.filter-chip.active {
  background: var(--ink);
  color: #ffffff;
  border-color: var(--ink);
}

/* ==========================================
   18. FEATURED SECTION
========================================== */
.featured-section {
  padding: 4rem 0;
  background-color: var(--background);
  border-top: 1px solid var(--border-soft) !important;
}

.featured-section h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 300;
  font-style: italic;
  color: var(--muted-foreground);
  letter-spacing: 0.02em;
  opacity: 0.7;
}

/* ==========================================
   19. FOOTER
========================================== */
.site-footer {
  border-top: 1px solid var(--border-soft);
  padding-top: 4rem;
  padding-bottom: 2.5rem;
  background-color: var(--background);
}

.footer-logo {
  display: inline-block;
  line-height: 1;
}

.footer-logo .logo-title {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--ink);
  text-transform: lowercase;
}

.footer-logo .logo-tagline {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: lowercase;
  color: var(--rose);
  margin-top: 4px;
}

.footer-about {
  font-size: 13px;
  color: var(--body);
  line-height: 1.625;
  max-width: 20rem;
}

.site-footer h6 {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.625rem;
}

.footer-links a {
  font-size: 13px;
  color: var(--body);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--rose);
}

.footer-bottom {
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-soft);
  font-size: 11px;
  color: var(--body);
}

.footer-bottom a {
  color: var(--body);
  margin-left: 1.5rem;
}

.footer-bottom a:first-child {
  margin-left: 0;
}

.footer-bottom a:hover {
  color: var(--rose);
}

/* ==========================================
   20. RESPONSIVE ADJUSTMENTS
========================================== */
@media (max-width: 991.98px) {
  .hero-section {
    padding: 3rem 0;
  }
  
  .hero-badge {
    bottom: 1rem;
    right: 1rem;
    padding: 1rem;
    font-size: 0.875rem;
    border-radius: 12px;
  }
  
  .newsletter-box,
  .community-box {
    padding: 2rem;
  }
  
  .brand-circle {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 767.98px) {
  .hero-section .display-1 {
    font-size: 2.5rem;
  }
  
  .editors-picks h2,
  .magazine-section h2,
  .trending-brands h2,
  .newsletter-section h2,
  .page-hero h1 {
    font-size: 1.75rem;
  }
  
  .section-head h2 {
    font-size: 1.75rem;
  }
  
  .newsletter-box h3,
  .community-box h3 {
    font-size: 1.5rem;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .btn-link,
  .section-head .section-link {
    width: auto;
  }
}

/* ==========================================
   ABOUT PAGE SPECIFIC
========================================== */

/* Hero image - exact match: aspect-[16/8] rounded-3xl */
.about-hero-image {
  aspect-ratio: 16 / 8;
  border-radius: 24px;
  overflow: hidden;
}

.about-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mission paragraph - exact match: text-[16px] leading-[1.8] */
.mission-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--body);
}

/* Stats section */
.stats-section .stat-number {
  font-family: var(--font-serif);
  font-size: 3.75rem;
  line-height: 1;
  color: var(--rose);
}

.stats-section .stat-label {
  margin-top: 0.75rem;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--body);
}

/* Timeline - exact match to TSX border-l pl-8 space-y-10 */
.timeline {
  border-left: 1px solid var(--border-soft);
  padding-left: 2rem;
}

.timeline-item {
  padding-bottom: 2.5rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item .eyebrow {
  font-size: 10px;
  letter-spacing: 0.24em;
}

.timeline-item h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  line-height: 1.3;
  margin-top: 0.25rem;
  color: var(--ink);
  font-weight: 300;
}

/* Team cards - exact match: aspect-[4/5] */
.team-card .team-image-wrap {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.team-card .team-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card .card-body {
  padding: 1.5rem;
}

.team-card h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 0.25rem;
}

.team-card .eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--body);
  margin-top: 0.25rem;
}

/* Section spacing utilities matching TSX */
.pb-20 {
  padding-bottom: 5rem !important;
}

.py-20 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.pb-24 {
  padding-bottom: 6rem !important;
}

/* Display sizes matching TSX font-serif text-4xl/md:text-5xl */
.display-4 {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  line-height: 1.05;
  font-weight: 300;
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .display-4 {
    font-size: 3rem;
  }
}

/* Page hero h1 size override for about page */
.page-hero-about h1 {
  font-size: 3rem;
  line-height: 1.02;
}

@media (min-width: 768px) {
  .page-hero-about h1 {
    font-size: 4.5rem;
  }
}
