/* ============================================================
   DELAD STILMALL – Används av alla artikelsidor
   Mappsökväg: artiklar/shared/artikel.css
   Länkas in via: <link rel="stylesheet" href="../shared/artikel.css">

   Följer exakt samma mönster som utbildningssidornas style.css.
   Ändra aldrig layout/struktur här.
   Byt bara innehållet i respektive artikels index.html.
   ============================================================ */

/* ── GLOBALT ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #1f2937;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

/* Ger rubrikerna en topp-offset som matchar navbarhöjden (~70px) + 20px andrum.
   scroll-margin-top träder in när webbläsaren navigerar via ankarlänk (t.ex. kopierad URL). */
[id] {
  scroll-margin-top: 90px;
}

/* ── BREADCRUMBS ──────────────────────────────────────────── */
.breadcrumb-nav {
  background-color: #ffffff;
  border-bottom: 1px solid #f3f4f6;
  padding: 12px 40px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.breadcrumb-container { max-width: 1400px; margin: 0 auto; }
.breadcrumb-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.35rem;
}
.breadcrumb-item { display: flex; align-items: center; font-size: 13px; color: #6b7280; }
.breadcrumb-item + .breadcrumb-item::before { content: "/"; margin-right: 0.35rem; color: #d1d5db; }
.breadcrumb-item a { color: #6b7280; text-decoration: none; transition: color 0.15s; }
.breadcrumb-item a:hover { color: #2563eb; }
.breadcrumb-current { color: #111827; font-weight: 500; }

/* ── HERO SECTION ─────────────────────────────────────────── */
.lift-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: white;
  border-bottom: 1px solid #e2e8f0;
}
.lift-section * { box-sizing: border-box; }

/* Artikelsidor har ingen gradient */
.bg-gradient-overlay { display: none; }

.lift-container-hero { position: relative; z-index: 1; width: 100%; padding: 0 40px; }
.centered-wrapper { max-width: 1400px; margin: 0 auto; width: 100%; }

.grid-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1450px;
  margin: 0 auto;
}

.content-column { text-align: center; }

/* Rubriker – samma marginaler som style.css */
.lift-section h1 {
  font-size: 2.25rem;
  line-height: 1.1;
  font-weight: 800;
  color: #111827;
  margin: 0 0 0.6rem 0;
  letter-spacing: -0.025em;
}
.sub-header {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2563eb;
  margin: 0 0 0.75rem 0;
  letter-spacing: -0.025em;
}
.description {
  font-size: 1.0625rem;
  line-height: 1.625;
  color: #4b5563;
  margin: 0 auto 0.85rem auto;
  max-width: 36rem;
}

/* Checklista – same margins as style.css */
.check-list {
  display: flex; flex-direction: column; align-items: flex-start;
  width: fit-content; margin: 0 auto 0.85rem auto;
  gap: 0.75rem; font-size: 15px; font-weight: 600; color: #374151;
}
.check-item-hero { display: flex; align-items: center; gap: 0.5rem; }

/* Hero price – exakt samma som style.css */
.hero-price-container { display: flex; flex-direction: column; align-items: center; margin: 0 auto 0.75rem auto; gap: 0.35rem; }
.hero-price-top { display: flex; align-items: center; gap: 0.75rem; }
.hero-price-original { font-size: 1.125rem; color: #9ca3af; text-decoration: line-through; font-weight: 600; }
.hero-price-badge { background-color: #dcfce7; color: #166534; font-size: 11px; font-weight: 700; padding: 0.25rem 0.5rem; border-radius: 0.25rem; text-transform: uppercase; letter-spacing: 0.05em; }
.hero-price-main { display: flex; align-items: baseline; gap: 0.375rem; }
.hero-price-current { font-size: 2.25rem; font-weight: 800; color: #111827; line-height: 1; letter-spacing: -0.025em; }
.hero-price-vat { font-size: 0.875rem; color: #6b7280; font-weight: 500; }

/* Knappar */
.button-group { display: flex; flex-direction: column; gap: 1rem; align-items: center; margin-bottom: 1.25rem; }
.btn-wrapper-primary { width: 100%; min-width: 280px; }

.cta-button-hero {
  display: flex; justify-content: center; align-items: center; width: 100%;
  background-color: #2563eb; color: white !important; padding: 14px;
  border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 15px;
  transition: background-color 0.2s; border: none; cursor: pointer;
}
.cta-button-hero:hover { background-color: #1d4ed8; }

.secondary-button {
  display: inline-flex; justify-content: center; align-items: center;
  gap: 0.5rem; background-color: white; color: #1f2937;
  border: 1px solid #e2e8f0; font-weight: 600; padding: 0 2rem;
  border-radius: 0.5rem; text-decoration: none; transition: background-color 0.2s;
  font-size: 16px; height: 51px; white-space: nowrap;
}
.secondary-button:hover { background-color: #f8fafc; }

/* Trust: loggor + rating */
.trust-section { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.logo-group { display: flex; gap: 0.75rem; }
.logo-box {
  width: 4.5rem; height: 4.5rem; border-radius: 50%;
  border: 1px solid #f1f5f9; background-color: #f8fafc;
  box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
  display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 8px;
}
.logo-box img { width: 100%; height: 100%; object-fit: contain; }
.rating-wrapper { text-align: center; }
.stars { color: #facc15; display: flex; justify-content: center; margin-bottom: 0.125rem; }
.rating-text { font-size: 12px; color: #6b7280; font-weight: 500; margin: 0; }
.rating-score { font-weight: 700; color: #111827; }
.rating-sub { text-transform: uppercase; font-weight: 700; margin-left: 0.25rem; }

/* Hero höger kolumn – bildkort, exakt som utbildningssidan */
.card-column { display: none; position: relative; }

/* Exakt samma bildkort som style.css (.hero-image-card) */
.hero-image-card {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  overflow: hidden;
  background-color: #f3f4f6;
  height: 380px;
}
.hero-image-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Dekorativ blob bakom kortet */
.bg-blob {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  background-color: #eff6ff; border-radius: 50%;
  filter: blur(64px); opacity: 0.6; z-index: -1;
}

.desktop-break { display: none; }

/* ── ARTIKELINNEHÅLL (layout med sidebar) ─────────────────── */
#artikel-wrapper {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #1f2937; line-height: 1.6; width: 100%; box-sizing: border-box;
}
#artikel-wrapper * { box-sizing: border-box; }

/* Speglar exakt hero-strukturen:
   - #artikel-wrapper  = ytterskal med padding: 0 40px  (= lift-container-hero)
   - .lift-container   = innerskal med max-width: 1400px (= centered-wrapper)
   På så sätt fluktar innehåll och hero alltid i exakt samma bredd. */
#artikel-wrapper {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #1f2937; line-height: 1.6; width: 100%; box-sizing: border-box;
  padding: 0 40px;
}
#artikel-wrapper .lift-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 20px 0 6px 0;
}

/* Vänster: artikeltext */
#artikel-wrapper .main-content { flex: 2; min-width: 0; }

/* Höger: sidebar – exakt same min-width som style.css */
#artikel-wrapper .sidebar { flex: 1; min-width: 350px; position: sticky; top: 70px; z-index: 10; }

/* Mobil bokningskort – döljs på desktop */
#artikel-wrapper .mobile-hero-wrapper { display: none; }

/* ── INFO-BOX / INNEHÅLLSFÖRTECKNING ─────────────────────── */
#artikel-wrapper .info-box {
  background-color: #ffffff; border: 1px solid #e2e8f0;
  border-radius: 12px; padding: 30px; margin-bottom: 40px;
}
#artikel-wrapper .info-box-header { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
#artikel-wrapper .info-box h2 { font-size: 22px; font-weight: 700; color: #111827; margin: 0; }
#artikel-wrapper .toc-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
#artikel-wrapper .toc-item {
  display: flex; align-items: center;
  padding-bottom: 8px; border-bottom: 1px solid #f3f4f6;
}
#artikel-wrapper .toc-item:last-child { border-bottom: none; }
#artikel-wrapper .toc-link {
  font-size: 15px; font-weight: 600; color: #374151;
  text-decoration: none; transition: color 0.2s; display: block; width: 100%;
}
#artikel-wrapper .toc-link:hover { color: #2563eb; }

/* ── ARTIKELTEXT ──────────────────────────────────────────── */
#artikel-wrapper .content-section { margin-bottom: 30px; }

#artikel-wrapper .content-section h2 {
  font-size: 24px; font-weight: 700;
  margin-bottom: 15px; margin-top: 40px;
  color: #111827; line-height: 1.3;
}
#artikel-wrapper .content-section h2:first-child { margin-top: 0; }
#artikel-wrapper .content-section h3 {
  font-size: 18px; font-weight: 700;
  margin-top: 25px; margin-bottom: 10px; color: #111827;
}
#artikel-wrapper .content-section p { margin-bottom: 15px; color: #4b5563; font-size: 15px; }
#artikel-wrapper .content-section ul { margin-bottom: 15px; padding-left: 20px; color: #4b5563; font-size: 15px; }
#artikel-wrapper .content-section li { margin-bottom: 5px; }

/* Samma länkstil som utbildningssidans style.css */
#artikel-wrapper .content-section a { color: inherit; text-decoration: none; }
#artikel-wrapper .content-section a:hover { color: inherit; }

/* Bilder i artikeln – halvbredd på desktop, full på mobil */
.artikel-image-container {
  margin-bottom: 2rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  width: 55%;
}
.artikel-image-container img { width: 100%; height: auto; display: block; }

/* ── CTA-LÅDOR ────────────────────────────────────────────── */
#artikel-wrapper .cta-box-container { display: flex; flex-direction: column; gap: 20px; margin-top: 20px; }

#artikel-wrapper .article-link-box {
  display: block; text-decoration: none;
  border: 1px solid #e2e8f0; border-radius: 12px; padding: 30px;
  transition: border-color 0.3s ease;
}
#artikel-wrapper .article-link-box:hover { border-color: #2563eb; }
#artikel-wrapper .article-link-box h4 {
  margin: 0 0 10px 0; font-size: 18px; font-weight: 700;
  color: #111827; display: flex; align-items: center; gap: 8px;
}
#artikel-wrapper .article-link-box .hover-arrow {
  opacity: 0; color: #2563eb;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateX(-5px);
}
#artikel-wrapper .article-link-box:hover .hover-arrow { opacity: 1; transform: translateX(0); }
#artikel-wrapper .article-link-box p { margin: 0 0 15px 0; color: #4b5563; font-size: 15px; }
#artikel-wrapper .article-link-box .link-text { color: #2563eb; font-weight: 600; font-size: 15px; }

#artikel-wrapper .action-box {
  background-color: #eff6ff; border-radius: 12px; padding: 40px; text-align: center;
}
#artikel-wrapper .action-box h4 { margin: 0 0 10px 0; font-size: 20px; font-weight: 700; color: #111827; }
#artikel-wrapper .action-box p { margin: 0 0 25px 0; color: #4b5563; font-size: 15px; }
#artikel-wrapper .action-box .btn-center { max-width: 250px; margin: 0 auto; }

#artikel-wrapper .cta-button {
  display: flex; justify-content: center; align-items: center; width: 100%;
  background-color: #2563eb; color: white; padding: 14px; border-radius: 8px;
  text-decoration: none; font-weight: 600; font-size: 15px; gap: 8px;
  border: none; cursor: pointer; transition: background-color 0.2s;
}
#artikel-wrapper .booking-details .cta-button { margin-bottom: 15px; }
#artikel-wrapper .cta-button:hover { background-color: #1d4ed8; }

#artikel-wrapper .section-divider { border-top: 1px solid #e2e8f0; margin: 50px 0 20px 0; }

/* ── FAQ ──────────────────────────────────────────────────── */
#artikel-wrapper .faq-section { margin-top: 20px; }
#artikel-wrapper .faq-header { display: flex; align-items: center; gap: 12px; margin-bottom: 25px; }
#artikel-wrapper .faq-icon { color: #2563eb; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
#artikel-wrapper .faq-section h3 { margin: 0; font-size: 24px; font-weight: 700; color: #111827; }

#artikel-wrapper .faq-item {
  background: #ffffff; border: 1px solid #e5e7eb;
  border-radius: 8px; margin-bottom: 12px;
  transition: border-color 0.2s ease; overflow: hidden;
}
#artikel-wrapper .faq-item.active { border-color: #2563eb; }
#artikel-wrapper .faq-question {
  width: 100%; padding: 20px;
  display: flex; justify-content: space-between; align-items: center;
  background: none; border: none; text-align: left;
  font-size: 16px; font-weight: 600; color: #111827; cursor: pointer;
}
#artikel-wrapper .faq-arrow { transition: transform 0.3s ease; color: #111827; flex-shrink: 0; }
#artikel-wrapper .faq-item.active .faq-arrow { transform: rotate(180deg); color: #2563eb; }
#artikel-wrapper .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }
#artikel-wrapper .faq-answer p {
  padding: 0 20px 20px 20px; margin: 0;
  color: #4b5563; font-size: 15px; line-height: 1.6;
}

/* ── SIDEBAR – BOKNINGSKORT ───────────────────────────────── */
#artikel-wrapper .booking-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  padding: 0; overflow: hidden; margin-bottom: 20px;
  border: 1px solid #f3f4f6; border-top: 6px solid #2563eb;
}
#artikel-wrapper .booking-header { padding: 25px; border-bottom: 1px solid #f3f4f6; }
#artikel-wrapper .booking-title { font-size: 16px; font-weight: 600; margin-bottom: 10px; color: #111827; }
#artikel-wrapper .price-tag {
  font-size: 28px; font-weight: 800; color: #111827;
  display: flex; align-items: baseline; gap: 5px;
}
#artikel-wrapper .price-tag span { font-size: 14px; font-weight: 400; color: #6b7280; }
.campaign-badge {
  background-color: #dcfce7; color: #166534; font-size: 11px; font-weight: 700;
  padding: 4px 8px; border-radius: 4px; display: inline-block;
  margin-top: 5px; text-transform: uppercase;
}

#artikel-wrapper .booking-details { padding: 25px; }
#artikel-wrapper .detail-row { display: flex; gap: 15px; margin-bottom: 20px; align-items: flex-start; }
#artikel-wrapper .detail-icon { color: #2563eb; flex-shrink: 0; }
#artikel-wrapper .detail-text h4 {
  font-size: 11px; text-transform: uppercase; color: #9ca3af;
  font-weight: 700; margin-bottom: 2px; margin-top: 0;
}
#artikel-wrapper .detail-text p { font-size: 14px; font-weight: 500; color: #1f2937; margin: 0; }

#artikel-wrapper .secure-payment {
  text-align: center; font-size: 11px; color: #9ca3af;
  display: flex; align-items: center; justify-content: center; gap: 5px;
}

#artikel-wrapper .includes-section {
  background-color: #f9fafb; padding: 25px; border-top: 1px solid #f3f4f6;
}
#artikel-wrapper .includes-title {
  font-size: 11px; font-weight: 700; color: #6b7280;
  text-transform: uppercase; margin-bottom: 15px;
}
#artikel-wrapper .includes-list { list-style: none; padding: 0; margin: 0; }
#artikel-wrapper .includes-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: #4b5563; margin-bottom: 8px;
}

/* Support-låda under bokningskortet */
#artikel-wrapper .support-box {
  background-color: white; border: 1px solid #e5e7eb;
  border-radius: 8px; padding: 25px; text-align: center;
}
#artikel-wrapper .support-box p {
  font-size: 13px; font-weight: 600; color: #4b5563; margin-bottom: 5px; margin-top: 0;
}
#artikel-wrapper .phone-number {
  font-size: 20px; font-weight: 700; color: #2563eb;
  display: block; text-decoration: none; margin-bottom: 5px;
}
#artikel-wrapper .phone-number:hover { color: #1d4ed8; }
#artikel-wrapper .opening-hours { font-size: 12px; color: #9ca3af; }

/* Mobil bokningskort (visas istället för sidebar på mobil) */
#artikel-wrapper .mobile-hero-wrapper {
  display: none;
}
#artikel-wrapper .mobile-title { font-size: 20px; font-weight: 700; color: #111827; margin: 0; line-height: 1.3; }
#artikel-wrapper .mobile-price-row { display: flex; align-items: center; gap: 12px; }
#artikel-wrapper .mobile-price { font-size: 26px; font-weight: 800; color: #111827; }
#artikel-wrapper .mobile-vat { font-size: 14px; font-weight: 400; color: #6b7280; }
#artikel-wrapper .mobile-subtext {
  font-size: 13px; color: #6b7280; font-weight: 600;
  display: flex; align-items: center; gap: 8px; margin-top: -5px;
}
#artikel-wrapper .mobile-dot { width: 4px; height: 4px; background-color: #9ca3af; border-radius: 50%; }

/* ── SEO-TEXT SEKTION ─────────────────────────────────────── */
.seo-text-section {
  background-color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  padding: 60px 0;
  border-top: 1px solid #f3f4f6;
  width: 100%;
  box-sizing: border-box;
}
.seo-container { max-width: 1400px; width: 100%; margin: 0 auto; padding: 0 40px; box-sizing: border-box; }
.seo-content-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; width: 100%; }
.seo-block h2, .seo-block h3 {
  font-size: 14px; font-weight: 700; text-transform: uppercase;
  color: #111827; margin-bottom: 12px; letter-spacing: 0.03em; margin-top: 0;
}
.seo-block p { font-size: 13px; line-height: 1.7; color: #6b7280; margin: 0; }

/* ── DESKTOP ≥ 1024px ─────────────────────────────────────── */
@media (min-width: 1024px) {
  .lift-section { padding-top: 2rem; padding-bottom: 3rem; }
  .grid-container { grid-template-columns: 1fr 1fr; gap: 4rem; justify-content: center; }
  .content-column { text-align: left; align-items: flex-start; }
  .lift-section h1 { font-size: 3.75rem; }
  .sub-header { font-size: 1.875rem; }
  .description { margin-left: 0; margin-right: 0; }
  .check-list { flex-direction: row; gap: 1.5rem; align-items: center; width: auto; margin-left: 0; margin-right: 0; }
  .button-group { flex-direction: row; align-items: flex-start; }
  .btn-wrapper-primary { width: auto; }
  .trust-section { flex-direction: row; align-items: center; gap: 1rem; }
  .rating-wrapper { text-align: left; }
  .stars { justify-content: flex-start; }
  .desktop-break { display: block; }
  .card-column { display: block; }
  .hero-price-container { align-items: flex-start; margin-left: 0; margin-right: 0; margin-bottom: 0.75rem; }
  .hero-price-current { font-size: 2.75rem; }
  .hero-price-vat { font-size: 1rem; }
}

/* ── TABLET 901–1024px ─────────────────────────────────────── */
@media (min-width: 901px) and (max-width: 1024px) {
  .seo-content-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .seo-container { padding: 0 20px; }
}

/* ── MOBIL ≤ 900px – exakt samma regler som style.css ────── */
@media (max-width: 900px) {
  /* Hero */
  .secondary-button { width: 100%; min-width: 0; }
  .lift-section { padding-top: 2rem; padding-bottom: 2rem; overflow-x: hidden; }
  .lift-container-hero { padding: 0 20px; }
  .grid-container { gap: 2rem; }
  .card-column { display: none; }
  .content-column { text-align: center; width: 100%; }
  .lift-section h1 { font-size: 2rem; }
  .check-list { flex-direction: column; align-items: center; width: 100%; margin-left: auto; margin-right: auto; }
  .check-item-hero { justify-content: center; }
  .hero-price-container { align-items: center; width: 100%; }
  .button-group { width: 100%; }
  .btn-wrapper-primary { width: 100%; min-width: 0; }
  .cta-button-hero { width: 100%; }
  .trust-section { align-items: center; }
  .logo-group { flex-wrap: wrap; justify-content: center; }
  .rating-wrapper { text-align: center; }
  .stars { justify-content: center; }
  html, body { overflow-x: hidden; }

  /* Breadcrumbs */
  .breadcrumb-nav { padding: 10px 20px; }

  /* Artikelinnehåll – nollställ ytterskalets padding och ge containern 15px */
  #artikel-wrapper { overflow-x: hidden; max-width: 100%; padding: 0; }
  #artikel-wrapper .lift-container { flex-direction: column; padding: 15px; gap: 20px; overflow-x: hidden; }
  #artikel-wrapper .main-content,
  #artikel-wrapper .sidebar { width: 100%; min-width: 0; max-width: 100%; position: static; }

  /* Mobil bokningskort */
  #artikel-wrapper .mobile-hero-wrapper {
    display: flex; flex-direction: column; align-items: flex-start; gap: 15px;
    margin-bottom: 25px; width: 100%; background-color: white;
    border-radius: 12px; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    border: 1px solid #f3f4f6; border-top: 6px solid #2563eb; padding: 25px;
  }
  #artikel-wrapper .mobile-price-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  #artikel-wrapper .mobile-subtext { width: 100%; }

  /* Dölj desktop sidebar */
  #artikel-wrapper .booking-card,
  #artikel-wrapper .support-box { display: none; }

  /* Info-box, action-box */
  #artikel-wrapper .info-box,
  #artikel-wrapper .action-box { padding: 20px; }
  #artikel-wrapper .info-box,
  #artikel-wrapper .content-section,
  #artikel-wrapper .faq-section,
  #artikel-wrapper .faq-item { max-width: 100%; overflow: hidden; }

  /* FAQ på mobil */
  #artikel-wrapper .faq-question {
    display: flex; justify-content: space-between; align-items: flex-start;
    gap: 15px; padding: 18px 20px; word-break: break-word;
  }
  #artikel-wrapper .faq-question span {
    flex: 1; min-width: 0; word-break: break-word;
    white-space: normal; overflow-wrap: break-word;
  }
  #artikel-wrapper .faq-arrow { margin-top: 2px; flex-shrink: 0; }
  #artikel-wrapper .faq-answer p { word-break: break-word; }
  #artikel-wrapper .info-box h2 { word-break: break-word; overflow-wrap: break-word; white-space: normal; font-size: 18px; }

  /* Artikelbild – full bredd på mobil */
  .artikel-image-container { width: 100%; }

  /* SEO */
  .seo-content-grid { grid-template-columns: 1fr; gap: 30px; }
  .seo-container { padding: 0 20px; }
  .seo-text-section { padding: 40px 0; }
}

/* ── BOOKING POPUP (delad med utbildningar) ───────────────── */
.bp-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 10000; align-items: center; justify-content: center; padding: 20px; backdrop-filter: blur(2px); }
.bp-overlay.bp-open { display: flex; }
.bp-modal { background: #ffffff; border-radius: 16px; width: 100%; max-width: 620px; max-height: 90vh; overflow-y: auto; box-shadow: 0 25px 60px rgba(0,0,0,0.2); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; position: relative; animation: bp-slide-in 0.25s ease; }
@keyframes bp-slide-in { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.bp-header { display: flex; align-items: flex-start; justify-content: space-between; padding: 24px 24px 20px 24px; border-bottom: 1px solid #f3f4f6; position: sticky; top: 0; background: #fff; z-index: 2; border-radius: 16px 16px 0 0; }
.bp-header-left { display: flex; flex-direction: column; gap: 3px; }
.bp-header-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: #2563eb; }
.bp-header-title { font-size: 18px; font-weight: 700; color: #111827; margin: 0; }
.bp-header-sub { font-size: 13px; color: #6b7280; font-weight: 500; margin: 0; }
.bp-close { background: none; border: none; cursor: pointer; color: #9ca3af; padding: 4px; border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: color 0.15s, background 0.15s; margin-top: 2px; }
.bp-close:hover { color: #111827; background: #f3f4f6; }
.bp-back { display: none; align-items: center; gap: 5px; background: none; border: none; cursor: pointer; color: #2563eb; font-size: 13px; font-weight: 600; padding: 0; margin-bottom: 4px; }
.bp-back.bp-visible { display: flex; }
.bp-back:hover { color: #1d4ed8; }
.bp-body { padding: 24px; }
.bp-step { display: none; }
.bp-step.bp-active { display: block; }
.bp-step1-intro { font-size: 15px; color: #4b5563; margin: 0 0 20px 0; line-height: 1.5; }
.bp-format-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.bp-format-card { border: 2px solid #e5e7eb; border-radius: 12px; padding: 20px; cursor: pointer; transition: border-color 0.2s, box-shadow 0.2s; display: flex; flex-direction: column; gap: 10px; }
.bp-format-card:hover { border-color: #2563eb; box-shadow: 0 0 0 3px rgba(37,99,235,0.08); }
.bp-format-icon { width: 40px; height: 40px; border-radius: 10px; background: #eff6ff; color: #2563eb; display: flex; align-items: center; justify-content: center; }
.bp-format-title { font-size: 16px; font-weight: 700; color: #111827; margin: 0; }
.bp-format-desc { font-size: 13px; color: #6b7280; line-height: 1.5; margin: 0; }
.bp-format-tags { display: flex; flex-direction: column; gap: 5px; margin: 4px 0; }
.bp-format-tag { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: #374151; }
.bp-format-tag svg { color: #16a34a; flex-shrink: 0; }
.bp-format-cta { display: flex; align-items: center; justify-content: space-between; font-size: 14px; font-weight: 700; color: #2563eb; margin-top: auto; padding-top: 10px; border-top: 1px solid #f3f4f6; }
.bp-sessions-intro { font-size: 15px; color: #4b5563; margin: 0 0 16px 0; line-height: 1.5; }
.bp-session-list { display: flex; flex-direction: column; gap: 10px; }
.bp-session-card { border: 2px solid #e5e7eb; border-radius: 12px; padding: 16px 18px; cursor: pointer; transition: border-color 0.2s, box-shadow 0.2s; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.bp-session-card:hover:not(.bp-session-full) { border-color: #2563eb; box-shadow: 0 0 0 3px rgba(37,99,235,0.08); }
.bp-session-card.bp-session-selected { border-color: #2563eb; background: #eff6ff; }
.bp-session-card.bp-session-full { opacity: 0.5; cursor: not-allowed; }
.bp-session-left { display: flex; flex-direction: column; gap: 4px; }
.bp-session-date { font-size: 15px; font-weight: 700; color: #111827; }
.bp-session-meta { font-size: 13px; color: #6b7280; display: flex; gap: 10px; flex-wrap: wrap; }
.bp-session-meta span { display: flex; align-items: center; gap: 4px; }
.bp-session-right { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; flex-shrink: 0; }
.bp-spots-badge { font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.04em; white-space: nowrap; }
.bp-spots-ok { background: #dcfce7; color: #166534; }
.bp-spots-few { background: #fef3c7; color: #92400e; }
.bp-spots-none { background: #fee2e2; color: #991b1b; }
.bp-session-arrow { color: #2563eb; }
.bp-sessions-empty { text-align: center; padding: 40px 20px; background: #f9fafb; border-radius: 12px; border: 1px dashed #d1d5db; }
.bp-sessions-empty p { font-size: 14px; color: #6b7280; margin: 8px 0 0 0; }
.bp-sessions-empty strong { font-size: 15px; color: #374151; }
.bp-price-bar { background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 10px; padding: 14px 18px; display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; flex-wrap: wrap; gap: 10px; }
.bp-price-main { font-size: 22px; font-weight: 800; color: #111827; line-height: 1; }
.bp-price-vat { font-size: 13px; font-weight: 400; color: #6b7280; margin-left: 4px; }
.bp-discount-badges { display: flex; gap: 6px; flex-wrap: wrap; }
.bp-discount-badge { background: #dcfce7; color: #166534; font-size: 10px; font-weight: 700; padding: 3px 7px; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.04em; white-space: nowrap; }
.bp-selected-session-bar { display: none; background: #eff6ff; border: 1px solid #bfdbfe; border-radius: 10px; padding: 12px 16px; margin-bottom: 16px; font-size: 13px; color: #1e40af; font-weight: 600; align-items: center; gap: 10px; }
.bp-selected-session-bar.bp-visible { display: flex; }
.bp-selected-session-bar svg { flex-shrink: 0; color: #2563eb; }
.bp-section-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #9ca3af; margin: 20px 0 10px 0; }
.bp-section-label:first-of-type { margin-top: 0; }
.bp-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.bp-field-row.full { grid-template-columns: 1fr; }
.bp-field { display: flex; flex-direction: column; gap: 4px; }
.bp-field label { font-size: 12px; font-weight: 600; color: #374151; }
.bp-field input, .bp-field textarea { border: 1px solid #d1d5db; border-radius: 8px; padding: 9px 12px; font-size: 14px; color: #111827; outline: none; transition: border-color 0.15s, box-shadow 0.15s; font-family: inherit; background: #fff; }
.bp-field input:focus, .bp-field textarea:focus { border-color: #2563eb; box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
.bp-field textarea { resize: vertical; min-height: 72px; }
.bp-participants-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #f3f4f6; margin-bottom: 14px; }
.bp-participants-label { font-size: 14px; font-weight: 600; color: #111827; }
.bp-counter { display: flex; align-items: center; border: 1px solid #d1d5db; border-radius: 8px; overflow: hidden; }
.bp-counter-btn { width: 36px; height: 36px; background: #f9fafb; border: none; cursor: pointer; font-size: 18px; color: #374151; display: flex; align-items: center; justify-content: center; transition: background 0.15s; font-weight: 700; }
.bp-counter-btn:hover { background: #e5e7eb; }
.bp-counter-val { width: 40px; text-align: center; font-size: 15px; font-weight: 700; color: #111827; border-left: 1px solid #d1d5db; border-right: 1px solid #d1d5db; padding: 0 4px; line-height: 36px; }
.bp-bulk-row { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; padding: 10px 12px; background: #f9fafb; border-radius: 8px; border: 1px solid #e5e7eb; }
.bp-bulk-btn { font-size: 11px; font-weight: 600; color: #4b5563; background: #fff; border: 1px solid #d1d5db; border-radius: 6px; padding: 5px 10px; cursor: pointer; transition: background 0.15s, border-color 0.15s; white-space: nowrap; }
.bp-bulk-btn:hover { background: #eff6ff; border-color: #2563eb; color: #2563eb; }
.bp-participant-entry { background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 8px; padding: 12px; margin-bottom: 8px; }
.bp-participant-num { font-size: 11px; font-weight: 700; color: #9ca3af; text-transform: uppercase; margin-bottom: 8px; }
.bp-participant-opts { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.bp-opt-group { display: flex; flex-direction: column; gap: 5px; }
.bp-opt-group-label { font-size: 10px; font-weight: 700; color: #9ca3af; text-transform: uppercase; letter-spacing: 0.05em; }
.bp-radio-btn { display: flex; align-items: center; gap: 7px; padding: 7px 10px; border: 1px solid #e5e7eb; border-radius: 7px; cursor: pointer; font-size: 12px; font-weight: 500; color: #374151; background: #fff; transition: border-color 0.15s, background 0.15s; white-space: nowrap; }
.bp-radio-btn input { display: none; }
.bp-radio-btn.bp-selected { border-color: #2563eb; background: #eff6ff; color: #2563eb; font-weight: 600; }
.bp-summary { background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 10px; padding: 14px 16px; margin: 16px 0 14px 0; }
.bp-summary-row { display: flex; justify-content: space-between; align-items: center; font-size: 14px; color: #374151; padding: 5px 0; }
.bp-summary-row.total { border-top: 1px solid #e5e7eb; margin-top: 6px; padding-top: 10px; font-weight: 700; color: #111827; font-size: 15px; }
.bp-newsletter-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; cursor: pointer; }
.bp-newsletter-row input[type="checkbox"] { width: 16px; height: 16px; margin-top: 2px; accent-color: #2563eb; flex-shrink: 0; cursor: pointer; }
.bp-newsletter-row span { font-size: 13px; color: #4b5563; line-height: 1.5; }
.bp-legal { font-size: 12px; color: #9ca3af; line-height: 1.6; margin-bottom: 16px; }
.bp-legal a { color: #2563eb; text-decoration: none; }
.bp-legal a:hover { text-decoration: underline; }
.bp-submit { width: 100%; background: #2563eb; color: #fff; border: none; border-radius: 10px; padding: 15px 20px; font-size: 15px; font-weight: 700; cursor: pointer; transition: background 0.2s; display: flex; align-items: center; justify-content: center; gap: 8px; font-family: inherit; }
.bp-submit:hover { background: #1d4ed8; }

@media (max-width: 900px) {
  .bp-format-grid { grid-template-columns: 1fr; }
  .bp-field-row { grid-template-columns: 1fr; }
  .bp-participant-opts { grid-template-columns: 1fr; }
  .bp-modal { border-radius: 16px 16px 0 0; max-height: 95vh; }
  .bp-overlay { align-items: flex-end; padding: 0; }
  .bp-session-card { flex-direction: column; align-items: flex-start; }
  .bp-session-right { align-items: flex-start; flex-direction: row; }
}
