/* Fonts loades async via site.js — @import blokerer hele CSS på mobil */
/* Mørkt PS112-look + Presse Fotos feed-opsætning (1 stort / 2 små) */
:root {
  --bg: #0b0f14;
  --bg-deep: #05080c;
  --panel: #141a22;
  --ink: #e8eef6;
  --muted: #9aa8b8;
  --line: #243041;
  --brand: #4d8dff;
  --brand-2: #ff4d45;
  --lead: #0a1018;
  --max: 1200px;
  --radius: 6px;
  --font: Figtree, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --display: "Archivo Black", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.5;
  color: var(--ink);
  background: var(--bg);
  min-height: 100vh;
  max-width: 100%;
  overflow-x: hidden;
  -webkit-tap-highlight-color: rgba(26, 95, 180, 0.15);
  touch-action: manipulation;
}

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

video,
iframe {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.wrap {
  width: min(100% - 1.5rem, var(--max));
  margin-inline: auto;
}

/* Breaking */
.breaking {
  background: var(--brand-2);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
}

.breaking .wrap {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.45rem 0;
  overflow: hidden;
}

.breaking-tag {
  flex: 0 0 auto;
  background: #fff;
  color: var(--brand-2);
  padding: 0.15rem 0.45rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.breaking-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 600;
}

.breaking-time {
  margin-left: auto;
  opacity: 0.9;
  font-variant-numeric: tabular-nums;
}

/* Header */
.site-header {
  background: var(--panel);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 40;
}

.header-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0 0.55rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  line-height: 1;
}

.brand-logo {
  display: block;
  height: clamp(34px, 4.8vw, 46px);
  width: auto;
  max-width: min(62vw, 240px);
  object-fit: contain;
}

.brand-name {
  font-family: var(--display);
  font-size: clamp(1.65rem, 3.2vw, 2.15rem);
  letter-spacing: -0.02em;
  color: var(--brand);
  text-transform: uppercase;
}

.brand-112 {
  font-family: var(--display);
  font-size: clamp(1.65rem, 3.2vw, 2.15rem);
  color: var(--brand-2);
}

.menu-bar {
  border-top: 1px solid var(--line);
}

.menu-bar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 56px;
  padding: 0.4rem 0;
}

.menu-left {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex-wrap: wrap;
  min-width: 0;
}

.menu-left a {
  font-weight: 800;
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0.6rem 0.7rem;
  border-radius: 4px;
  white-space: nowrap;
}

.menu-left a:hover,
.menu-left a[aria-current="page"] {
  color: var(--brand-2);
}

.menu-more {
  position: relative;
}

.menu-more-btn {
  display: inline-grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-more-btn:hover,
.menu-more.open .menu-more-btn {
  background: rgba(255, 255, 255, 0.06);
  color: var(--brand-2);
}

.menu-more-btn svg {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
}

.menu-more-panel {
  display: none;
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  min-width: 220px;
  background: #101722;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.45rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  z-index: 50;
}

.menu-more.open .menu-more-panel {
  display: grid;
  gap: 0.15rem;
}

.menu-more-panel a {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.55rem 0.7rem;
}

.menu-right {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex: 0 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0.55rem 0.95rem;
  min-height: 38px;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.1;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn-tip {
  background: #2a3340;
  border-color: #2a3340;
  color: var(--ink);
}

.btn-tip:hover {
  background: #343f50;
}

.btn-dark {
  background: #e8eef6;
  border-color: #e8eef6;
  color: #0b0f14;
}

[data-redaktion],
[data-redaktion].is-visible {
  display: none !important;
}

.btn-dark:hover {
  background: #fff;
}

.btn-red {
  background: var(--brand-2);
  border-color: var(--brand-2);
  color: #fff;
}

.btn-red:hover {
  filter: brightness(0.95);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
}

.btn-sm {
  min-height: 2.1rem;
  padding: 0.4rem 0.75rem;
  font-size: 0.82rem;
}

.btn-line {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-decoration: none;
}

.icon-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--brand);
}

.icon-btn svg {
  width: 1.2rem;
  height: 1.2rem;
}

.menu-divider {
  width: 1px;
  height: 1.35rem;
  background: var(--line);
}

.search-wrap {
  position: relative;
}

.search-pop {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 0.45rem);
  width: min(320px, calc(100vw - 2rem));
  background: #101722;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.55rem;
  z-index: 50;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.search-wrap.open .search-pop {
  display: block;
}

.search-pop input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0f1520;
  color: var(--ink);
  padding: 0.65rem 0.75rem;
  outline: none;
}

.search-pop input:focus {
  border-color: var(--brand);
}

.search-results {
  position: absolute;
  right: 0;
  top: calc(100% + 3.5rem);
  width: min(360px, calc(100vw - 2rem));
  background: #101722;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.35rem;
  z-index: 51;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  display: none;
}

.search-wrap.open .search-results.open {
  top: calc(100% + 3.6rem);
}

.search-results.open {
  display: grid;
}

.search-results a {
  display: grid;
  gap: 0.15rem;
  padding: 0.55rem 0.65rem;
  border-radius: 6px;
}

.search-results a span {
  color: var(--muted);
  font-size: 0.8rem;
}

.search-results a:hover {
  background: rgba(255, 255, 255, 0.05);
}

.search-empty {
  margin: 0;
  padding: 0.7rem;
  color: var(--muted);
}

@media (max-width: 820px) {
  .menu-left a.desktop-only {
    display: none;
  }
}

/* Front — PF-struktur, mørkt tema */
.front {
  padding: 1.1rem 0 2.5rem;
}

.front-shell {
  width: min(100% - 1.5rem, 960px);
}

.newsblock {
  display: block;
  background: var(--panel);
  border: 1px solid var(--line);
  margin: 0 0 1.1rem;
  overflow: hidden;
  color: inherit;
}

.newsblock.is-breaking {
  border-color: #ffe036;
  background: #ffe036;
  color: #080808;
  min-height: 12rem;
  display: flex;
  flex-direction: column;
}

.newsblock-tape {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--font);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #000;
  line-height: 1.35;
  padding: 0.35rem 0;
  user-select: none;
  background: #ffe036;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.newsblock-tape-track {
  display: inline-flex;
  flex: 0 0 auto;
  min-width: 100%;
  will-change: transform;
  animation: newsblock-tape-scroll 2.4s linear infinite;
}

.newsblock-tape-track span {
  display: inline-block;
  flex: 0 0 auto;
  white-space: nowrap;
  padding-right: 1.25rem;
}

@keyframes newsblock-tape-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .newsblock-tape-track {
    animation: none;
  }
}

.newsblock.is-breaking .newsblock-content {
  background: #ffe036;
  color: #080808;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 1.1rem 1.25rem;
  gap: 0.35rem;
}

.newsblock.is-breaking .newsblock-kicker {
  margin: 0;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 800;
  line-height: 1.25;
  opacity: 1;
  color: #080808;
}

.newsblock.is-breaking .newsblock-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 7vw, 4.5rem) !important;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: none;
  color: #080808;
}

.newsblock.is-breaking:hover .newsblock-title {
  color: #080808;
  opacity: 0.85;
}

.newsblock-media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0a1018;
  overflow: hidden;
  display: block;
}

.newsblock-media:has(.media-caption) {
  aspect-ratio: 16 / 9;
}

.newsblock-media img,
.newsblock-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Play-badge på video-kort (forside + sektioner) */
.feed-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 3rem;
  height: 3rem;
  margin: -1.5rem 0 0 -1.5rem;
  border-radius: 50%;
  background: rgba(8, 12, 18, 0.55);
  border: 2px solid rgba(255, 255, 255, 0.88);
  pointer-events: none;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}
.feed-play::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-35%, -50%);
  border-style: solid;
  border-width: 0.55rem 0 0.55rem 0.9rem;
  border-color: transparent transparent transparent #fff;
}
.section-list-media .feed-play,
.editors-picks-thumb .feed-play {
  width: 2.1rem;
  height: 2.1rem;
  margin: -1.05rem 0 0 -1.05rem;
}
.section-list-media .feed-play::before,
.editors-picks-thumb .feed-play::before {
  border-width: 0.4rem 0 0.4rem 0.65rem;
}
.newsblock-media.is-video,
.section-lead-media.is-video,
.section-list-media.is-video {
  background: #0a1018;
}

.newsblock-media.is-empty {
  background: linear-gradient(145deg, #1a2740, #3a2228 70%, #162033);
}

.newsblock-content {
  padding: 0.65rem 0.85rem 0.9rem;
}

.newsblock-tags {
  margin: 0 0 0.4rem;
}

.newsblock-kicker {
  margin: 0 0 0.25rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: inherit;
  opacity: 0.85;
}

/* Mindre størrelse — alle artikler (forside, sektion, artikelside) */
.newsblock-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.05rem, 2.4vw, 1.35rem) !important;
  line-height: 1.14;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.newsblock.is-compact .newsblock-title {
  font-size: clamp(0.95rem, 2vw, 1.15rem) !important;
}

.newsblock:not(.is-breaking):hover .newsblock-title {
  color: var(--brand);
}

.front-layout {
  display: grid;
  gap: 1.2rem;
}

@media (min-width: 900px) {
  .front-layout {
    grid-template-columns: 1fr 320px;
    align-items: start;
  }
}

.front-main {
  min-width: 0;
}

.front-side {
  min-width: 0;
  display: grid;
  gap: 1rem;
}

.editors-box {
  /* samme mørke stil som mest-box — listen har thumbs (Presse Fotos) */
}

.editors-box .editors-picks-list {
  padding: 0;
}

.editors-box .editors-picks-list a {
  align-items: center;
}

.editors-box .editors-picks-title {
  color: var(--ink);
}

.editors-box .editors-picks-thumb.is-empty {
  background: linear-gradient(145deg, #1a2740, #3a2228);
}

.mest-box {
  background: #0a0e14;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 1rem 1rem 0.85rem;
  position: sticky;
  top: 88px;
  color: var(--ink);
}

.mest-box h2 {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.65rem;
  padding: 0 0 0.65rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mest-box h2::before {
  content: none;
}

.mest-icon {
  display: inline-block;
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
  background:
    linear-gradient(#fff, #fff) 15% 70% / 18% 2px no-repeat,
    linear-gradient(#fff, #fff) 38% 45% / 22% 2px no-repeat,
    linear-gradient(#fff, #fff) 68% 28% / 22% 2px no-repeat,
    linear-gradient(135deg, transparent 40%, #fff 40%, #fff 60%, transparent 60%) 78% 12% / 0.55rem 0.55rem no-repeat;
}

.mest-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mest-list li {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mest-list li:first-child {
  border-top: 0;
}

.mest-list li.mest-empty {
  padding: 0.85rem 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.mest-list a {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.65rem;
  padding: 0.85rem 0;
  align-items: start;
  color: inherit;
}

.mest-list a:hover .mest-title {
  color: var(--brand);
}

.mest-num {
  display: block;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.03em;
}

.mest-title {
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.35;
  color: var(--ink);
}

.mest-thumb {
  display: none;
}

.block {
  margin: 0 0 1.6rem;
}

.block-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 0.8rem;
}

.block-head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.45rem;
  text-transform: uppercase;
}

.block-head a {
  color: var(--brand);
  font-weight: 700;
  font-size: 0.95rem;
}

.card-grid {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 700px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .card-grid-dense {
    grid-template-columns: repeat(3, 1fr);
  }
}

.news-card {
  display: grid;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  color: inherit;
}

.news-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
}

.news-card .media {
  position: relative;
  min-height: 140px;
  background: #0a1018;
  aspect-ratio: 16 / 9;
  display: block;
  overflow: hidden;
}

.news-card .media.has-media {
  background: #0a1018;
}

.news-card .media img,
.news-card .media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.news-card .media .media-caption {
  flex: 0 0 auto;
}

.news-card .body {
  padding: 0.8rem 0.85rem 0.95rem;
  display: grid;
  gap: 0.4rem;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.card-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: var(--brand);
  padding: 0.18rem 0.4rem;
  border-radius: 2px;
}

.card-label-break {
  background: var(--brand-2);
}

.news-card h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.28;
}

.news-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.4;
}

.front-tabs {
  display: flex;
  gap: 0.35rem;
  margin: 0 0 0.55rem;
  border-bottom: 1px solid var(--line);
}

.front-tab {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}

.front-tab.is-active {
  color: #fff;
  border-bottom-color: var(--brand-2);
}

.video-tab {
  margin: 0.35rem 0 1.25rem;
}

.video-tab .block-head {
  margin-top: 0.1rem;
}

.video-empty {
  display: grid;
  gap: 0.75rem;
  justify-items: start;
  padding: 1rem 0 0.4rem;
  color: var(--muted);
}

.video-empty p {
  margin: 0;
}

.video-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(148px, 180px);
  gap: 0.75rem;
  overflow-x: auto;
  padding: 0.15rem 0.1rem 0.45rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.video-card {
  position: relative;
  display: block;
  aspect-ratio: 9 / 16;
  background: #070a10;
  border: 0;
  border-radius: 16px;
  overflow: hidden;
  color: #fff;
  scroll-snap-align: start;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.video-card.is-plain {
  display: block;
}

.video-empty-note {
  margin: 0;
  font-size: 0.88rem;
}

.video-card .media {
  position: absolute;
  inset: 0;
  aspect-ratio: auto;
  background: #070a10;
}

.video-card .media.is-empty {
  background: linear-gradient(160deg, #1a2740, #3a2228 70%, #162033);
}

.video-card .media img,
.video-card .media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.video-card-play {
  position: absolute;
  left: 50%;
  top: 46%;
  width: 3rem;
  height: 3rem;
  margin: -1.5rem 0 0 -1.5rem;
  border-radius: 50%;
  background: rgba(8, 12, 18, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.9);
  z-index: 2;
  pointer-events: none;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.video-card-play::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-32%, -50%);
  border-style: solid;
  border-width: 0.55rem 0 0.55rem 0.9rem;
  border-color: transparent transparent transparent #fff;
}

.video-card-shade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 58%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.55) 48%,
    rgba(0, 0, 0, 0.88) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.video-card-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 0.85rem 0.7rem 1rem;
  text-align: center;
  pointer-events: none;
}

.video-card-title {
  display: block;
  font-family: var(--display);
  font-size: clamp(0.82rem, 2.4vw, 0.98rem);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-wrap: balance;
}

.video-card-line {
  color: #fff;
}

.video-card-line.is-accent {
  color: #7eb6ff;
}

.video-card:hover .video-card-play {
  background: rgba(8, 12, 18, 0.5);
}

@media (max-width: 640px) {
  .video-strip {
    grid-auto-columns: minmax(132px, 46vw);
    gap: 0.55rem;
  }

  .video-card-play {
    width: 2.5rem;
    height: 2.5rem;
    margin: -1.25rem 0 0 -1.25rem;
  }

  .video-card-play::before {
    border-width: 0.45rem 0 0.45rem 0.75rem;
  }
}

.tip-strip {
  margin: 1.5rem 0 0;
  padding: 1.25rem 1.2rem;
  background: linear-gradient(120deg, #0b3d91, #1a5fd0);
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.tip-strip h2 {
  margin: 0 0 0.3rem;
  font-family: var(--display);
  font-size: 1.4rem;
  text-transform: uppercase;
}

.tip-strip p {
  margin: 0;
  opacity: 0.9;
  max-width: 40ch;
}

.tip-strip .btn-red {
  background: #e8eef6;
  color: #0b3d91;
  border-color: #e8eef6;
}

.section-page {
  padding: 1rem 0 2rem;
}

/* Samme indholds-bredde som forsiden (.front-shell = 960px) */
.wrap.section-page {
  width: min(100% - 1.5rem, 960px);
}

.section-empty {
  color: var(--muted);
  margin: 0.5rem 0 0;
}

.section-feed {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.35rem;
  width: 100%;
}

.section-feed--newsblocks {
  gap: 0;
}

.section-feed--newsblocks .newsblock {
  margin-bottom: 1.1rem;
}

/* 1 stort + 2 små — mørkt tema, Presse Fotos-opsætning */
.section-feed--rhythm {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 720px;
}

.section-feed--rhythm > .section-lead,
.section-feed--rhythm > .section-list {
  border-radius: 8px;
  background: var(--panel);
  border: 1px solid var(--line);
  overflow: hidden;
}

.section-feed--rhythm > .section-lead .section-lead-media {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  background: #0a1018;
  overflow: hidden;
}

.section-feed--rhythm > .section-lead .section-lead-media img,
.section-feed--rhythm > .section-lead .section-lead-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.section-feed--rhythm > .section-lead .section-lead-body {
  padding: 0.85rem 1rem 1rem;
  gap: 0.4rem;
}

.section-feed--rhythm > .section-list {
  display: grid;
  grid-template-columns: minmax(0, 132px) minmax(0, 1fr);
  min-height: 96px;
  align-items: stretch;
}

.section-feed--rhythm > .section-list .section-list-media {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 96px;
  height: auto;
  align-self: stretch;
  background: #0a1018;
  overflow: hidden;
  /* IKKE aspect-ratio her — det sprænger kolonnen og klipper teksten på mobil */
  aspect-ratio: auto;
}

.section-feed--rhythm > .section-list .section-list-media img,
.section-feed--rhythm > .section-list .section-list-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  display: block;
}

.section-feed--rhythm > .section-list .section-list-media.is-empty {
  min-height: inherit;
  height: 100%;
}

.section-feed--rhythm > .section-list .section-list-body {
  min-width: 0;
  padding: 0.65rem 0.75rem;
  gap: 0.3rem;
  align-content: center;
  overflow: hidden;
}

.section-feed--rhythm > .section-list .section-list-body h3 {
  font-size: 0.98rem !important;
  line-height: 1.22;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.section-feed--rhythm > .section-list .section-tags {
  max-width: 100%;
}

.section-feed--rhythm .section-date {
  color: #9aa3b2;
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: 0.15rem;
}

/* Presse-fotos: dato kun på 1 stort — aldrig på de 2 små */
.section-feed--rhythm .section-list .section-date {
  display: none !important;
}

#breaking-stack.section-feed--rhythm,
#front-feed.section-feed--rhythm,
#section-feed.section-feed--rhythm {
  max-width: 720px;
}

@media (max-width: 640px) {
  .section-feed--rhythm > .section-lead .section-lead-media {
    aspect-ratio: 16 / 10;
    max-height: min(42vw, 220px);
  }

  .section-feed--rhythm > .section-list {
    grid-template-columns: 92px minmax(0, 1fr);
    min-height: 84px;
  }

  .section-feed--rhythm > .section-list .section-list-media {
    min-height: 84px;
  }

  .section-feed--rhythm > .section-list .section-list-body {
    padding: 0.45rem 0.55rem;
  }

  .section-feed--rhythm > .section-list .section-list-body h3 {
    font-size: 0.84rem !important;
    line-height: 1.18;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .section-feed--rhythm > .section-list .section-tag {
    font-size: 0.55rem;
    padding: 0.12rem 0.35rem;
  }
}

/* Redaktionens udvalgte — under Mest læste (presse-fotos stil) */
.editors-picks {
  margin: 1rem 0 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.editors-picks-head {
  margin: 0;
  padding: 0.65rem 0.85rem;
  background: var(--brand);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.25;
}

.editors-picks-list {
  list-style: none;
  margin: 0;
  padding: 0 0.85rem;
}

.editors-picks-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.editors-picks-list li:last-child {
  border-bottom: 0;
}

.editors-picks-list a {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0.7rem;
  align-items: center;
  padding: 0.75rem 0;
  color: inherit;
}

.editors-picks-list a.is-text {
  grid-template-columns: 1fr;
}

.editors-picks-list a:hover .editors-picks-title {
  color: var(--brand);
}

.editors-picks-thumb {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 2px;
  overflow: hidden;
  background: linear-gradient(145deg, #1a2740, #3a2228);
  flex: 0 0 auto;
}

.editors-picks-thumb img,
.editors-picks-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Lille thumb: skjul play-badge (ellers ligger den over hele rækken) */
.editors-picks-thumb .feed-play {
  display: none;
}

.editors-picks-title {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
}

.section-feed > .section-lead,
.section-feed > .section-list {
  width: 100%;
  max-width: 100%;
  flex: 0 0 auto;
}

.section-lead {
  display: block;
  color: inherit;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.section-list {
  color: inherit;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.section-lead:hover .section-lead-body h3,
.section-list:hover .section-list-body h3 {
  color: var(--brand);
}

.section-lead-media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0a1018;
  overflow: hidden;
}

.section-lead-media img,
.section-lead-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.section-lead-media.is-empty {
  min-height: 180px;
}

.section-lead-body {
  padding: 0.85rem 1rem 1rem;
  display: grid;
  gap: 0.45rem;
}

.section-lead-body h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.05rem, 2.4vw, 1.4rem) !important;
  line-height: 1.15;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.section-date {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
}

.section-list {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0;
  min-height: 56px;
}

.section-list-media {
  background: linear-gradient(145deg, #1a2740, #3a2228);
  overflow: hidden;
  min-height: 56px;
}

.section-list-media img,
.section-list-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 56px;
}

.section-list-media.is-empty {
  min-height: 56px;
}

.section-list-body {
  padding: 0.4rem 0.65rem;
  display: grid;
  gap: 0.2rem;
  align-content: center;
}

.section-list-body h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 0.88rem !important;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.section-list-body .section-tags .section-tag {
  font-size: 0.6rem;
}

.section-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0.55rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #7eb0ff;
  background: rgba(77, 141, 255, 0.12);
  border: 1px solid rgba(77, 141, 255, 0.28);
  border-radius: 4px;
  padding: 0.18rem 0.45rem;
  line-height: 1.2;
}

.section-tag.is-topic {
  color: #fff;
  background: #111827;
  border-color: #111827;
  border-bottom: 2px solid var(--brand);
  border-radius: 3px;
}

.section-tag.is-break {
  color: #fff;
  background: var(--brand-2);
  border-color: var(--brand-2);
}

@media (max-width: 640px) {
  .section-list {
    grid-template-columns: 64px 1fr;
    min-height: 52px;
  }
  .section-list-media,
  .section-list-media img,
  .section-list-media video,
  .section-list-media.is-empty {
    min-height: 52px;
  }
  .section-list-body h3 {
    font-size: 0.76rem !important;
  }
  .section-lead-body {
    padding: 0.75rem 0.85rem 0.9rem;
  }
  .editors-picks {
    margin-top: 0.85rem;
  }
  .editors-picks-list a {
    grid-template-columns: 52px 1fr;
    gap: 0.55rem;
  }
  .editors-picks-thumb {
    width: 52px;
    height: 52px;
  }
}

/* Interior / tip / notify */
.page-hero {
  padding: 1.75rem 0 1rem;
}

.page-hero h1 {
  margin: 0 0 0.45rem;
  font-family: var(--display);
  font-size: clamp(1.7rem, 4vw, 2.35rem);
  text-transform: uppercase;
}

.page-hero p {
  margin: 0;
  color: var(--muted);
  max-width: 48ch;
}

.tip-page,
.notify-page {
  padding: 1.75rem 0 3rem;
}

.tip-narrow,
.notify-narrow {
  width: min(100% - 1.5rem, 720px);
  margin-inline: auto;
}

.tip-date {
  color: var(--muted);
  font-weight: 600;
  margin: 0 0 0.85rem;
}

.tip-hero-box,
.tip-block,
.tip-form-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.25rem 1.2rem;
  margin: 0 0 1rem;
}

.tip-hero-box h1,
.tip-block h2,
.tip-form-card h2 {
  margin: 0 0 0.55rem;
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  text-transform: uppercase;
}

.tip-hero-box p,
.tip-block p,
.tip-form-lead {
  color: #c5d0de;
  line-height: 1.55;
}

.tip-hero-box a,
.tip-block a {
  color: var(--brand);
  font-weight: 700;
}

.tip-form {
  position: relative;
  display: grid;
  gap: 0.75rem;
}

.tip-form label {
  display: grid;
  gap: 0.3rem;
  font-weight: 700;
  font-size: 0.9rem;
}

.tip-form label span {
  font-weight: 500;
  color: var(--muted);
}

.tip-form input,
.tip-form textarea {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.7rem 0.8rem;
  background: #0f1520;
  color: var(--ink);
}

.tip-honey {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.tip-form-err {
  margin: 0.65rem 0 0;
  color: #ff8b84;
  font-weight: 600;
  font-size: 0.95rem;
}

.tip-check {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600 !important;
  color: #d7e0eb;
}

.tip-check input {
  width: auto !important;
  min-height: 0 !important;
  margin: 0;
}

.tip-form-ok {
  margin: 0.35rem 0 0;
  color: #3ecf9a;
  font-weight: 700;
}

.notify-page h1 {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  text-transform: uppercase;
}

.notify-lead {
  color: var(--muted);
  margin: 0 0 1rem;
}

/* Footer */
.site-footer {
  margin-top: 2.5rem;
  background: #000;
  color: #d7dde6;
  padding: 2.6rem 0 1.4rem;
  border-top: 1px solid #1a1a1a;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: 1.15fr 1fr 1fr;
    gap: 2.5rem;
    max-width: none;
  }
}

.site-footer h3 {
  margin: 0 0 1rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-contact-line {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #e8eef6;
  margin: 0 0 0.55rem;
  font-size: 0.95rem;
}

.footer-contact-line:hover {
  color: #fff;
}

.footer-ico {
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
  opacity: 0.9;
}

.footer-block {
  margin-top: 0.95rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-block strong {
  display: block;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.footer-block p {
  margin: 0;
  line-height: 1.55;
  color: #c9d1db;
  font-size: 0.92rem;
}

.footer-mail {
  color: #4d8dff;
  text-decoration: underline;
}

.footer-mail:hover {
  color: #7aaeff;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-links a {
  display: block;
  padding: 0.72rem 0;
  color: #e8eef6;
  font-size: 1rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-apps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.15rem;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.95rem;
}

.footer-social-link {
  display: inline-grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: #0a0a0a;
  color: #fff;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.footer-social-link svg {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
}

.footer-social-link:hover {
  border-color: #fff;
  background: #141414;
  color: #fff;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  background: #0a0a0a;
}

.app-badge:hover {
  background: #151515;
}

.footer-copy {
  margin-top: 1.6rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
  color: #8b95a3;
}

.footer-legal {
  position: relative;
  z-index: 2;
  margin-top: 2rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.footer-legal-brand {
  margin: 0 0 0.85rem;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
}

.footer-legal-links {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 0.55rem;
  margin: 0 auto 1rem;
  max-width: 58rem;
  font-size: 0.92rem;
  line-height: 1.5;
  pointer-events: auto;
}

.footer-legal-links a {
  position: relative;
  z-index: 3;
  display: inline-block;
  padding: 0.15rem 0.1rem;
  color: #d7dde6;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
  cursor: pointer;
  pointer-events: auto;
}

.footer-legal-links a:hover {
  color: #fff;
  text-decoration-style: solid;
}

.legal-body h2 {
  margin: 1.35rem 0 0.55rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: #f2f6fb;
}

.legal-body h2:first-child {
  margin-top: 0;
}

.legal-body h3 {
  margin: 1rem 0 0.4rem;
  font-size: 1rem;
  font-weight: 800;
  color: #e8eef6;
}

.legal-lead {
  font-weight: 700;
  color: #f2f6fb;
}

.legal-list {
  margin: 0.55rem 0 1.1rem;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.7rem;
  color: #c5d0de;
}

.legal-list li {
  line-height: 1.5;
}

.legal-list strong {
  color: #f2f6fb;
}

.cookie-bullets {
  margin: 0.75rem 0 1.1rem;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.65rem;
  color: #d7e0eb;
}

.cookie-bullets li {
  line-height: 1.45;
}

.cookie-bullets strong {
  display: block;
  color: #f2f6fb;
  margin-bottom: 0.15rem;
}

.cookie-bullets span {
  display: block;
  color: #c5d0de;
  font-size: 0.95rem;
}

.cookie-table-wrap {
  overflow-x: auto;
  margin: 0.85rem 0 1.4rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #0f141c;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  font-size: 0.88rem;
}

.cookie-table th,
.cookie-table td {
  padding: 0.7rem 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  vertical-align: top;
  line-height: 1.4;
}

.cookie-table th {
  background: rgba(255, 255, 255, 0.06);
  color: #f2f6fb;
  font-weight: 800;
  white-space: nowrap;
}

.cookie-table td:nth-child(3),
.cookie-table td:nth-child(4),
.cookie-table th:nth-child(3),
.cookie-table th:nth-child(4) {
  background: rgba(255, 255, 255, 0.03);
}

.cookie-table tbody tr:last-child td {
  border-bottom: 0;
}

.cookie-table td {
  color: #d7e0eb;
}

.cookie-note {
  color: var(--muted);
  font-size: 0.8rem;
}

.cookie-empty {
  color: var(--muted);
  font-style: italic;
}

.cookie-section-note {
  margin: 0.35rem 0 0.85rem;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Cookie consent panel */
body.cookie-modal-open {
  overflow: hidden;
}

.cookie-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.72);
}

.cookie-overlay[hidden] {
  display: none !important;
}

.cookie-overlay-card {
  width: min(100%, 560px);
  max-height: min(92vh, 820px);
  overflow: auto;
}

.cookie-settings-host {
  margin-top: 0.25rem;
}

.cookie-panel {
  position: relative;
  background: #121820;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.25rem 1.2rem 1.1rem;
  color: #e4ebf4;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

.cookie-panel.is-page {
  box-shadow: none;
}

.cookie-panel-close {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.cookie-panel h2 {
  margin: 0 1.5rem 0.75rem 0;
  font-family: var(--display);
  font-size: clamp(1.25rem, 3.5vw, 1.55rem);
  line-height: 1.15;
  text-transform: uppercase;
}

.cookie-panel h2 span {
  display: block;
  margin-top: 0.2rem;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: none;
  color: var(--muted);
}

.cookie-panel > p {
  margin: 0 0 0.85rem;
  color: #c5d0de;
  line-height: 1.5;
  font-size: 0.95rem;
}

.cookie-panel a {
  color: var(--brand);
  font-weight: 700;
}

.cookie-allow-label {
  margin: 1rem 0 0.55rem !important;
  font-size: 0.78rem !important;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f2f6fb !important;
}

.cookie-cats {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
}

.cookie-cat {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #0b1018;
  padding: 0.55rem 0.65rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.45rem 0.65rem;
  align-items: center;
}

.cookie-cat-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 0;
  background: transparent;
  color: #f2f6fb;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  padding: 0.2rem 0;
}

.cookie-cat-plus {
  width: 1.2rem;
  color: var(--muted);
  font-weight: 800;
}

.cookie-cat-actions {
  display: flex;
  gap: 0.35rem;
}

.cookie-choice {
  border: 1px solid var(--line);
  background: transparent;
  color: #d7e0eb;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  min-height: 2rem;
}

.cookie-choice.is-on {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

.cookie-choice.is-accept.is-on {
  border-color: #2f9e6e;
  background: rgba(62, 207, 154, 0.18);
  color: #dff8ec;
}

.cookie-choice:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.cookie-cat-detail {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
  padding-top: 0.15rem;
}

.cookie-cat-detail p {
  margin: 0;
}

.cookie-extra {
  font-size: 0.88rem !important;
}

.cookie-about {
  margin: 0 0 0.9rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.cookie-about summary {
  cursor: pointer;
  color: #d7e0eb;
  font-weight: 700;
}

.cookie-about p {
  margin: 0.45rem 0 0;
}

.cookie-about code {
  font-size: 0.8rem;
  color: #9ec0ff;
}

.cookie-panel-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}

.cookie-panel-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.45rem;
}

@media (min-width: 520px) {
  .cookie-panel-actions {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.cookie-panel-actions .btn {
  min-height: 2.7rem;
}

.cookie-status {
  margin: 0.75rem 0 0;
  min-height: 1.2em;
  color: var(--accent, #3ecf9a);
  font-size: 0.88rem;
}

.footer-legal-sep {
  color: rgba(255, 255, 255, 0.35);
  user-select: none;
}

.footer-legal-note {
  margin: 0 auto;
  max-width: 52rem;
  color: #8b95a3;
  font-size: 0.82rem;
  line-height: 1.55;
}

.version-pill {
  display: inline-block;
  margin-left: 0.4rem;
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.72rem;
  font-weight: 700;
}

/* Article — PF-struktur, mørkt tema */
.article-page {
  padding: 1.25rem 0 3.5rem;
  background: linear-gradient(180deg, #0a0e14 0%, var(--bg) 36%);
}

.article-wrap {
  width: min(100% - 1.5rem, 1100px);
}

.article-layout {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 960px) {
  .article-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
    align-items: start;
    gap: 2rem;
  }
}

.article-main {
  min-width: 0;
}

.article-loading,
.article-missing {
  color: var(--muted);
}

.article-empty {
  padding: 2rem 0;
}

/* Presse-fotos: tags + titel over hero */
.article-header {
  margin: 0 0 0.85rem;
}

.article-header .entry-title,
.article-single h1,
h1.entry-title {
  margin: 0.55rem 0 0;
  font-family: var(--display);
  font-size: clamp(1.45rem, 3.6vw, 2.05rem) !important;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
  text-transform: none;
  color: #f4f7fb;
}

.article-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.article-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.28rem 0.55rem;
  border-radius: 2px;
  color: #fff;
  text-decoration: none;
}

a.article-label:hover {
  filter: brightness(1.08);
}

.label-breaking {
  background: var(--brand-2);
}

.label-section {
  background: var(--brand);
}

/* Hero som PF: fuld bredde, mørk letterbox */
.article-hero {
  margin: 0 0 0;
  width: 100%;
  background: #000;
}

.article-hero .article-media {
  margin: 0;
  width: 100%;
  border-radius: 0;
  background: #000;
}

.article-hero .article-media img,
.article-hero .article-media video {
  display: block;
  width: 100%;
  max-height: min(70vh, 640px);
  object-fit: contain;
  object-position: center;
  background: #000;
}

.article-byline-bar {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 1.15rem;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(160, 170, 185, 0.35);
  border-bottom: 1px solid rgba(160, 170, 185, 0.35);
  font-size: 0.9rem;
}

.article-byline-left {
  color: #9aa3b2;
}

.byline-label {
  font-weight: 400;
  color: #9aa3b2;
}

.byline-name {
  font-weight: 800;
  color: #f2f5f9;
}

a.byline-name {
  color: #f2f5f9;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(77, 141, 255, 0.55);
}

a.byline-name:hover {
  color: #9ec0ff;
  text-decoration-color: #4d8dff;
}

/* Fotograf-profiler */
.phot-back {
  margin: 1rem 0 0.5rem;
  font-size: 0.92rem;
}

.phot-back a {
  color: var(--muted);
  text-decoration: none;
}

.phot-back a:hover {
  color: var(--brand);
}

.phot-profile {
  padding: 0.5rem 0 2.5rem;
}

.phot-profile-head {
  display: grid;
  gap: 1.1rem;
  align-items: start;
  margin-bottom: 2rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 720px) {
  .phot-profile-head {
    grid-template-columns: 120px 1fr;
    gap: 1.4rem;
  }
}

.phot-profile-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
  background: #121820;
}

.phot-profile-avatar.is-initials {
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 2rem;
  color: #9ec0ff;
}

.phot-profile-kicker {
  margin: 0 0 0.35rem;
  color: var(--muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.phot-profile-copy h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.phot-profile-area {
  margin: 0.45rem 0 0;
  color: #c5d0de;
  font-weight: 600;
}

.phot-profile-bio {
  margin: 0.85rem 0 0;
  max-width: 48ch;
  line-height: 1.55;
  color: #d7e0eb;
}

.phot-profile-mail {
  margin: 0.7rem 0 0;
}

.phot-profile-mail a {
  color: var(--brand);
  font-weight: 700;
}

.phot-profile-work h2 {
  margin: 0 0 0.85rem;
  font-family: var(--display);
  font-size: 1.2rem;
  text-transform: uppercase;
}

.phot-profile-grid {
  margin-top: 0.25rem;
}

/* Kompakte artikel-rækker på fotograf-profil (som presse-fotos liste) */
.phot-article-list {
  display: grid;
  gap: 0.65rem;
  max-width: 720px;
}

.phot-article {
  display: grid;
  grid-template-columns: 132px 1fr;
  min-height: 88px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}

.phot-article:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.phot-article:hover .phot-article-body h3 {
  color: var(--brand);
}

.phot-article-media {
  background: linear-gradient(145deg, #1a2740, #3a2228);
  overflow: hidden;
  min-height: 88px;
}

.phot-article-media img,
.phot-article-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 88px;
}

.phot-article-media.is-empty {
  min-height: 88px;
}

.phot-article-body {
  padding: 0.55rem 0.75rem;
  display: grid;
  gap: 0.35rem;
  align-content: center;
  min-width: 0;
}

.phot-article-body .section-tags {
  gap: 0.25rem 0.4rem;
}

.phot-article-body h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 0.98rem;
  line-height: 1.22;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

@media (max-width: 560px) {
  .phot-article {
    grid-template-columns: 96px 1fr;
    min-height: 76px;
  }
  .phot-article-media,
  .phot-article-media img,
  .phot-article-media video,
  .phot-article-media.is-empty {
    min-height: 76px;
  }
  .phot-article-body h3 {
    font-size: 0.88rem;
  }
  .phot-article-body {
    padding: 0.45rem 0.6rem;
  }
}

.phot-roster {
  display: grid;
  gap: 0.85rem;
  margin: 1.25rem 0 0.5rem;
}

.phot-roster-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0.9rem;
  align-items: center;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, background 0.15s;
}

.phot-roster-card:hover {
  border-color: rgba(77, 141, 255, 0.45);
  background: rgba(77, 141, 255, 0.06);
}

.phot-roster-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  background: #121820;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
}

.phot-roster-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.phot-roster-initials {
  font-family: var(--display);
  font-size: 1.25rem;
  color: #9ec0ff;
}

.phot-roster-copy strong {
  display: block;
  font-size: 1.08rem;
}

.phot-roster-copy span {
  display: block;
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.phot-roster-copy p {
  margin: 0.4rem 0 0;
  color: #c5d0de;
  font-size: 0.92rem;
  line-height: 1.4;
}

.article-when {
  color: #9aa3b2;
  white-space: nowrap;
}

.article-teaser,
.article-lead {
  font-size: 1.05rem !important;
  line-height: 1.5;
  color: #e8edf5;
  margin: 0 0 1rem;
  max-width: 48ch;
  font-weight: 700;
}

.article-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin: 1.4rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(160, 170, 185, 0.22);
}

.share-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-right: 0.2rem;
}

.share-btn {
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--ink);
  border-radius: 6px;
  padding: 0.4rem 0.7rem;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}

.share-btn:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: #1a2230;
}

.article-media {
  margin: 1.15rem 0 1.5rem;
  background: #070a10;
  overflow: hidden;
}

.article-media.is-hero {
  margin: 0;
}

.article-media img,
.article-media video {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #070a10;
}

.article-media .media-caption,
.newsblock-media .media-caption,
.news-card .media .media-caption,
.media-caption {
  display: block;
  margin: 0;
  padding: 0.55rem 0.15rem 0.1rem;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--muted);
}

.newsblock-media .media-caption,
.news-card .media .media-caption {
  padding: 0.4rem 0.55rem 0.55rem;
  font-size: 0.78rem;
  color: #aeb9c8;
}

.article-body {
  font-size: 0.98rem !important;
  line-height: 1.65;
  color: #e4ebf4;
  max-width: 42rem;
}

.article-body p {
  margin: 0 0 1.05rem;
}

.article-body h2 {
  margin: 1.15rem 0 0.55rem;
  font-family: var(--display);
  font-size: 1.15rem;
  text-transform: uppercase;
}

.article-continue {
  color: var(--muted);
  font-style: italic;
  font-size: 0.95rem;
}

.article-tip-box {
  margin: 2.2rem 0 0;
  padding: 1.25rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(145deg, #151b24, #10161f);
}

.article-tip-box h2 {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.article-tip-box p {
  margin: 0 0 0.9rem;
  color: var(--muted);
}

/* “Se også” fjernet — match Presse-fotos artikel (kun sidebar) */
.article-related {
  display: none !important;
}

.article-related h2 {
  margin: 0 0 0.9rem;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.related-grid {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 720px) {
  .related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.related-card {
  display: grid;
  gap: 0.55rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  color: inherit;
}

.related-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
}

.related-thumb {
  min-height: 120px;
  background: #0a0e14;
  display: flex;
  align-items: center;
  justify-content: center;
}

.related-thumb img,
.related-thumb video {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16 / 10;
  display: block;
}

.related-thumb.is-empty {
  background: linear-gradient(145deg, #1a2740, #3a2228 70%, #162033);
}

.related-body {
  padding: 0 0.8rem 0.9rem;
  display: grid;
  gap: 0.35rem;
}

.related-chip {
  display: inline-block;
  width: fit-content;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: var(--brand);
  padding: 0.18rem 0.4rem;
  border-radius: 2px;
}

.related-chip.break {
  background: var(--brand-2);
}

.related-body h3 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.3;
}

.article-foot {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.85rem;
  font-weight: 700;
}

.article-foot a:hover {
  color: var(--brand);
}

.news-card,
.newsblock,
.side-item,
.related-card {
  cursor: pointer;
}

/* ——— Telefon / app-shell ——— */
html {
  -webkit-text-size-adjust: 100%;
}

body {
  padding-bottom: env(safe-area-inset-bottom, 0);
}

body.is-app {
  padding-bottom: calc(4.35rem + env(safe-area-inset-bottom, 0px));
}

body.is-standalone .breaking {
  padding-top: env(safe-area-inset-top, 0px);
}

.mobile-app-nav {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  background: rgba(10, 14, 20, 0.94);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.35rem 0.4rem calc(0.35rem + env(safe-area-inset-bottom, 0px));
}

.mobile-app-nav .nav-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.15rem;
  width: min(100% - 0.4rem, 560px);
  margin: 0 auto;
}

.mobile-app-nav a,
.mobile-app-nav button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  min-height: 3.15rem;
  padding: 0.25rem 0.15rem;
  border-radius: 10px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.mobile-app-nav a svg,
.mobile-app-nav button svg {
  width: 1.35rem;
  height: 1.35rem;
  display: block;
}

.mobile-app-nav a.is-active,
.mobile-app-nav button.is-active {
  color: #fff;
  background: rgba(77, 141, 255, 0.14);
}

.mobile-app-nav a:active,
.mobile-app-nav button:active {
  transform: scale(0.97);
}

.app-install-banner {
  display: none;
  position: sticky;
  top: 0;
  z-index: 70;
  background: linear-gradient(180deg, #152033, #101722);
  border-bottom: 1px solid var(--line);
  padding: 0.65rem 0;
}

.app-install-banner .wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.app-install-banner img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  flex: 0 0 auto;
}

.app-install-banner .copy {
  flex: 1;
  min-width: 0;
}

.app-install-banner strong {
  display: block;
  font-size: 0.92rem;
}

.app-install-banner span {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
}

.app-install-banner .btn {
  flex: 0 0 auto;
  min-height: 2.4rem;
  padding: 0.45rem 0.8rem;
  font-size: 0.82rem;
}

.app-install-banner .app-dismiss {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 1.25rem;
  line-height: 1;
  padding: 0.2rem 0.35rem;
  cursor: pointer;
}

.app-page {
  padding: 1.25rem 0 2rem;
}

.app-hero {
  display: grid;
  gap: 1rem;
  justify-items: start;
  margin-bottom: 1.5rem;
}

.app-hero-icon {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: #0a0e14;
  object-fit: cover;
}

.notify-heading {
  margin: 0 0 0.6rem;
  font-size: 1.25rem;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.notify-block {
  margin-top: 0.35rem;
  scroll-margin-top: 5.5rem;
}

#notifikationer {
  scroll-margin-top: 5rem;
}

.menu-right .icon-btn[data-icon-phone],
.menu-right .icon-btn[data-icon-bell] {
  flex: 0 0 auto;
}

.notify-btn.is-on {
  background: #1a5c42;
  border-color: #2f9e6e;
}

/* Bliv fotograf */
.photo-join-page {
  padding: 1.4rem 0 2.5rem;
}

.photo-join-head h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.45rem, 3.8vw, 1.95rem);
  line-height: 1.12;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.photo-join-date {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.photo-join-rule {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 1rem 0 1.25rem;
}

.photo-join-lead {
  margin: 0 0 0.65rem;
  font-size: 1.12rem;
  line-height: 1.55;
  color: #e4ebf4;
}

.photo-join-hook {
  margin: 0 0 1.35rem;
  font-size: 1.05rem;
  color: #c5d0de;
}

.photo-join-banner {
  display: grid;
  gap: 1rem;
  align-items: center;
  margin: 0 0 1.5rem;
  padding: 1.25rem 1.2rem;
  border-radius: 14px;
  background:
    radial-gradient(circle at 12% 50%, rgba(77, 141, 255, 0.45), transparent 42%),
    radial-gradient(circle at 88% 50%, rgba(255, 77, 69, 0.35), transparent 40%),
    linear-gradient(120deg, #0a2a6e, #143a8f 45%, #1a1f3a);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

@media (min-width: 720px) {
  .photo-join-banner {
    grid-template-columns: 110px 1fr 120px;
    padding: 1.5rem 1.4rem;
  }
}

.photo-join-banner-visual {
  display: grid;
  place-items: center;
}

.photo-join-cam {
  width: 96px;
  height: auto;
}

.photo-join-banner-copy h2 {
  margin: 0.45rem 0 0.35rem;
  font-family: var(--display);
  font-size: clamp(1.35rem, 3.5vw, 1.9rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.photo-join-banner-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  max-width: 36ch;
  line-height: 1.4;
}

.photo-join-chip {
  display: inline-block;
  background: #fff;
  color: #0b3d91;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.28rem 0.5rem;
  border-radius: 3px;
}

.photo-join-banner-brand {
  display: grid;
  justify-items: center;
  gap: 0.4rem;
  text-align: center;
}

.photo-join-banner-brand img {
  width: 88px;
  height: 88px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #0b0f14;
}

.photo-join-banner-brand span {
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.02em;
}

.photo-join-body {
  display: grid;
  gap: 0.95rem;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #d7e0eb;
}

.photo-join-body p {
  margin: 0;
}

.photo-join-body a {
  color: var(--brand);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.photo-join-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.photo-join-actions .btn {
  min-height: 2.75rem;
}

/* Job og praktik */
.job-banner {
  position: relative;
  margin: 0 0 1.5rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0a1f4d;
}

.job-banner-img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 200px;
  object-fit: cover;
}

.job-banner-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.1rem 1.15rem 1.2rem;
  background: linear-gradient(180deg, transparent, rgba(6, 12, 24, 0.88) 42%, rgba(6, 12, 24, 0.96));
}

.job-banner-copy h2 {
  margin: 0.45rem 0 0.35rem;
  font-family: var(--display);
  font-size: clamp(1.35rem, 3.5vw, 1.9rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.job-banner-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  max-width: 42ch;
  line-height: 1.45;
  font-size: 0.98rem;
}

.job-banner-copy a {
  color: #9ec0ff;
  font-weight: 700;
}

.job-note {
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--brand);
  background: rgba(77, 141, 255, 0.08);
  border-radius: 0 8px 8px 0;
  color: #c5d0de;
  font-size: 0.98rem;
}

.job-roles-title {
  margin: 0.35rem 0 0;
  font-family: var(--display);
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.job-role {
  padding: 0 0 1.15rem;
  border-bottom: 1px solid var(--line);
}

.job-role:last-of-type {
  border-bottom: 0;
}

.job-role h4 {
  margin: 0 0 0.45rem;
  font-size: 1.12rem;
  line-height: 1.3;
  color: #f2f6fb;
}

.job-role p {
  margin: 0 0 0.85rem;
  color: #d7e0eb;
}

.job-role-btn {
  min-height: 2.5rem;
  border-radius: 999px;
  padding-inline: 1.15rem;
}

@media (max-width: 640px) {
  .job-banner-copy {
    position: static;
    background: #0b1424;
    padding: 1rem 1.05rem 1.15rem;
  }

  .job-banner-img {
    min-height: 160px;
  }
}

/* Om os */
.about-hero {
  margin: 0 0 1.35rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #121820;
}

.about-hero img {
  display: block;
  width: 100%;
  height: auto;
}

.about-body {
  margin-bottom: 2rem;
}

.about-picks {
  display: grid;
  gap: 1.5rem;
  margin: 0 0 0.5rem;
  padding-top: 0.25rem;
  border-top: 1px solid var(--line);
}

.about-picks h2 {
  margin: 1.25rem 0 0;
  font-family: var(--display);
  font-size: clamp(1.15rem, 3.2vw, 1.45rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #f2f6fb;
}

.about-pick {
  margin: 0;
}

.about-pick img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #0f141c;
}

.about-pick figcaption {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

/* Code of Conduct */
.coc-list {
  margin: 0.25rem 0 0.5rem;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.65rem;
  color: #d7e0eb;
}

.coc-list li {
  padding-left: 0.15rem;
}

.coc-list ul {
  margin: 0.45rem 0 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.4rem;
  color: #c5d0de;
}

.app-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 8vw, 2.8rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.app-hero p {
  margin: 0;
  color: var(--muted);
  max-width: 36ch;
  line-height: 1.5;
}

.app-steps {
  display: grid;
  gap: 0.75rem;
  margin: 1.25rem 0 1.5rem;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.app-steps li {
  counter-increment: step;
  position: relative;
  padding: 0.85rem 0.9rem 0.85rem 3rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  color: #d7e0eb;
  line-height: 1.4;
}

.app-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0.75rem;
  top: 0.85rem;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  font-size: 0.82rem;
  display: grid;
  place-items: center;
}

.app-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.app-cta-row .btn {
  min-height: 2.75rem;
  padding-inline: 1rem;
}

@media (max-width: 820px) {
  .wrap {
    width: min(100% - 1rem, var(--max));
  }

  body {
    font-size: 1rem;
  }

  .mobile-app-nav {
    display: block;
  }

  body.is-app .site-footer {
    padding-bottom: 0.5rem;
  }

  .header-brand-row {
    padding: 0.5rem 0;
    gap: 0.65rem;
  }

  .header-brand-row .btn-dark {
    padding: 0.4rem 0.7rem;
    font-size: 0.82rem;
    min-height: 2.25rem;
  }

  .brand-logo {
    width: min(150px, 46vw);
    height: auto;
  }

  .breaking .wrap {
    gap: 0.5rem;
    padding: 0.4rem 0;
  }

  .breaking-tag {
    font-size: 0.7rem;
    padding: 0.12rem 0.35rem;
  }

  .breaking-text {
    flex: 1 1 auto;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.82rem;
  }

  .breaking-time {
    display: none;
  }

  /* Menu: én scrollbar-række + kompakte ikoner */
  .menu-bar .wrap {
    flex-wrap: nowrap;
    gap: 0.35rem;
    min-height: 48px;
    padding: 0.25rem 0;
  }

  .menu-left {
    flex: 1 1 auto;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0;
    min-width: 0;
  }

  /* Åben prik-menu må ikke klippes af den vandrette scroll-række */
  .menu-left:has(.menu-more.open),
  .menu-left.is-more-open {
    overflow: visible;
  }

  .menu-left::-webkit-scrollbar {
    display: none;
  }

  .menu-left a {
    font-size: 0.8rem;
    padding: 0.55rem 0.5rem;
    flex: 0 0 auto;
  }

  .menu-right {
    gap: 0.2rem;
    flex: 0 0 auto;
  }

  .menu-right .btn-tip,
  .menu-right [data-icon-phone],
  .menu-right [data-icon-bell],
  .menu-divider {
    display: none;
  }

  .menu-more {
    position: static;
  }

  .menu-more.open {
    z-index: 60;
  }

  .menu-more-panel {
    position: fixed;
    top: var(--menu-more-top, 7.5rem);
    left: 0.75rem;
    right: 0.75rem;
    width: auto;
    min-width: 0;
    max-width: none;
    max-height: min(70vh, 420px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .front-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0.15rem;
  }

  .front-tabs::-webkit-scrollbar {
    display: none;
  }

  .front-tab {
    flex: 0 0 auto;
    padding: 0.5rem 0.7rem;
    font-size: 0.82rem;
  }

  .block-head {
    flex-wrap: wrap;
    gap: 0.35rem 0.75rem;
    margin-bottom: 0.65rem;
  }

  .block-head h2 {
    font-size: 1.15rem;
  }

  .newsblock {
    margin-bottom: 0.85rem;
  }

  .newsblock-tape {
    font-size: 0.85rem;
  }

  .newsblock-title,
  .section-lead-body h3,
  .section-list-body h3,
  .phot-article-body h3,
  .article-single h1 {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .newsblock-title {
    font-size: clamp(1rem, 3.6vw, 1.25rem) !important;
  }

  .article-page {
    padding: 0.85rem 0 2.5rem;
  }

  .article-wrap {
    width: min(100% - 1rem, 960px);
  }

  .article-header .entry-title,
  .article-single h1,
  h1.entry-title {
    font-size: clamp(1.25rem, 5vw, 1.65rem) !important;
  }

  .article-teaser,
  .article-lead {
    max-width: none;
    font-size: 0.98rem !important;
  }

  .article-body {
    font-size: 0.95rem !important;
    max-width: none;
  }

  .article-when {
    white-space: normal;
  }

  .article-byline-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .article-hero .article-media img,
  .article-hero .article-media video {
    max-height: min(48vh, 420px);
  }

  .article-share {
    gap: 0.35rem;
  }

  .article-share .share-btn {
    flex: 1 1 auto;
    min-width: calc(50% - 0.35rem);
    justify-content: center;
    text-align: center;
  }

  .photo-join-head h1 {
    font-size: clamp(1.35rem, 5.2vw, 1.75rem);
  }

  .phot-profile-copy h1 {
    font-size: clamp(1.55rem, 8vw, 2.35rem);
  }

  .phot-profile-head {
    gap: 0.85rem;
  }

  .phot-profile-avatar,
  .phot-profile-avatar.is-initials {
    width: 88px;
    height: 88px;
  }

  .tip-strip {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    padding: 1rem 0.95rem;
  }

  .tip-strip .btn {
    width: 100%;
    min-height: 2.75rem;
  }

  .article-share .share-btn,
  .btn,
  .icon-btn {
    min-height: 2.5rem;
  }

  .icon-btn {
    width: 2.5rem;
  }

  .search-pop,
  .search-results {
    width: min(100vw - 1rem, 360px);
    right: 0;
    left: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .mest-box {
    position: static;
  }

  .app-install-banner.show {
    display: block;
  }

  .notify-actions .btn,
  .tip-form .btn {
    width: 100%;
    min-height: 2.85rem;
  }

  .tip-form label,
  .tip-form input,
  .tip-form textarea,
  .tip-form select,
  input[type="text"],
  input[type="email"],
  input[type="search"],
  input[type="tel"],
  input[type="url"],
  input[type="password"],
  textarea,
  select {
    font-size: 16px;
  }

  .tip-form input,
  .tip-form textarea {
    min-height: 2.75rem;
    width: 100%;
  }

  .page-hero h1 {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  .cookie-table-wrap {
    margin-inline: -0.25rem;
  }
}

@media (max-width: 480px) {
  .wrap {
    width: min(100% - 0.85rem, var(--max));
  }

  .menu-left a {
    font-size: 0.76rem;
    padding: 0.5rem 0.42rem;
  }

  .section-list {
    grid-template-columns: 58px 1fr;
    min-height: 48px;
  }

  .section-list-media,
  .section-list-media img,
  .section-list-media video,
  .section-list-media.is-empty {
    min-height: 48px;
  }

  .section-list-body {
    padding: 0.5rem 0.6rem;
  }

  .related-body h3 {
    font-size: 0.92rem;
  }

  .article-share .share-btn {
    min-width: 100%;
  }
}

@media (min-width: 821px) {
  .mobile-app-nav {
    display: none !important;
  }

  body.is-app {
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
}
