:root {
  --bg: #f8f9fa;
  --surface: #ffffff;
  --ink: #1a202c;
  --muted: #4a5568;
  --accent: #ffbf00;
  --accent-2: #cc9800;
  --stroke: #e2e8f0;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  --bg-gradient-start: #f8f9fa;
  --bg-gradient-end: #edf2f7;
  --page-glow-line: rgba(0, 0, 0, 0.03);
  --hero-start: #ffffff;
  --hero-end: #f8f9fa;
  --accent-soft: rgba(255, 191, 0, 0.1);
  --code-bg: rgba(0, 0, 0, 0.04);
  --glass-surface: rgba(255, 255, 255, 0.85);
  --glass-surface-strong: rgba(255, 255, 255, 0.95);
  --glass-stroke: rgba(0, 0, 0, 0.08);
  --glass-highlight: rgba(255, 191, 0, 0.05);
  --bg-node-a: rgba(255, 191, 0, 0.08);
  --bg-node-b: rgba(0, 0, 0, 0.03);
  --bg-node-c: rgba(0, 0, 0, 0.02);
  --bg-line: rgba(0, 0, 0, 0.04);
  --page-bg-image: none;
  --content-max: 1100px;
  --page-gutter: 1.25rem;
}

:root[data-theme='dark'] {
  --bg: #111827;
  --surface: #1f2937;
  --ink: #f9fafb;
  --muted: #9ca3af;
  --accent: #ffbf00;
  --accent-2: #cc9800;
  --stroke: #374151;
  --shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
  --bg-gradient-start: #111827;
  --bg-gradient-end: #030712;
  --page-glow-line: rgba(255, 255, 255, 0.05);
  --hero-start: #1f2937;
  --hero-end: #111827;
  --accent-soft: rgba(255, 191, 0, 0.15);
  --code-bg: rgba(255, 255, 255, 0.05);
  --glass-surface: rgba(31, 41, 55, 0.85);
  --glass-surface-strong: rgba(31, 41, 55, 0.95);
  --glass-stroke: rgba(255, 255, 255, 0.1);
  --glass-highlight: rgba(255, 191, 0, 0.05);
  --bg-node-a: rgba(255, 191, 0, 0.08);
  --bg-node-b: rgba(255, 255, 255, 0.02);
  --bg-node-c: rgba(255, 255, 255, 0.01);
  --bg-line: rgba(255, 255, 255, 0.03);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  min-height: 100%;
  background: transparent;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
  min-height: 100vh;
  line-height: 1.6;
  position: relative;
  isolation: isolate;
}

body::before,
body::after {
  content: none;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  line-height: 1.15;
  margin-top: 0;
  font-weight: 700;
}

a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--ink);
}

.site-header {
  width: 100%;
  margin: 0;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--glass-surface);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-stroke);
  box-shadow: var(--shadow);
}

.theme-toggle {
  border: 1px solid var(--stroke);
  background: var(--surface);
  color: var(--ink);
  border-radius: 999px;
  width: 2.2rem;
  height: 2.2rem;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.theme-toggle:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
}

.theme-toggle-icon {
  display: inline-block;
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 50%;
  border: 2px solid currentColor;
  position: relative;
}

:root[data-theme='dark'] .theme-toggle-icon {
  border-color: transparent;
  background: currentColor;
}

:root[data-theme='dark'] .theme-toggle-icon::after {
  content: '';
  position: absolute;
  width: 0.82rem;
  height: 0.82rem;
  border-radius: 50%;
  background: var(--surface);
  top: 0.02rem;
  left: 0.34rem;
}

.brand {
  text-decoration: none;
  color: var(--ink);
  display: inline-flex;
  flex-direction: column;
}

.brand-logo-text {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.65rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}

.brand-logo-text::after {
  content: '.';
  color: var(--accent);
}

.brand-sub-text {
  font-family: "Inter", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-top: 1px;
}

  .main-nav {
    display: flex;
    gap: 1.25rem;
    align-items: center;
  }

  .main-nav a {
    text-decoration: none;
    border-bottom: 2px solid transparent;
    padding: 0.2rem 0;
    color: var(--ink);
    font-weight: 600;
    transition: all 0.2s ease;
  }

  .main-nav .theme-toggle {
    margin-left: 0.2rem;
  }

  .main-nav a:hover,
  .main-nav a.active {
    border-color: var(--accent);
    color: var(--accent);
    background: transparent;
  }

  .nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    padding: 0.2rem;
    cursor: pointer;
  }

  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    margin: 4px 0;
    background: var(--ink);
    border-radius: 2px;
  }

  main {
    width: min(var(--content-max), calc(100% - (var(--page-gutter) * 2)));
    margin: 0 auto;
    padding: var(--page-gutter) 0;
    position: relative;
    isolation: isolate;
  }

  .hero,
  .blog-hero {
    background: var(--surface);
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow);
    border-radius: 8px;
    padding: clamp(1.5rem, 5vw, 3.5rem);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
  }

  .kicker {
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: var(--accent);
    margin-bottom: 0.75rem;
    font-weight: 700;
  }

  .hero h1,
  .blog-hero h1 {
    font-size: clamp(1.8rem, 4.5vw, 3.2rem);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
  }

  .hero-copy {
    max-width: 70ch;
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    color: var(--muted);
  }

  .hero-actions {
    margin-top: 1.8rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .social-links-block {
    margin-top: 1.5rem;
  }

  .social-links-actions,
  .important-links-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .social-link,
  .integrante-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border: 1px solid var(--stroke);
    border-radius: 4px;
    padding: 0.35rem 0.75rem;
    text-decoration: none;
    background: var(--surface);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink);
    transition: all 0.2s ease;
  }

  .social-link:hover,
  .integrante-link:hover {
    border-color: var(--accent);
    background: var(--accent-soft);
    color: var(--accent);
  }

  .hero-section {
    min-height: min(calc(100vh - 74px), 650px);
    display: flex;
    align-items: center;
  }

  @media (min-width: 768px) {
    .hero-section {
      min-height: min(calc(100vh - 86px), 800px);
    }
  }

  .hero-section .social-link {
    background: #1f2937;
    color: #f9fafb;
    border-color: #374151;
  }

  .hero-section .social-link:hover {
    border-color: var(--accent);
    background: var(--accent-soft);
    color: var(--accent);
  }

  .social-link.icon-only,
  .integrante-link.icon-only {
    width: 2.2rem;
    height: 2.2rem;
    padding: 0;
    justify-content: center;
  }

  .social-icon {
    display: inline-flex;
    width: 1rem;
    height: 1rem;
    color: currentColor;
    align-items: center;
    justify-content: center;
  }

  .social-icon i {
    font-size: 0.95rem;
    line-height: 1;
  }

  .btn {
    text-decoration: none;
    border-radius: 4px;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 0.95rem;
  }

  .btn-primary {
    color: var(--bg);
    background: var(--ink);
    border: 1px solid var(--ink);
  }

  .btn-primary:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #111827;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .btn-ghost {
    color: var(--ink);
    border: 1px solid var(--stroke);
    background: transparent;
  }

  .btn-ghost:hover {
    border-color: var(--accent);
    background: var(--accent-soft);
    color: var(--accent);
    transform: translateY(-2px);
  }

  .section-head {
    margin-bottom: 1.5rem;
  }

  .section-head h2 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    margin-bottom: 0.35rem;
  }

  .section-head p {
    color: var(--muted);
    margin: 0;
  }

  .info-card,
  .axis-card,
  .preview-card {
    background: var(--surface);
    border: 1px solid var(--stroke);
    border-radius: 6px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .mission-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--stroke);
  }

  .mission-lead {
    font-size: 1.2rem;
    font-family: "Playfair Display", serif;
    max-width: 80ch;
    margin-bottom: 1.8rem;
    color: var(--ink);
  }

  .mission-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }

  .mission-grid div {
    padding: 1rem 0;
    border-top: 1px solid var(--stroke);
  }

  .mission-grid h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--accent);
  }

  .axis-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .axis-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--ink);
  }

  .posts-grid {
    columns: 2;
    column-gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .posts-grid .post-card {
    break-inside: avoid;
    margin-bottom: 1.5rem;
  }

  /* Integrantes grid: layout normal sem masonry */
  #integrantes-grid {
    columns: unset;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }

  #integrantes-grid .post-card {
    margin-bottom: 0;
  }

  .home-sections-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
  }

  .preview-grid-home {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: 1fr;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
  }

  .preview-meta {
    margin: 0 0 0.5rem;
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .filters {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
  }

  .filter {
    border: 1px solid var(--stroke);
    border-radius: 4px;
    background: transparent;
    color: var(--ink);
    font: inherit;
    font-weight: 600;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.2s ease;
  }

  .filter.active,
  .filter:hover {
    border-color: var(--accent);
    background: var(--accent-soft);
    color: var(--accent);
  }

  .post-lead {
    font-size: 1.15rem;
    color: var(--muted);
    margin-bottom: 1.8rem;
  }

  .post-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 2.5rem;
    align-items: start;
  }

  .post-main {
    min-width: 0;
  }

  .post-toc {
    position: sticky;
    top: 2rem;
    background: var(--surface);
    border: 1px solid var(--stroke);
    border-radius: 6px;
    padding: 1.25rem;
  }

  .post-toc h2 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    color: var(--ink);
    font-family: "Inter", sans-serif;
    font-weight: 700;
  }

  .post-toc-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
  }

  .post-toc-list li a {
    text-decoration: none;
    color: var(--muted);
    font-weight: 500;
    font-size: 0.9rem;
  }

  .post-toc-list li a:hover {
    color: var(--accent);
  }

  .post-toc-list .toc-level-3 {
    padding-left: 0.75rem;
  }

  .post-toc-mobile {
    display: none;
    margin-bottom: 1.5rem;
    border: 1px solid var(--stroke);
    border-radius: 6px;
    padding: 0.75rem 1rem;
    background: var(--surface);
  }

  .post-toc-mobile summary {
    cursor: pointer;
    font-weight: 700;
    color: var(--ink);
  }

  .post-toc-mobile[open] summary {
    margin-bottom: 0.75rem;
  }

  .post-markdown h1 {
    font-family: "Playfair Display", serif;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--ink);
  }

  .post-markdown h2 {
    font-family: "Playfair Display", serif;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--ink);
  }

  .post-markdown h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--ink);
  }

  .post-markdown h4,
  .post-markdown h5,
  .post-markdown h6 {
    font-family: "Inter", sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--ink);
  }

  .post-markdown p,
  .post-markdown ul,
  .post-markdown ol,
  .post-markdown blockquote {
    margin-top: 0;
    margin-bottom: 1.25rem;
    color: var(--ink);
    font-size: 1.05rem;
  }

  .post-markdown ul,
  .post-markdown ol {
    padding-left: 1.5rem;
  }

  .post-markdown pre,
  .post-markdown code {
    font-family: "Courier New", monospace;
    font-size: 0.95rem;
  }

  .post-markdown pre {
    background: var(--code-bg);
    border: 1px solid var(--stroke);
    border-radius: 6px;
    padding: 1rem;
    overflow-x: auto;
  }

  .post-markdown blockquote {
    border-left: 3px solid var(--accent);
    padding-left: 1rem;
    margin-left: 0;
    color: var(--muted);
    font-style: italic;
  }

  .post-markdown img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 1.5rem auto;
    border-radius: 6px;
    border: 1px solid var(--stroke);
  }

  .integrante-card {
    padding: 1.5rem;
  }

  .integrante-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .integrante-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
    background: var(--surface);
  }

  .integrante-avatar--profile {
    width: 180px;
    height: 180px;
    border-width: 3px;
    flex-shrink: 0;
  }

  .integrante-head-text h2 {
    margin: 0;
    font-size: 1.5rem;
  }

  .integrante-name-link {
    text-transform: none !important;
    letter-spacing: normal !important;
    position: static !important;
  }

  .integrante-name-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
  }

  .integrante-link,
  .integrante-avatar-link {
    position: relative;
    z-index: 2;
  }

  .integrante-role {
    margin: 0.2rem 0 0;
    color: var(--muted);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: none;
    letter-spacing: normal;
  }

  .integrante-bio {
    margin-bottom: 1rem;
    color: var(--muted);
  }

  .integrante-profile-posts {
    margin-top: 2rem;
    border-top: 1px solid var(--stroke);
    padding-top: 1.5rem;
  }

  .integrante-profile-posts h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .author-posts-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .site-footer {
    margin-top: 4rem;
    border-top: 1px solid var(--stroke);
    background: var(--surface);
    color: var(--muted);
  }

  .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem var(--page-gutter);
    display: grid;
    gap: 2rem;
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .footer-kicker {
    margin: 0 0 0.5rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 700;
  }



  .footer-brand-block h2,
  .footer-links-block h3,
  .footer-contact-block h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: var(--ink);
  }

  .footer-brand-block h2 {
    font-size: 1.35rem;
    letter-spacing: -0.01em;
  }

  .footer-brand-block p,
  .footer-contact-block p {
    margin: 0 0 0.75rem;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .footer-links-block ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .footer-links-block li {
    margin-bottom: 0.5rem;
  }

  .footer-links-block a {
    font-weight: 600;
    font-size: 0.9rem;
  }

  .footer-legal {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.5rem var(--page-gutter) 2rem;
    border-top: 1px solid var(--stroke);
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .footer-legal p {
    margin: 0;
    font-size: 0.8rem;
  }

  .reveal {
    opacity: 0;
    transform: translateY(12px);
    animation: rise 0.5s ease forwards;
  }

  .reveal:nth-of-type(2) {
    animation-delay: 0.08s;
  }

  .reveal:nth-of-type(3) {
    animation-delay: 0.16s;
  }

  .reveal:nth-of-type(4) {
    animation-delay: 0.24s;
  }

  @keyframes rise {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @media (max-width: 900px) {

    .mission-grid,
    .axis-grid {
      grid-template-columns: 1fr;
    }

    .home-sections-split {
      grid-template-columns: 1fr;
    }

    .posts-grid {
      columns: 1;
    }

    #integrantes-grid {
      columns: unset;
      display: grid;
      grid-template-columns: 1fr;
    }

    .footer-inner {
      grid-template-columns: 1fr 1fr;
    }

    .footer-brand-block {
      grid-column: 1 / -1;
    }
  }

  @media (max-width: 700px) {


    .brand {
      max-width: calc(100% - 52px);
    }

    .nav-toggle {
      display: block;
    }

    .main-nav {
      width: 100%;
      display: none;
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
      margin-top: 0.6rem;
      padding-top: 0.6rem;
      border-top: 1px solid var(--stroke);
    }

    .site-header.menu-open .main-nav {
      display: flex;
    }

    .main-nav a {
      width: fit-content;
      padding: 0.3rem 0;
    }

    .main-nav .theme-toggle {
      margin-left: 0;
    }

    .post-layout {
      grid-template-columns: 1fr;
      gap: 0.5rem;
    }

    .post-toc {
      display: none;
    }

    .post-toc-mobile {
      display: block;
    }

    .hero,
    .blog-hero {
      border-radius: 6px;
    }

    .footer-inner {
      grid-template-columns: 1fr;
    }

    .footer-legal {
      flex-direction: column;
    }
  }

  /* Post Card Images & Content Styling */
  .post-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }

  .post-card-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--stroke);
  }

  .post-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
  }

  .post-card:hover .post-card-image {
    transform: scale(1.03);
  }

  /* Post Detail Page Cover Image Styling */
  .post-detail-image-wrapper {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 1.8rem;
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow);
  }

  @media (max-width: 768px) {
    .post-detail-image-wrapper {
      height: 250px;
    }
  }

  .post-detail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
.restricted-access-link {
  color: inherit;
  opacity: 0.5;
  text-decoration: none;
  transition: opacity 0.2s;
}
.restricted-access-link:hover {
  opacity: 1;
  text-decoration: underline;
}

/* ==========================================================================
   Home Page Redesign (Hero, Scroll Header & Carousel)
   ========================================================================== */



/* Home Page Carousel styling */
#home-carousel-slides {
  display: flex;
  width: 100%;
}

.home-carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  display: none; /* Controlled by js active class */
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .home-carousel-slide {
    grid-template-columns: 1.2fr 1fr;
  }
}

.home-carousel-slide.active {
  display: grid;
  animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.99); }
  to { opacity: 1; transform: scale(1); }
}

/* Dots navigation */
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--border-color);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background-color: var(--accent);
  width: 24px;
  border-radius: 4px;
}

/* Hide scrollbar for timeline overflow on mobile */
.scrollbar-none::-webkit-scrollbar {
  display: none;
}
.scrollbar-none {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

@media (min-width: 768px) {
  .hero-section .md\:w-48 {
    width: 20rem;
  }
  .hero-section .md\:h-24 {
    height: 4rem;
  }
  .hero-section .md\:top-\[30\%\] {
    top: 43%;
  }
  .hero-section .md\:left-\[35\%\] {
    left: 24%;
  }
}

.font-archivo-narrow {
  font-family: "Archivo Narrow", sans-serif;
}

.font-archivo-black {
  font-family: "Archivo Black", sans-serif;
}

@media (min-width: 768px) {
  .site-header .md\:h-24 {
    height: 5rem;
  }
  .site-header .md\:left-\[68\%\] {
    left: 80%;
  }
}

