      :root {
        --brand: #04c2f0;
        --ink: #0a2b3d;
      }
      body {
        background: #fff;
        color: var(--ink);
        font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial,
          sans-serif;
        line-height: 1.6;
      }
      /* Nav */
      .nav-link {
        position: relative;
        font-weight: 600;
        transition: opacity 0.2s;
        padding: 0.25rem 0.125rem;
      }
      .nav-link::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 4px;
        left: 0;
        bottom: -1.75rem;
        background: var(--brand);
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 0.25s ease;
      }
      .nav-link:hover {
        opacity: 0.85;
      }
      .nav-link:hover::after,
      .nav-link.active::after {
        transform: scaleX(1);
      }
      .site-logo {
        height: 44px;
        width: auto;
        max-width: 100%;
        object-fit: contain;
      }

      /* Dropdown */
      .menu-wrap {
        gap: 2rem;
      }
      .dropdown {
        position: relative;
      }
      .dropdown-panel {
        position: absolute;
        left: 0;
        top: calc(100% + 0.75rem);
        width: 14rem;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        padding: 0.5rem;
        border: 1px solid rgba(0, 0, 0, 0.05);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-4px);
        transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
      }
      .dropdown:hover .dropdown-panel {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }
      .dropdown-item {
        display: block;
        padding: 0.75rem 1rem;
        border-radius: 10px;
      }
      .dropdown-item:hover {
        background: #f7fafc;
      }

      /* Page layout with more air */
      .blog-wrapper {
        max-width: 960px;
        margin: 0 auto;
        position: relative;
        padding: 3rem 1.25rem;
      }
      .featured-image {
        width: calc(100% + 4rem);
        margin-left: -2rem;
        margin-right: -2rem;
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
        overflow: hidden;
      }
      .featured-image img {
        width: 100%;
        height: auto;
        max-height: 440px;
        object-fit: cover;
        display: block;
      }
      .blog-content {
        background: #fff;
        padding: 3.25rem 2.25rem;
        margin-top: -90px;
        position: relative;
        z-index: 10;
        border-radius: 14px;
        box-shadow: 0 14px 44px rgba(0, 0, 0, 0.06);
        text-align: center;
      }
      .badge {
        display: inline-block;
        background: var(--brand);
        color: #fff;
        font-weight: 800;
        padding: 8px 18px;
        font-size: 0.95rem;
        border-radius: 12px;
        margin-bottom: 1.5rem;
      }
      .title {
        font-size: 2.2rem;
        font-weight: 900;
        margin-bottom: 0.5rem;
        color: #222;
        letter-spacing: 0.2px;
      }
      .date {
        font-size: 1rem;
        color: #667085;
        margin-bottom: 1.75rem;
      }
      .responsive-container {
        padding: 0 1rem;
        max-width: 760px;
        margin: 0 auto 1rem;
        overflow-wrap: break-word;
      }
      .blog-content p {
        margin: 0.9rem auto;
        max-width: 62ch;
        color: #2b3340;
      }
      .meta-row {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 2.75rem;
        gap: 1.25rem;
        flex-wrap: wrap;
      }
      .icons a {
        font-size: 1.6rem;
        color: #2c2c2c;
        margin-right: 0;
        text-decoration: none;
      }
      .icons a:hover {
        color: #0395c2;
      }

      /* CTA section to Archive */
      .cta-archive {
        margin-top: 2.5rem;
        text-align: center;
      }
      .btn {
        display: inline-block;
        background: var(--brand);
        color: #fff;
        font-weight: 700;
        padding: 0.9rem 1.25rem;
        border-radius: 12px;
      }
      .btn:hover {
        opacity: 0.9;
      }
      hr {
        border: 0;
        border-top: 1px solid #e5e7eb;
        margin: 2rem auto;
        max-width: 760px;
      }
      footer {
        margin-top: 4rem;
      }
      .submenu-mobile {
        padding-left: 2.5rem;
      }

      /* === Ny, mörk dropdownstil === */
      :root {
        --dd-bg: #23272f; /* panelens bakgrund */
        --dd-border: rgba(255, 255, 255, 0.08);
        --dd-text: #e6e9ef;
        --dd-sub: #a8b0bd;
        --dd-hover: rgba(255, 255, 255, 0.07);
      }

      .dropdown {
        position: relative;
        display: inline-block;
      }

      /* Panel: bredd som aldrig spränger layouten */
      .dropdown > .dropdown-panel {
        position: absolute;
        top: calc(100% - 4px);
        left: 0;
        /* max 360px men aldrig mer än 92% av viewportbredden */
        max-width: min(360px, 92vw);
        width: max-content; /* krymp till innehåll */
        padding: 0.6rem;
        background: #23272f;
        color: #e6e9ef;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 14px;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
        z-index: 1000;

        /* animation + inget glapp */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
        pointer-events: none;
        backdrop-filter: blur(8px);
        overflow: hidden; /* rundade hörn klipper */
      }

      /* Visa */
      .dropdown:hover > .dropdown-panel,
      .dropdown:focus-within > .dropdown-panel {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
      }

      /* Lista och rader – centrerad känsla och jämna inre marginaler */
      .dd-list {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
      }

      .dropdown-item {
        display: flex;
        align-items: center;
        gap: 0.9rem;
        padding: 1rem 1rem; /* lika topp/botten/vänster/höger */
        border-radius: 12px;
        text-decoration: none;
        color: inherit;
        background: transparent;
        min-height: 56px; /* vertikal balans */
      }
      .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.07);
      }

      /* Ikonruta – centrerad ikon */
      .dd-icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        display: grid;
        place-items: center;
        background: rgba(255, 255, 255, 0.08);
        flex: 0 0 36px;
      }

      /* Textblock – wrap utan att bredda panelen */
      .dd-text {
        display: flex;
        flex-direction: column;
        line-height: 1.25;
      }
      .dd-title {
        font-weight: 600;
        font-size: 0.875rem;
      }
      .dd-sub {
        font-size: 0.75rem;
        color: #a8b0bd;
        margin-top: 0.2rem;
        white-space: normal;
        word-break: break-word;
      }

      /* Valfri separator */
      .dd-sep {
        height: 1px;
        margin: 0.25rem 0.25rem;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.08),
          transparent
        );
      }

      /* Om menyn ligger nära högermarginalen: lägg klassen .dropdown--end på .dropdown */
      .dropdown.dropdown--end > .dropdown-panel {
        left: auto;
        right: 0; /* förhindra att panelen sticker ut åt höger */
      }

      .mobile-submenu {
        padding-left: 1.5rem; /* indrag */
        color: #555;
        font-size: 0.95em;
        display: flex;
        align-items: center;
        gap: 0.4rem; /* mellan ikon och text */
      }

      .mobile-submenu i {
        font-size: 0.8em; /* lite mindre ikon */
        line-height: 1; /* centrera vertikalt */
      }

      .mobile-submenu:hover {
        color: #000;
      }




/* === Hero + overlay + article: tydlig stackordning === */
.featured-image {
  position: relative;   /* gör containern positionerbar */
  z-index: 1;           /* under article-kortet */
}

/* Själva fotot */
.featured-image > img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
}

/* DIN PNG ovanpå fotot, uppe till höger */
.featured-image .overlay-png {
  position: absolute;
  top: 10px;
  right: 10px;
  width: clamp(50px, 8vw, 90px);

  height: auto;
  z-index: 2;           /* över fotot, under article */
  pointer-events: none; /* stör inte klick */
}

/* Article-kortet över allt (du har redan z-index: 10, detta är bara för tydlighet) */
.blog-content {
  position: relative;
  z-index: 3;
  /* margin-top: -90px finns redan hos dig och ger överlappet */
}

