  /* ============================================================
     ESIMERKIT: välilehdet (ilman JavaScriptiä paneelit allekkain)
     ============================================================ */
  .ex .section-head { margin-bottom: 40px; }
  .ex-tablist {
    display: inline-flex;
    gap: 6px;
    padding: 6px;
    margin-bottom: 28px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--sh-md);
    max-width: 100%;
    overflow-x: auto;
  }
  .ex-tablist[hidden] { display: none; }
  .ex-tab {
    flex-shrink: 0;
    padding: 12px 22px;
    border-radius: 999px;
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 800;
    transition: color .2s, background .2s;
  }
  .ex-tab:hover { color: var(--navy-dark); }
  .ex-tab[aria-selected="true"] { background: var(--navy-dark); color: #fff; }
  .ex-tab:focus-visible { outline: 2px solid var(--pink); outline-offset: 2px; }

  .ex-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
    padding: 28px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--sh-md);
  }
  .ex-panel + .ex-panel { margin-top: 24px; }
  .ex-js .ex-panel + .ex-panel { margin-top: 0; }
  .ex-js .ex-panel[hidden] { display: none; }
  .ex-js .ex-panel:not([hidden]) { animation: exIn .5s cubic-bezier(.22,1,.36,1); }
  @keyframes exIn { from { opacity: 0; transform: translateY(10px); } }

  .ex-media { position: relative; }
  .ex-media img { width: 100%; height: auto; aspect-ratio: 16 / 11; object-fit: cover; border-radius: 20px; }
  .ex-media--product img { object-position: right center; }
  .ex-ad {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 14px 18px;
    border-radius: 14px;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: var(--sh-md);
    color: var(--navy-dark);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
  }
  .ex-ad span { display: block; margin-bottom: 4px; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--pink); }

  .ex-body h3 { font-size: clamp(24px, 2.2vw, 32px); font-weight: 900; line-height: 1.15; letter-spacing: -.02em; color: var(--navy-dark); margin-bottom: 14px; }
  .ex-body > p { font-size: 17px; line-height: 1.65; color: var(--text-muted); margin-bottom: 26px; }
  .ex-spec { display: grid; gap: 0; border-top: 1px solid var(--border); }
  .ex-spec > div { display: grid; grid-template-columns: 130px 1fr; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border); }
  .ex-spec dt { padding-top: 3px; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); }
  .ex-spec dd { font-size: 15px; line-height: 1.55; color: var(--text); }
  .ex-spec ul { list-style: none; display: grid; gap: 6px; }
  .ex-spec li { position: relative; padding-left: 18px; }
  .ex-spec li::before { content: ''; position: absolute; left: 0; top: .6em; width: 7px; height: 7px; border-radius: 50%; background: var(--grad-tilt); }
  .ex-chips { display: flex; flex-wrap: wrap; gap: 6px; }
  .ex-chips span { padding: 5px 11px; border-radius: 8px; background: var(--navy-50); color: var(--navy-dark); font-size: 13px; font-weight: 600; }
  .ex-spec strong { color: var(--navy-dark); font-weight: 800; }

  .ex-other { max-width: 820px; margin-top: 28px; color: var(--text-muted); font-size: 16px; line-height: 1.65; }
  .campaign-image-note { margin-top: 12px; color: var(--text-muted); font-size: 13px; }

  @media (max-width: 960px) {
    .ex-panel { grid-template-columns: 1fr; gap: 28px; }
  }
  @media (max-width: 600px) {
    .ex-panel { padding: 16px; border-radius: 22px; }
    .ex-media img { aspect-ratio: 4 / 3; border-radius: 14px; }
    .ex-ad { position: static; margin-top: 12px; box-shadow: none; background: var(--surface); }
    .ex-body { padding: 0 6px 8px; }
    .ex-spec > div { grid-template-columns: 1fr; gap: 8px; }
    .ex-tablist { display: flex; width: 100%; gap: 2px; padding: 4px; }
    .ex-tab { flex: 1 1 auto; padding: 10px 8px; font-size: 13px; }
  }
