/* =========================================================
   DALARNAS SKATEBOARDFÖRBUND
   Designsystem v1 – städad CSS
   ========================================================= */

/* 1. DESIGN TOKENS */

:root {
  /* Colors */
  --color-blue-900: #183765;
  --color-blue-800: #20467e;
  --color-blue-700: #285594;
  --color-blue-100: #e8eef8;

  --color-yellow-500: #fecc50;
  --color-yellow-600: #e8b83e;

  --color-white: #ffffff;
  --color-offwhite: #f7f8fb;
  --color-ink: #111827;
  --color-muted: #667085;
  --color-border: #d8deea;

  /* RGB helpers for transparent colors */
  --rgb-blue-900: 24, 55, 101;
  --rgb-blue-800: 32, 70, 126;
  --rgb-white: 255, 255, 255;
  --rgb-ink: 17, 24, 39;

  /* Typography */
  --font-heading: "Montserrat", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  /* Layout */
  --container: 1180px;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-2xl: 7rem;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  /* Effects */
  --shadow-card: 0 16px 40px rgba(var(--rgb-ink), 0.08);
  --shadow-panel: 0 30px 90px rgba(15, 35, 70, 0.18);
  --shadow-button: 0 8px 20px rgba(var(--rgb-blue-800), 0.18);

  --transition-fast: 160ms ease;
  --transition-base: 240ms ease;
}

/* 2. BASE */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-white);
  line-height: 1.6;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

p {
  margin: 0;
}

::selection {
  color: var(--color-blue-900);
  background: var(--color-yellow-500);
}

/* 3. TYPOGRAPHY */

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-heading);
  color: var(--color-blue-900);
  line-height: 1.05;
}

h1 {
  font-size: clamp(3.5rem, 6vw, 5.8rem);
  font-weight: 900;
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(2.2rem, 4.5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.045em;
}

h3 {
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 800;
}

.lead {
  max-width: 760px;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  color: var(--color-muted);
}

.sport-label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 900;
  color: var(--color-blue-800);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* 4. LAYOUT HELPERS */

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding-block: var(--space-2xl);
}

.section-blue {
  color: var(--color-white);
  background: var(--color-blue-800);
}

.section-blue h1,
.section-blue h2,
.section-blue h3,
.section-blue .sport-label,
.section-heading-invert h2,
.section-heading-invert p {
  color: var(--color-white);
}

.section-clubs-teaser,
.page-intro {
  background: var(--color-offwhite);
}

.section-heading {
  display: grid;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
}

.grid {
  display: grid;
  gap: var(--space-md);
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* 5. BUTTONS & LINKS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.4rem;
  gap: 0.55rem;

  font-family: var(--font-heading);
  font-weight: 800;
  text-decoration: none;

  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  cursor: pointer;

  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast),
    color var(--transition-fast),
    border-color var(--transition-fast);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--color-white);
  background: var(--color-blue-800);
  box-shadow: var(--shadow-button);
}

.btn-important {
  color: var(--color-blue-900);
  background: var(--color-yellow-500);
}

.btn-outline {
  color: var(--color-blue-800);
  background: transparent;
  border-color: var(--color-blue-800);
}

.section-link {
  display: inline-flex;
  align-items: center;
  margin-top: var(--space-lg);
  gap: 0.5rem;

  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--color-yellow-500);
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;

  transition:
    transform var(--transition-fast),
    color var(--transition-fast);
}

.section-link:hover {
  transform: translateX(4px);
}

.section-link-blue {
  margin-top: 0;
  color: var(--color-blue-800);
}

/* 6. HEADER & NAVIGATION */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;

  background: rgba(var(--rgb-white), 0.94);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(14px);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 104px;
  gap: var(--space-md);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 1rem;

  font-family: var(--font-heading);
  font-weight: 900;
  color: var(--color-blue-900);
  line-height: 1;
  text-decoration: none;
}

.nav-logo img {
  width: auto;
  height: 78px;
}

.nav-logo span {
  font-size: 1.15rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;

  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
}

.nav-links a {
  color: var(--color-blue-900);
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--color-blue-700);
}

.nav-toggle,
.mobile-menu {
  display: none;
}

/* 7. HERO */

.hero {
  position: relative;
  overflow: hidden;
  padding-block: var(--space-2xl);
  background: linear-gradient(135deg, var(--color-white) 0 62%, var(--color-blue-100) 62%);
}

.hero-identity-inner {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  align-items: center;
  gap: var(--space-xl);
}

.hero-copy h1 {
  max-width: 820px;
}

.hero-copy .lead {
  margin-top: var(--space-md);
}

.hero-image {
  position: relative;
  display: grid;
  align-items: center;
  min-height: calc(100vh - 104px);
  overflow: hidden;
  padding-block: var(--space-2xl);
  background: var(--color-blue-900);
}

.hero-image-bg {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(var(--rgb-blue-900), 0.88) 0%,
      rgba(var(--rgb-blue-900), 0.70) 42%,
      rgba(var(--rgb-blue-900), 0.22) 100%
    ),
    url("../images/tillsammans.webp");
  background-position: center;
  background-size: cover;
}

.hero-image-inner {
  position: relative;
  z-index: 1;
}

.hero-image .hero-copy {
  max-width: 760px;
}

.hero-image .sport-label,
.hero-image h1 {
  color: var(--color-white);
}

.hero-image .lead {
  color: rgba(var(--rgb-white), 0.84);
}

/* 8. NEWS */

.news-layout-editorial {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--space-md);
}

.news-card-editorial {
  display: grid;
  overflow: hidden;

  color: var(--color-ink);
  text-decoration: none;

  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);

  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.news-card-editorial:hover {
  transform: translateY(-4px);
}

.news-card-editorial img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card-featured {
  grid-row: span 2;
  grid-template-rows: 320px auto;
}

.news-card-featured .news-content {
  padding: var(--space-lg);
}

.news-card-horizontal {
  grid-template-columns: 0.95fr 1fr;
  min-height: 260px;
}

.news-card-horizontal .news-content {
  display: grid;
  align-content: center;
  gap: 0.55rem;
  padding: var(--space-md);
}

.news-content h3 {
  color: var(--color-blue-900);
}

.news-content p {
  color: var(--color-muted);
}

.news-meta {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--color-blue-800);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* 9. ACTION CARDS */

.action-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  padding: var(--space-lg);

  background: rgba(var(--rgb-white), 0.08);
  border: 1px solid rgba(var(--rgb-white), 0.18);
  border-radius: var(--radius-lg);
}

.action-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 180px;
  height: 180px;

  background: var(--color-yellow-500);
  opacity: 0.16;
  transform: rotate(45deg);
}

.action-number {
  display: block;
  margin-bottom: var(--space-lg);

  font-family: var(--font-heading);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 900;
  color: var(--color-yellow-500);
  line-height: 1;
}

.action-card h3 {
  margin-bottom: var(--space-sm);
  color: var(--color-white);
}

.action-card p {
  color: rgba(var(--rgb-white), 0.78);
}

/* 10. CLUBS TEASER */

.clubs-teaser {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: var(--space-xl);
}

.clubs-teaser-content {
  display: grid;
  gap: var(--space-md);
}

.clubs-teaser-content p:not(.lead) {
  max-width: 720px;
  color: var(--color-muted);
}

.clubs-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

/* 11. FOOTER */

.site-footer {
  position: relative;
  overflow: hidden;
  padding-block: var(--space-xl) var(--space-md);

  color: var(--color-ink);
  background: var(--color-offwhite);
}

.footer-inner {
  display: grid;
  grid-template-columns: 280px 1fr 1fr;
  align-items: start;
  gap: var(--space-xl);
}

.footer-logo {
  width: 100%;
  height: auto;
}

.footer-logo-wrapper {
  display: inline-flex;
  padding: 1.25rem;

  background: rgba(var(--rgb-white), 0.12);
  border-radius: 20px;
  backdrop-filter: blur(12px);
}

.footer-brand h2,
.footer-contact .sport-label,
.footer-org .sport-label {
  color: var(--color-blue-900);
}

.footer-brand h2 {
  max-width: 560px;
  font-size: clamp(2.8rem, 4.8vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.footer-brand p,
.footer-contact p,
.footer-org p,
.footer-bottom p {
  color: var(--color-muted);
}

.site-footer a {
  color: var(--color-blue-900);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--color-blue-700);
}

.footer-contact,
.footer-org {
  display: grid;
  align-content: start;
  gap: 0.6rem;
}

.footer-socials {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);

  font-family: var(--font-heading);
  font-weight: 800;
}

.footer-bottom {
  position: relative;
  z-index: 1;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);

  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
}

.footer-legal {
  display: flex;
  gap: var(--space-sm);

  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
}

/* 12. CLUBS FEATURE SECTION */

.clubs-feature {
  position: relative;
  padding-bottom: 10rem;
  background: var(--color-white);
}

.clubs-feature-image {
  position: relative;
  height: 780px;
  overflow: hidden;
  margin-top: var(--space-2xl);
}

.clubs-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clubs-feature-panel {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-xl);

  margin-top: -340px;
  padding: var(--space-lg);

  background: rgba(var(--rgb-white), 0.62);
  border: 1px solid rgba(var(--rgb-white), 0.55);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-panel);
  backdrop-filter: blur(12px);
}

.clubs-feature-heading h2 {
  max-width: 8ch;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.9;
}

.clubs-feature-content {
  display: grid;
  align-content: start;
  gap: var(--space-md);
}

.clubs-feature-content p:not(.lead) {
  color: var(--color-muted);
}

/* 13. UNDER CONSTRUCTION */

.under-construction {
  padding: 8rem 0;
}

.construction-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.construction-content h1 {
  margin-block: 1rem 1.5rem;
}

.construction-content .lead {
  max-width: 650px;
  margin-inline: auto;
}

.construction-image {
  display: block;
  width: min(100%, 500px);
  margin: 4rem auto 0;
}

/* 14. ARTICLE */

.article-header {
  max-width: 900px;
  padding-block: 4rem 3rem;
}

.article-header h1 {
  max-width: 12ch;
  margin-block: 1rem;
}

.article-ingress {
  max-width: 65ch;
  font-size: 1.35rem;
  color: var(--color-muted);
  line-height: 1.6;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-top: 2rem;

  font-size: 0.9rem;
  color: var(--color-muted);
}

.article-hero {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-content {
  max-width: 760px;
}

.article-content p {
  margin-bottom: var(--space-md);
}

.article-content h2 {
  margin-top: 4rem;
  margin-bottom: var(--space-sm);
}

.article-content blockquote {
  margin: 3rem 0;
  padding-left: var(--space-md);

  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;

  border-left: 4px solid var(--color-yellow-500);
}

.article-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.article-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.article-video,
.article-gallery {
  margin-top: var(--space-xl);
}

.article-video iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: var(--radius-lg);
}

.article-related {
  margin-block: 6rem;
}

/* 15. CLUBS PAGE */

.page-intro h1 {
  margin-top: var(--space-xs);
}

.page-intro .lead {
  margin-top: var(--space-md);
}

.clubs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-md);
}

.club-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
  gap: var(--space-md);

  padding: var(--space-md);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.club-logo {
  display: grid;
  place-items: center;
  min-height: 160px;
  padding: var(--space-md);

  background: var(--color-offwhite);
  border-radius: var(--radius-md);
}

.club-logo img {
  width: auto;
  max-height: 110px;
}

.club-content h2 {
  margin-block: var(--space-xs);
  font-size: clamp(1.5rem, 2.4vw, 2.4rem);
}

.club-content p {
  color: var(--color-muted);
}

/* 16. OM OSS – VISION */

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-xl);
}

.vision-content h2 {
  margin-block: var(--space-sm);
}

.vision-content p:not(.lead) {
  margin-top: var(--space-md);
}

.vision-image img {
  width: 100%;
  aspect-ratio: 6 / 5;
  object-fit: cover;

  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

/* 17. OM OSS – BAKGRUND */

.background-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: var(--space-xl);
}

.background-content h2 {
  margin-block: var(--space-sm);
}

.background-content p:not(.lead) {
  margin-top: var(--space-md);
}

.background-image {
  position: relative;
}

.background-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;

  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

/* 18. OM OSS – SDF */

.sdf-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: var(--space-xl);
}

.sdf-content,
.sdf-facts {
  display: grid;
}

.sdf-content p {
  color: var(--color-white);
}

.sdf-content {
  gap: var(--space-md);
}

.sdf-content p:not(.lead) {
  color: rgba(var(--rgb-white), 0.78);
}

.sdf-facts {
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.sdf-facts div {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: start;
  gap: var(--space-md);

  padding-top: var(--space-sm);
  border-top: 1px solid rgba(var(--rgb-white), 0.18);
}

.sdf-facts span {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-yellow-500);
  line-height: 1;
}

.sdf-facts p {
  color: rgba(var(--rgb-white), 0.86);
}

/* 19. ANIMATIONS */

.fade-in {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeIn 600ms ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 20. RESPONSIVE */

@media (max-width: 900px) {
  .section {
    padding-block: var(--space-xl);
  }

  .grid-2,
  .grid-3,
  .hero-identity-inner,
  .news-layout-editorial,
  .clubs-teaser,
  .footer-inner,
  .clubs-feature-panel,
  .clubs-grid,
  .vision-grid,
  .background-grid,
  .sdf-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    min-height: 76px;
    align-items: center;
    padding-block: var(--space-sm);
  }

  .nav-logo img {
    height: 58px;
  }

  .nav-logo span,
  .nav-links,
  .nav > .btn {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;

    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--color-blue-900);

    background: var(--color-white);
    border: 2px solid var(--color-blue-800);
    border-radius: var(--radius-pill);
    cursor: pointer;
  }

  .mobile-menu {
    position: absolute;
    inset-inline: 0;
    top: 100%;

    display: none;
    flex-direction: column;
    gap: var(--space-sm);
    padding: var(--space-md);

    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
  }

  .mobile-menu.is-open {
    display: flex;
  }

  .mobile-menu a {
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--color-blue-900);
    text-decoration: none;
  }

  .hero-emblem {
    justify-content: flex-start;
  }

  .hero-emblem img {
    width: 180px;
  }

  .hero-image {
    min-height: auto;
    padding-block: 5rem;
  }

  .hero-image-inner {
    display: flex;
    align-items: center;
    min-height: 560px;
  }

  .hero-image .hero-copy {
    max-width: 100%;
  }

  .hero-image h1 {
    font-size: clamp(3rem, 13vw, 4.2rem);
    line-height: 0.95;
  }

  .news-card-featured {
    grid-row: auto;
    grid-template-rows: 240px auto;
  }

  .news-card-horizontal {
    grid-template-columns: 1fr;
  }

  .news-card-horizontal img {
    height: 220px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .clubs-feature-image {
    height: 420px;
  }

  .clubs-feature-panel {
    margin-top: -80px;
    gap: 2rem;
    padding: 2rem;
  }

  .clubs-feature-heading h2 {
    max-width: none;
  }

  .article-hero {
    height: 320px;
  }

  .article-gallery {
    grid-template-columns: 1fr;
  }

  .article-ingress {
    font-size: 1.15rem;
  }

  .club-card {
    grid-template-columns: 1fr;
  }

  .club-logo {
    min-height: 140px;
  }

  .vision-grid,
  .background-grid {
    gap: 2rem;
  }

  .vision-image,
  .background-image {
    order: -1;
  }
}

@media (max-width: 600px) {
  :root {
    --space-2xl: 4.5rem;
  }

  .container {
    width: min(100% - 1.25rem, var(--container));
  }

  .btn {
    width: 100%;
  }

  .clubs-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-image {
    min-height: 620px;
  }

  .hero-image-bg {
    background:
      linear-gradient(
        180deg,
        rgba(var(--rgb-blue-900), 0.82) 0%,
        rgba(var(--rgb-blue-900), 0.62) 55%,
        rgba(var(--rgb-blue-900), 0.28) 100%
      ),
      url("../images/tillsammans.webp");
    background-position: center;
    background-size: cover;
  }
}

/* ==========================
   OM OSS - VÄRDERINGAR
========================== */

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-md);
}

.value-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;

  padding: var(--space-lg);

  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.value-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;

  width: 180px;
  height: 180px;

  background: var(--color-yellow-500);
  opacity: 0.18;
  transform: rotate(45deg);
}

.value-number {
  display: block;
  margin-bottom: var(--space-md);

  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  font-weight: 900;
  line-height: 1;

  color: var(--color-yellow-600);
}

.value-card h3 {
  margin-bottom: var(--space-sm);
  font-size: clamp(1.1rem, 1.3vw, 1.35rem);
}

.value-card p {
  max-width: 52ch;
  color: var(--color-muted);
}

@media (max-width: 1100px) {
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* OM OSS - HERO */

.about-hero {
  background: var(--color-offwhite);
}

.about-hero-content {
  max-width: 1200px;
  margin-inline: auto;
  text-align: center;
}

.about-hero h1 {
  max-width: none;
  margin-inline: auto;
}

.about-hero p {

  max-width: none;
  margin-inline: auto;
}

.about-hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  max-width: 900px;

  margin-top: var(--space-lg);
  margin-inline: auto; /* <-- centrerar hela raden */
}

.about-hero-meta div {
  padding-inline: var(--space-lg);
  text-align: center;
  border-left: 1px solid var(--color-border);
}

.about-hero-meta div:last-child {
  border-right: 1px solid var(--color-border);
}

.about-hero-meta strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 900;
  line-height: 1;
  color: var(--color-blue-900);
}

.about-hero-meta span {
  display: block;
  margin-top: 0.45rem;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
}

@media (max-width: 700px) {
  .about-hero-meta {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .about-hero-meta div,
  .about-hero-meta div:last-child {
    padding-inline: 0;
    padding-block: var(--space-md);
    border-left: 0;
    border-right: 0;
    border-top: 1px solid var(--color-border);
  }
}
.about-hero-image {
  margin-top: var(--space-xl);
}

.about-hero-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

@media (max-width: 700px) {
  .about-hero-meta {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .about-hero-meta div,
  .about-hero-meta div:last-child {
    padding-inline: 0;
    padding-block: var(--space-md);
    border-left: 0;
    border-right: 0;
    border-top: 1px solid var(--color-border);
  }

  .about-hero-image img {
    height: 280px;
  }
}