/* ==========================================================================
   Cleaner Network — "Resources" page
   Mobile-first CSS3, no framework. Font Awesome 6 icons, Poppins typeface.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS VARIABLES (Design tokens)
   -------------------------------------------------------------------------- */
:root {
  /* Colors */
  --color-primary: #1e8e3e;
  --color-primary-dark: #176e30;
  --color-navy: #0b2343;
  --color-bg: #f8faf9;
  --color-white: #ffffff;
  --color-border: #e6e6e6;
  --color-heading: #101828;
  --color-body: #5a6470;
  --color-green-tint: #eaf7ee;

  /* Radius */
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;

  /* Shadow */
  --shadow-soft: 0 10px 30px rgba(11, 35, 67, 0.08);
  --shadow-hover: 0 18px 40px rgba(11, 35, 67, 0.14);

  /* Transition */
  --transition: 0.3s ease;

  /* Font */
  --font-base: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Type scale — mobile defaults, overridden at desktop breakpoint */
  --fs-hero: 34px;
  --fs-section: 26px;
  --fs-card-title: 20px;
  --fs-body: 15px;

  /* Layout */
  --container-max: 1320px;
  --header-height: 76px;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-base);
  color: var(--color-body);
  background-color: var(--color-white);
  line-height: 1.6;
  font-size: var(--fs-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.logo__icon {
    color: var(--color-green);
    font-size: 1.4rem;
}
.logo__icon {
    color: var(--color-green);
    font-size: 1.4rem;
    width: 139px;
    height: auto;
}
a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1, h2, h3, h4 {
  color: var(--color-heading);
  font-weight: 700;
  line-height: 1.25;
}

.container {
  /* max-width: var(--container-max); */
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 56px 0;
}

.section-title {
  font-size: var(--fs-section);
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-heading);
}

.section-title.eyebrow {
  font-size: 14px;
  color: var(--color-primary);
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  margin-top: 24px;
}

/* Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), color var(--transition);
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-heading);
  border: 1.5px solid var(--color-border);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
}

.btn-outline-white:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
}

.btn-block {
  width: 100%;
}

/* Visually hidden (for accessibility labels) --------------------------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   3. HEADER
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Desktop */

/* Hamburger */

.nav-toggle{
    width:44px;
    height:44px;
    background:transparent;
    border:none;
    cursor:pointer;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

.nav-toggle span{
    display:block;
    width:24px;
    height:3px;
    background:#0b2343;
    margin:3px 0;
    border-radius:5px;
}


.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: var(--color-green-tint);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text strong {
  font-size: 1rem;
  color: var(--color-heading);
  font-weight: 700;
}

.logo-text span {
  font-size: 0.55rem;
  letter-spacing: 0.04em;
  color: var(--color-body);
  text-transform: uppercase;
}

/* Desktop nav (hidden on mobile) */


.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-list > li {
  position: relative;
}

.nav-list a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: 15px;
  color: var(--color-heading);
  padding: 27px 0;
  transition: color var(--transition);
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--color-primary);
}

.nav-list li.has-dropdown > a.active {
  border-bottom: 2px solid var(--color-primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}


.nav-toggle span {
  width: 22px;
  height: 2px;
  background-color: var(--color-heading);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Mobile slide-down nav panel */
.main-nav.open {
  display: block;
  position: absolute;
  top: var(--header-height);
  left: 0;
  right: 0;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}

.main-nav.open .nav-list {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 8px 20px 20px;
}

.main-nav.open .nav-list a {
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}

.main-nav.open .nav-list li.has-dropdown > a.active {
  border-bottom: 1px solid var(--color-border);
}

/* --------------------------------------------------------------------------
   4. BREADCRUMB
   -------------------------------------------------------------------------- */
.breadcrumb {
  padding: 18px 0;
}

.breadcrumb ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--color-body);
}

.breadcrumb a {
  color: var(--color-body);
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--color-primary);
}

.breadcrumb li[aria-current="page"] {
  color: var(--color-primary);
  font-weight: 500;
}

.breadcrumb .sep {
  color: #c7ccd1;
}

/* --------------------------------------------------------------------------
   5. HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
  padding: 8px 0 56px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero-content h1 {
  font-size: var(--fs-hero);
  margin-bottom: 14px;
}

.hero-subheading {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 14px;
}

.hero-content p {
  max-width: 520px;
  margin-bottom: 26px;
}

.hero-visual {
  position: relative;
}

.hero-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.hero-float-card {
  position: static;
  margin-top: 20px;
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-border);
  padding: 8px;
}

.hero-float-card ul {
  display: flex;
  flex-direction: column;
}

.hero-float-card li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition);
}

.hero-float-card li:not(:last-child) {
  border-bottom: 1px solid var(--color-border);
}

.hero-float-card .item-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--color-green-tint);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.hero-float-card strong {
  display: block;
  font-size: 14px;
  color: var(--color-heading);
  font-weight: 600;
}

.hero-float-card span {
  font-size: 12.5px;
  color: var(--color-body);
}

/* --------------------------------------------------------------------------
   6. EXPLORE BY TOPIC
   -------------------------------------------------------------------------- */
.topics {
  padding: 40px 0;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.topic-card {
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.topic-card:hover,
.topic-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: var(--color-primary);
}

.topic-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--color-white);
  color: var(--color-primary);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.topic-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.topic-card p {
  font-size: 13px;
  color: var(--color-body);
}

/* --------------------------------------------------------------------------
   7. FEATURED RESOURCES
   -------------------------------------------------------------------------- */
.featured {
  padding: 40px 0;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 36px;
}

.resource-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.resource-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.resource-thumb {
  position: relative;
  overflow: hidden;
  height: 170px;
}

.resource-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.resource-card:hover .resource-thumb img {
  transform: scale(1.06);
}

.resource-body {
  padding: 20px;
}

.resource-badge {
  display: inline-block;
  background-color: var(--color-green-tint);
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.nav-toggle{
    display:none;
    width:44px;
    height:44px;
    background:transparent;
    border:none;
    cursor:pointer;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

.nav-toggle span{
    display:block;
    width:24px;
    height:3px;
    background:#0b2343;
    margin:3px 0;
    border-radius:3px;
}

.resource-card h3 {
  font-size: var(--fs-card-title);
  margin-bottom: 8px;
}

.resource-card p {
  font-size: 14px;
  margin-bottom: 16px;
}

.resource-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 14px;
  transition: gap var(--transition);
}

.resource-link:hover {
  gap: 10px;
}

.view-all-wrap {
  text-align: center;
      margin-bottom: 25px;
}

/* --------------------------------------------------------------------------
   8. NEED HELP BANNER
   -------------------------------------------------------------------------- */
.help-banner {
  background-color: var(--color-primary-dark);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.help-banner-inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.help-intro {
  display: flex;
  align-items: center;
  gap: 18px;
}

.help-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--color-white);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.help-intro h2 {
  color: var(--color-white);
  font-size: 20px;
  margin-bottom: 4px;
}

.help-intro p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.help-items {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.help-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.help-item i {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.help-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
}

.help-item span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

/* --------------------------------------------------------------------------
   9. COMMUNITY SECTION
   -------------------------------------------------------------------------- */
.community {
  padding: 40px 0;
}

section.community.container {
    margin: 19px 0px;
}
.community-card {
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.community-label {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.community-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--color-white);
  color: var(--color-primary);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.community-intro h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.community-intro p {
  font-size: 14px;
  margin-bottom: 20px;
}

.community-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.benefit-item .item-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--color-green-tint);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.benefit-item span {
  font-size: 14px;
  color: var(--color-heading);
  font-weight: 500;
}

.community-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

/* --------------------------------------------------------------------------
   10. BOTTOM CTA
   -------------------------------------------------------------------------- */
.bottom-cta {
  background-color: var(--color-navy);
  border-radius: var(--radius-lg);
  padding: 7px 19px;
  color: var(--color-white);
  /* text-align: center; */
}

.bottom-cta-wrap {
  max-width: var(--container-max);
  margin: 0 auto;
  justify-content: space-between;
  align-items:center;
}

.bottom-cta h2 {
  color: var(--color-white);
  font-size: 22px;
  margin-bottom: 10px;
}

.bottom-cta p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 22px;
}

/* --------------------------------------------------------------------------
   11. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--color-navy);
  padding: 48px 0 20px;
  margin-top: 20px;
  color: var(--color-white);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
  padding-bottom: 28px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-logo .logo-icon {
  background-color: rgba(30, 142, 62, 0.18);
  color: #4ade80;
}

.footer-logo .logo-text strong {
  color: var(--color-white);
}

.footer-logo .logo-text span {
  color: rgba(255, 255, 255, 0.5);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  max-width: 260px;
}

.footer-col h4 {
  color: var(--color-white);
  font-size: 14px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--color-white);
}

.footer-col ul li a.active {
  color: var(--color-primary);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition), border-color var(--transition);
}

.social-icons a:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.app-badges {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.app-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  padding: 7px 14px;
  min-width: 148px;
}

.app-badge i {
  font-size: 1.4rem;
}

.app-badge span {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.app-badge .badge-sub {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.6);
}

.app-badge .badge-main {
  font-size: 13px;
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
  text-align: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12.5px;
}


.nav-toggle{
    display:none;
}

.nav-toggle span{
    display:block;
    width:24px;
    height:3px;
    background:#0b1f3a;
    margin:4px 0;
    border-radius:3px;
}

/* =========================
   MOBILE
========================= */

@media (max-width:991px){

    .header-actions .btn-primary{
        display:none;
    }

    .nav-toggle{
        display:flex !important;
    }

    .main-nav{
        display:none;
        position:absolute;
        top:76px;
        left:0;
        width:100%;
        background:#fff;
        z-index:999;
        box-shadow:0 10px 30px rgba(0,0,0,.15);
    }

    .main-nav.active{
        display:block;
    }

    .nav-list{
        display:flex;
        flex-direction:column;
        align-items:flex-start;
        padding:20px;
        gap:0;
    }

    .nav-list li{
        width:100%;
    }

    .nav-list li a{
        display:block;
        width:100%;
        padding:15px 0;
        border-bottom:1px solid #eee;
    }
}

/* ==========================================================================
   RESPONSIVE — MOBILE FIRST (min-width breakpoints)
   ========================================================================== */

/* --------------------------------------------------------------------------
   375px — Small mobile: tighten container padding slightly
   -------------------------------------------------------------------------- */
@media (min-width: 375px) {
  .container {
    padding: 0 22px;
  }
}

/* --------------------------------------------------------------------------
   480px — Mobile: topic cards allow more breathing room
   -------------------------------------------------------------------------- */
@media (min-width: 480px) {
  :root {
    --fs-hero: 38px;
  }
}

/* --------------------------------------------------------------------------
   576px — Large mobile: featured cards 2-up, app badges row
   -------------------------------------------------------------------------- */
@media (min-width: 576px) {
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .app-badges {
    flex-direction: row;
    justify-content: center;
  }

  .help-items {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* --------------------------------------------------------------------------
   768px — Small tablet
   -------------------------------------------------------------------------- */
@media (min-width: 768px) {
  :root {
    --fs-hero: 44px;
    --fs-section: 30px;
  }

  .topics-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-content p {
    font-size: 16px;
  }

  .community-card {
    padding: 36px;
  }

  .community-benefits {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-grid {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: left;
  }

  .footer-brand {
    align-items: flex-start;
    /* width: 100%; */
  }

  .footer-col {
    width: calc(50% - 16px);
  }

  .social-icons {
    justify-content: flex-start;
  }

  .app-badges {
    justify-content: flex-start;
  }

  .footer-brand p {
    max-width: 320px;
  }
}

/* --------------------------------------------------------------------------
   992px — Tablet / small desktop: hero side-by-side, dropdown nav visible
   -------------------------------------------------------------------------- */
@media (min-width: 992px) {
    .nav-toggle{
        display:none !important;
    }

    .main-nav{
        display:block !important;
    }

  .main-nav .nav-list {
    flex-direction: row;
  }

  .main-nav .nav-list a {
    border-bottom: none !important;
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
  }

  .hero-content,
  .hero-visual {
    flex: 1;
  }

  .hero-image {
    height: 340px;
  }

  .hero-float-card {
    position: absolute;
    bottom: -28px;
    right: -20px;
    width: 260px;
    margin-top: 0;
  }

  .topics-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .featured-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .help-banner-inner,
  .community-card,
  .bottom-cta-wrap {
    display: flex;
  }

  .help-banner {
    padding: 40px;
  }

  .help-intro {
    flex: 1;
  }

  .help-items {
    flex: 1.2;
    justify-content: flex-end;
    gap: 40px;
  }

  .community-card {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .community-intro,
  .community-benefits-wrap,
  .community-image {
    flex: 1;
  }

  .community-image img {
    height: 260px;
  }

  .footer-col {
    width: auto;
  }
}

/* --------------------------------------------------------------------------
   1024px — Laptop
   -------------------------------------------------------------------------- */
@media (min-width: 1024px) {
  :root {
    --fs-hero: 48px;
    --fs-section: 32px;
  }

  .section {
    padding: 64px 0;
  }
}

/* --------------------------------------------------------------------------
   1200px — Large laptop
   -------------------------------------------------------------------------- */
@media (min-width: 1200px) {
  :root {
    --fs-hero: 52px;
    --fs-card-title: 21px;
  }

  .footer-grid {
    flex-wrap: nowrap;
  }
}

/* --------------------------------------------------------------------------
   1440px — Desktop (final design)
   -------------------------------------------------------------------------- */
@media (min-width: 1440px) {
  :root {
    --fs-hero: 56px;
    --fs-section: 36px;
    --fs-body: 16px;
  }

  .hero {
    padding: 24px 0 72px;
  }

  .hero-image {
    height: 400px;
  }

  .section {
    padding: 72px 0;
  }
}
