:root {
  --rod: #ED1B34;
  --morkrod: #660027;
  --djuprod: #3D0019;
  --neutral: #F5E9E1;
  --vit: #FFFFFF;
  --bla: #081A82;
}

html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: 'RosDisplay';
  src: url('fonts/RosDisplay-Bold.woff2') format('woff2'),
       url('fonts/RosDisplay-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'AvenirNextLTPro';
  src: url('fonts/AvenirNextLTPro-Regular.woff2') format('woff2'),
       url('fonts/AvenirNextLTPro-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'AvenirNextLTPro';
  src: url('fonts/AvenirNextLTPro-Bold.woff2') format('woff2'),
       url('fonts/AvenirNextLTPro-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'AvenirNextLTPro';
  src: url('fonts/AvenirNextLTPro-Light.woff2') format('woff2'),
       url('fonts/AvenirNextLTPro-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'AvenirNextLTPro', Arial, sans-serif;
  color: var(--djuprod);
  background: var(--vit);
}

h1, h2, h3 {
  font-weight: bold;
  margin: 0 0 0.5em;
  line-height: 1.1;
}

h1 {
  font-family: 'RosDisplay', Georgia, serif;
  font-size: 2.7rem;
}

h2, h3 {
  font-family: 'AvenirNextLTPro', Arial, sans-serif;
}

.center {
  text-align: center;
}

h3 {
  font-size: 1.4rem;
}

p {
  line-height: 1.5;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Ger sidor utan .hero samma luft mellan header och H1 som framsidan har */
main.container > h1:first-child {
  margin-top: 48px;
}

/* Tema: röd bakgrund (används på start- och granskningssidor) */
body.tema-rod {
  background: var(--rod);
  color: var(--vit);
}

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 640px;
  margin: 0 auto;
  padding: 16px 20px;
}

.site-header .logo img {
  height: 32px;
}

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: var(--vit);
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
}

.menu-toggle-close {
  position: relative;
  width: 40px;
  height: 40px;
  color: var(--djuprod);
}

.menu-toggle-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
}

.menu-toggle-close span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-toggle-close span:nth-child(2) {
  display: none;
}

.menu-toggle-close span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Sticky "Bli medlem"-flik */
.sticky-cta {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 90;
  writing-mode: vertical-rl;
  background: var(--neutral);
  color: var(--djuprod);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  padding: 20px 10px;
}

/* Menu overlay */
.site-menu {
  position: fixed;
  inset: 0;
  background: var(--neutral);
  color: var(--djuprod);
  z-index: 100;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.25s ease;
}

.site-menu.open {
  transform: translateX(0);
}

.site-menu .site-header {
  color: var(--djuprod);
}

.site-menu-content {
  max-width: 640px;
  margin: 0 auto;
  padding: 8px 20px 40px;
}

.site-menu-content h4 {
  text-transform: none;
  font-family: 'AvenirNextLTPro', Arial, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin: 28px 0 12px;
}

.menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  margin-bottom: 10px;
  text-decoration: none;
  font-weight: 700;
  background: var(--rod);
  color: var(--vit);
}

.menu-link.outline {
  background: transparent;
  border: 1.5px solid var(--rod);
  color: var(--djuprod);
}

.menu-link.active {
  outline: 2px solid var(--djuprod);
  outline-offset: 2px;
}

.menu-link .icon {
  flex-shrink: 0;
}

.menu-cta {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(61, 0, 25, 0.15);
  text-align: center;
}

.menu-cta .cta-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 8px;
}

.menu-cta .btn {
  background: var(--rod);
  color: var(--neutral);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background-color: var(--rod);
  color: var(--vit);
  padding: 64px 0;
  text-align: center;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Fokuspunkt: ansiktena sitter i mittersta övre niondelen (rad 1, kolumn 2 i ett 3x3-rutnät) */
  object-position: 50% 16.67%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(61, 0, 25, 0.65);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  animation: fadeInUp 0.8s ease 0.1s both;
}

.hero p {
  font-size: 1rem;
  max-width: 34ch;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero .btn-coins {
  animation: fadeInUp 0.8s ease 0.3s both;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero h1,
  .hero p,
  .hero .btn-coins {
    animation: none;
  }
}

/* Granskningskort på startsidan */
.card-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 0;
}

.card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--neutral);
  padding: 16px;
  text-decoration: none;
  color: var(--djuprod);
}

.card .icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.card .card-text {
  flex: 1;
}

.card .card-text strong {
  display: block;
  font-family: 'AvenirNextLTPro', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
}

.card .card-text span {
  font-size: 0.85rem;
  opacity: 0.85;
}

.card .chevron {
  flex-shrink: 0;
}

/* Fler ingångar */
.fler-ingangar h4 {
  font-family: 'AvenirNextLTPro', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin: 4px 0 12px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 24px;
}

.pill-list a {
  background: var(--neutral);
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--djuprod);
}

/* Rapportflikar (länkar mellan de tre granskningssidorna) */
.report-tabs {
  display: flex;
  gap: 2px;
  padding: 2px;
  background: rgba(255, 255, 255, 0.15);
  margin-bottom: 16px;
}

.report-tabs a {
  flex: 1;
  text-align: center;
  padding: 8px 4px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--vit);
  opacity: 0.75;
}

.report-tabs a.active {
  background: var(--neutral);
  color: var(--rod);
  opacity: 1;
}

/* Rapportsida: intro + stor siffra */
.report-intro {
  padding: 16px 0 8px;
}

.report-intro p {
  opacity: 0.9;
}

.stat-hero {
  position: relative;
  text-align: center;
  padding: 20px 16px;
  margin: 8px 0 24px;
  background: var(--neutral);
  color: var(--djuprod);
}

.stat-hero .value {
  font-family: 'AvenirNextLTPro', Arial, sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.1;
}

.stat-hero .label {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-top: 4px;
}

.stat-badge {
  position: absolute;
  top: -8px;
  right: 8px;
  background: var(--rod);
  color: var(--neutral);
  border: 3px solid var(--neutral);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.58rem;
  font-weight: 700;
  padding: 4px;
  line-height: 1.05;
}

.section-lead {
  font-family: 'AvenirNextLTPro', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin: 24px 0 12px;
}

/* Platshållare för bild/statistik-grafik som saknas ännu */
.placeholder-box {
  background: var(--neutral);
  border: 1.5px dashed var(--rod);
  color: rgba(61, 0, 25, 0.65);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  text-align: center;
  padding: 12px;
}

.placeholder-box-wide {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 6;
  object-fit: cover;
  margin: 20px 0;
}

/* Foto med citat-liknande overlaytext (t.ex. "Vården ska finnas för dig, inte vinsterna") */
.photo-quote {
  position: relative;
  margin: 20px 0;
  overflow: hidden;
}

.photo-quote-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 6;
  object-fit: cover;
  object-position: 50% 16.67%;
}

.photo-quote-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(61, 0, 25, 0.85));
  color: var(--vit);
  font-family: 'AvenirNextLTPro', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}

.conclusion {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 20px 0;
}

/* Används när .conclusion bara har pil + bild (ingen text-kolumn att fylla ut resten
   av raden) -- centrerar paret i stället för att de klibbar mot vänsterkanten. */
.conclusion-center {
  justify-content: center;
}

.conclusion .placeholder-box {
  flex: 0 0 42%;
}

.conclusion-image {
  flex: 0 0 45%;
  width: 45%;
  height: auto;
}

.conclusion-arrow {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  color: var(--neutral);
}

.full-image {
  display: block;
  width: 100%;
  height: auto;
  margin: 20px 0;
}

.press-clip {
  aspect-ratio: 3 / 4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.conclusion .conclusion-text {
  flex: 1;
  min-width: 0;
}

.conclusion .number {
  font-family: 'AvenirNextLTPro', Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 11vw, 3.4rem);
  white-space: nowrap;
  display: block;
}

.conclusion p {
  margin: 4px 0 0;
  font-size: 1rem;
}

/* "500 vårdplatser..."-blocket saknar pilen som första .conclusion-blocket har,
   vilket annars gör att texten börjar 42px (pilens bredd + två gaps) längre till
   vänster -- kompenserar så texten i de båda blocken delar startlinje, och
   centrerar "500" ovanför "vårdplatser kan försvinna" inom den ytan. */
.conclusion-stat .conclusion-text {
  padding-left: 42px;
  text-align: center;
}

.conclusion-detail {
  margin-top: 8px;
  font-size: 0.8rem;
  opacity: 0.85;
  white-space: normal;
}

.conclusion-headline {
  font-family: 'AvenirNextLTPro', Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 10vw, 2.9rem);
  line-height: 1.15;
  margin: 0;
  text-align: center;
}

.report-cta {
  text-align: center;
  margin: 24px 0;
}

/* Dela-widget */
.share-widget {
  text-align: center;
  margin: 32px 0;
}

.share-label {
  font-weight: 700;
  margin-bottom: 12px;
}

.share-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.share-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--neutral);
  color: var(--djuprod);
  text-decoration: none;
  cursor: pointer;
  border: none;
  padding: 0;
}

.share-icon svg {
  width: 20px;
  height: 20px;
}

.share-native {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.share-native svg {
  width: 18px;
  height: 18px;
}

.share-status {
  margin-top: 8px;
  font-size: 0.85rem;
  min-height: 1.2em;
}

/* Statblock (t.ex. nedskarningar.html "500 vårdplatser") -- text utan pil eller ruta.
   .mini-stats stöder fler än ett .mini-stat sida vid sida i ett grid, men klarar
   sig lika bra med bara ett (spänner då hela bredden). */
.mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0;
}

.mini-stat {
  text-align: center;
}

.mini-stat:only-child {
  grid-column: 1 / -1;
}

.mini-stat-number {
  font-family: 'AvenirNextLTPro', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  display: block;
}

.mini-stat p {
  margin: 4px 0 0;
  font-size: 0.85rem;
}

.quote-block {
  background: var(--neutral);
  color: var(--djuprod);
  border-left: 4px solid var(--rod);
  padding: 18px 20px;
  margin: 24px 0;
}

.quote-block p {
  font-family: 'AvenirNextLTPro', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0;
  line-height: 1.3;
}

/* Utförsäljningar: karta + exempellista */
.map-placeholder {
  background: var(--neutral);
  border: 1.5px dashed var(--rod);
  color: rgba(61, 0, 25, 0.65);
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  margin: 8px 0 20px;
}

.leaflet-map {
  background: var(--neutral);
  aspect-ratio: 16 / 10;
  margin: 8px 0 20px;
  /* Leaflets interna z-index (paneler, kontroller) kan annars tränga upp genom
     senare element med lägre z-index, t.ex. den öppna hamburgermenyn. */
  isolation: isolate;
}

.leaflet-map .map-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin: 0;
  padding: 20px;
  text-align: center;
  color: var(--djuprod);
  font-size: 0.85rem;
}

.leaflet-map .leaflet-tile-pane {
  filter: grayscale(1) sepia(0.4) hue-rotate(320deg) saturate(1.6) brightness(0.88) contrast(1.2);
}

.leaflet-map .leaflet-control-zoom a {
  border-radius: 0;
}

.facility-pin {
  width: 16px;
  height: 16px;
  background: var(--rod);
  border: 2px solid var(--neutral);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--djuprod);
}

.facility-label {
  background: var(--rod);
  color: var(--vit);
  border: none;
  border-radius: 0;
  box-shadow: none;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 4px 10px;
  white-space: normal;
  text-align: center;
  line-height: 1.25;
}

.facility-label::before {
  border-right-color: var(--rod);
}

.leaflet-popup-content-wrapper {
  border-radius: 0;
  font-family: 'AvenirNextLTPro', Arial, sans-serif;
}

.leaflet-popup-content {
  color: var(--djuprod);
  font-size: 0.85rem;
}

.example-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.example-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--neutral);
  padding: 14px 16px;
  text-decoration: none;
  color: var(--djuprod);
}

.example-item .icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  color: var(--rod);
}

.example-item .example-text {
  flex: 1;
}

.example-item strong {
  display: block;
  font-family: 'AvenirNextLTPro', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
}

.example-item .chevron {
  flex-shrink: 0;
}

/* Fiffel och fusk: pressklipp-grid */
.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
  padding: 16px;
  background: var(--neutral);
}

.press-item {
  background: var(--neutral);
  border: 1.5px dashed var(--rod);
  color: rgba(61, 0, 25, 0.65);
  aspect-ratio: 3 / 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 0.65rem;
  text-align: center;
  padding: 8px;
}

/* Utförsäljningar: "vad innebär det för patienterna"-sidan */
.consequence-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 12px 0 24px;
  padding: 16px;
  background: var(--neutral);
}

.consequence-card {
  background: var(--rod);
  color: var(--vit);
  padding: 18px;
}

.consequence-card strong {
  display: block;
  font-family: 'AvenirNextLTPro', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.consequence-card p {
  font-size: 0.85rem;
  line-height: 1.4;
  margin: 0;
  opacity: 0.9;
}

.improve-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 12px 0 24px;
  padding: 16px;
  background: var(--neutral);
}

.improve-card {
  background: var(--rod);
  color: var(--vit);
  padding: 18px;
}

.improve-card p {
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
}

.improve-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  /* Ikonerna levererades i rött, vilket drunknar mot det röda kortet -- gör dem vita. */
  filter: brightness(0) invert(1);
}

.comparison {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 52px;
  margin: 12px 0 24px;
}

.comparison-col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.comparison-col-header {
  padding: 12px 14px;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--vit);
}

.comparison-col-positive .comparison-col-header {
  background: var(--djuprod);
}

.comparison-col-negative .comparison-col-header {
  background: var(--bla);
}

.comparison-col-body {
  flex: 1;
  padding: 14px;
  background: var(--neutral);
  color: var(--djuprod);
}

.comparison-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.68rem;
  line-height: 1.3;
}

.mark {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
}

.mark-yes {
  color: var(--djuprod);
}

.comparison-divider {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--neutral);
  color: var(--djuprod);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
}

/* Nedladdningssidor (Mailjet-formulär) */
.download-panel {
  text-align: center;
  padding: 28px 0 12px;
}

.download-panel h2 {
  font-size: 1.4rem;
}

.download-panel > p {
  opacity: 0.9;
  margin-bottom: 20px;
}

.download-form {
  max-width: 360px;
  margin: 0 auto;
  text-align: left;
}

.download-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.download-form input[type="email"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--djuprod);
  font-size: 0.95rem;
  margin-bottom: 14px;
  font-family: inherit;
}

.download-form .btn {
  width: 100%;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-consent {
  font-size: 0.7rem;
  opacity: 0.75;
  margin-top: 12px;
  line-height: 1.4;
}

.redirect-note {
  font-size: 0.8rem;
  opacity: 0.75;
  margin: 24px 0 0;
}

.redirect-note a {
  color: inherit;
}

.hidden {
  display: none;
}

/* Dela din berättelse (vittnesmålsformulär) */
.story-form {
  max-width: 480px;
  margin: 24px auto 0;
  text-align: left;
}

.story-form fieldset {
  border: none;
  padding: 0;
  margin: 0 0 20px;
}

.story-form legend {
  font-weight: 700;
  padding: 0;
  margin-bottom: 10px;
}

.radio-group,
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.radio-group label,
.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.story-form label[for] {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 6px;
}

.story-form textarea {
  width: 100%;
  min-height: 140px;
  padding: 12px 14px;
  border: 1px solid var(--djuprod);
  font-family: inherit;
  font-size: 0.95rem;
  resize: vertical;
  margin-bottom: 20px;
}

.contact-field {
  margin: 4px 0 20px;
  padding: 14px;
  background: var(--neutral);
  color: var(--djuprod);
}

.contact-field input[type="text"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--djuprod);
  font-family: inherit;
  font-size: 0.95rem;
}

.story-form .btn {
  width: 100%;
}

#form-status {
  margin-top: 12px;
  font-size: 0.85rem;
  min-height: 1.2em;
}

/* GOTV-CTA: "Har du bestämt dig?" */
.vote-cta {
  text-align: center;
  margin: 28px 0;
  padding: 24px 20px;
  background: var(--neutral);
  color: var(--djuprod);
}

/* Vissa sidor bygger "har du bestämt dig?" direkt i main (för att kunna placera den
   någon annanstans än direkt ovanför sociala ikonerna) i stället för att använda den
   delade footer-varianten -- dölj footerns för att undvika dubblett. */
body.home #vote-cta,
body.hide-vote-cta #vote-cta {
  display: none;
}

.vote-cta p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 16px;
}

.vote-cta .btn {
  background: var(--rod);
  color: var(--neutral);
}

/* Knappar */
.btn {
  display: inline-block;
  background: var(--neutral);
  color: var(--djuprod);
  border: none;
  padding: 12px 24px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn.btn-outline {
  background: transparent;
  color: var(--neutral);
  border: 1.5px solid var(--neutral);
}

/* "Följ pengarna" -- knapp */
.btn-coins {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  transition: background 150ms ease, color 150ms ease;
}

.btn-coins .coin-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-coins:hover {
  background: var(--rod);
  color: var(--vit);
}

/* Footer */
.site-footer {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 32px 20px;
}

.site-footer-bottom {
  background: var(--djuprod);
  color: var(--vit);
  text-align: center;
  padding: 20px;
  font-size: 0.75rem;
}

.site-footer-bottom .social-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
}

.site-footer-bottom a {
  text-decoration: none;
}

.footer-info p {
  margin: 4px 0;
}

@media (min-width: 700px) {
  h1 {
    font-size: 3.4rem;
  }

  .card-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .card {
    flex-direction: column;
    text-align: center;
  }

  .fler-ingangar {
    text-align: center;
  }

  .pill-list {
    justify-content: center;
  }

  .pill-list a {
    flex: 1;
    text-align: center;
  }

  .consequence-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .improve-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .comparison {
    gap: 64px;
  }

  .comparison-col-header {
    padding: 16px 18px;
    font-size: 0.9rem;
  }

  .comparison-col-body {
    padding: 18px;
  }

  .comparison-list li {
    font-size: 0.85rem;
  }

  .comparison-divider {
    width: 56px;
    height: 56px;
    font-size: 0.85rem;
  }
}

/* Väldigt breda skärmar: sidan ska inte upplevas krympa mot mitten med tomma
   ytor på sidorna. Innehållet får en fast maxbredd och sin egen bakgrund,
   och ytan utanför blir mörkröd i stället för att bara vara mer av samma
   platta färg ut till fönsterkanten. */
@media (min-width: 960px) {
  body.tema-rod {
    background: var(--morkrod);
  }

  body.tema-rod > .site-header,
  body.tema-rod > .container,
  body.tema-rod .site-footer {
    max-width: 800px;
    background: var(--rod);
  }

  /* .container saknar toppadding, så h1:ans margin-top annars "läcker" ut ovanför
     containerns egna bakgrund (kolliderande marginaler) -- osynligt när sidan och
     containern hade samma färg, men syns som ett hack mot den mörkröda bakgrunden. */
  body.tema-rod > .container {
    display: flow-root;
  }

  /* Footerns nedre stapel och hero-bannern ska hålla samma bredd som resten av
     den boxade layouten, i stället för att vara de enda kvarvarande fullbredds-
     elementen på sidan. */
  body.tema-rod .site-footer-bottom,
  body.tema-rod .hero {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  /* .conclusion-bilderna skalar med containerns bredd (45%), men pilen och texten
     bredvid hade fasta/tidigt-taknade storlekar tänkta för mobil -- på denna bredare
     desktop-container (800px) blev de därför proportionellt för små jämfört med bilden. */
  .conclusion-arrow {
    width: 56px;
    height: 56px;
  }

  .conclusion-headline {
    font-size: 3.4rem;
  }

  .conclusion .number {
    font-size: 4.6rem;
  }

  .conclusion p {
    font-size: 1.25rem;
  }
}
