.page-content {
  display: grid;
  gap: 28px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.94rem;
}

.breadcrumbs a {
  color: var(--accent-dark);
  font-weight: 500;
}

.breadcrumb-separator {
  color: rgba(31, 26, 23, 0.38);
}

.page-intro {
  max-width: 72ch;
}

.page-intro h1 {
  margin: 0;
  font-size: clamp(2.3rem, 4.6vw, 3.85rem);
  line-height: 1.06;
}

.page-lead {
  margin: 18px 0 0;
  color: var(--muted);
  max-width: 62ch;
  font-size: 1.06rem;
  line-height: 1.72;
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(250px, 1fr);
  gap: 22px;
  align-items: start;
}

.page-search .page-grid {
  grid-template-columns: minmax(0, 3fr) minmax(250px, 1fr);
  gap: 22px;
}

.page-content-column {
  display: grid;
  gap: 20px;
  min-width: 0;
}

.content-topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px 18px;
  min-width: 0;
}

.content-date {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: right;
}

.page-main {
  display: grid;
  gap: 20px;
  min-width: 0;
}

.page-primary {
  --category-color: var(--accent);
  display: grid;
  gap: 20px;
  min-width: 0;
}

.page-primary::before {
  content: "";
  display: block;
  width: 100%;
  height: 6px;
  background: var(--category-color);
  border-radius: 999px;
}

.page-primary.content-category-default {
  --category-color: var(--accent);
}

.page-primary.content-category-partner {
  --category-color: #1f425d;
}

.page-primary.content-category-island-wissen {
  --category-color: #4f8f5b;
}

.page-primary.content-category-island-reisen {
  --category-color: #1f9aa5;
}

.page-primary.content-category-island-verzeichnis {
  --category-color: #f28c28;
}

.page-primary.content-category-island-geschenke {
  --category-color: #b94a48;
}

.page-primary.content-category-nachrichten {
  --category-color: #00a6df;
}

.text-card {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.text-card h2 {
  margin: 0 0 14px;
  font-size: 1.22rem;
  line-height: 1.2;
}

.rich-text {
  display: grid;
  gap: 16px;
  max-width: 68ch;
}

.rich-text h2,
.rich-text h3 {
  margin: 18px 0 0;
  color: var(--heading);
  line-height: 1.25;
}

.rich-text h2:first-child,
.rich-text h3:first-child {
  margin-top: 0;
}

.rich-text h2 {
  color: var(--category-color);
  font-size: 1.34rem;
}

.rich-text h3 {
  font-size: 1.12rem;
}

.rich-text p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.detail-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.rich-text + .detail-list {
  margin-top: 18px;
}

.detail-list-row {
  display: grid;
  grid-template-columns: minmax(145px, 0.42fr) minmax(0, 1fr);
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid rgba(31, 26, 23, 0.1);
}

.detail-list-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.detail-list dt {
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.45;
  text-transform: uppercase;
}

.detail-list dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.content-image {
  margin: 20px 0 0;
}

.content-image img {
  display: block;
  width: min(100%, 320px);
  height: auto;
}

.usercentrics-settings-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--accent-dark);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.usercentrics-settings-button:hover,
.usercentrics-settings-button:focus-visible {
  color: #fff;
  transform: translateY(-1px);
}

.content-image-original img {
  width: auto;
  max-width: 100%;
}

.content-list {
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.content-list li {
  position: relative;
  padding-left: 18px;
  line-height: 1.68;
}

.content-list li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.article-page {
  display: grid;
  gap: 20px;
}

.article-page > header,
.article-page > section,
.article-page > footer {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--surface-strong);
}

.article-page header {
  display: grid;
  gap: 16px;
}

.article-page h1 {
  max-width: none;
  font-size: clamp(2.3rem, 4.6vw, 3.85rem);
  line-height: 1.06;
}

.article-page h2 {
  margin-bottom: 14px;
  font-size: 1.35rem;
}

.article-page h3 {
  margin: 18px 0 8px;
  font-size: 1.08rem;
}

.article-page p,
.article-page li,
.article-page dd {
  color: var(--muted);
  line-height: 1.72;
}

.article-page p:last-child {
  margin-bottom: 0;
}

.article-page a {
  font-weight: 700;
  text-decoration: underline;
}

.article-page ul,
.article-page ol {
  display: grid;
  gap: 8px;
  margin: 0 0 0 1.25rem;
  padding: 0;
  list-style: disc;
}

.article-page ol {
  list-style: decimal;
}

.article-page figure {
  margin: 8px 0 4px;
}

.article-page figure img {
  display: block;
  width: 100%;
  border-radius: 0;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #e8e0d2;
}

.article-page figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.article-media-section {
  display: grid;
  grid-template-columns: minmax(220px, 40%) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.article-media-section .article-media-figure {
  margin: 0;
}

.article-media-text {
  min-width: 0;
}

.article-fact-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  font-size: 0.96rem;
}

.article-fact-table caption {
  margin-bottom: 12px;
  color: var(--heading);
  font-weight: 800;
  text-align: left;
}

.article-fact-table th,
.article-fact-table td {
  padding: 12px 14px;
  border-top: 1px solid rgba(31, 26, 23, 0.1);
  vertical-align: top;
  text-align: left;
}

.article-fact-table th {
  width: 34%;
  color: var(--text);
  font-weight: 800;
}

.article-page dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.article-page dt {
  color: var(--text);
  font-weight: 800;
}

.article-page dd {
  margin: -8px 0 0;
}

.article-page blockquote {
  margin: 18px 0 0;
  padding: 16px 18px;
  border-left: 4px solid var(--accent);
  background: var(--accent-soft);
  color: var(--text);
  font-weight: 700;
}

.article-page mark {
  padding: 0.05em 0.22em;
  background: #fff0b8;
  color: var(--text);
}

@media (max-width: 760px) {
  .article-media-section {
    grid-template-columns: 1fr;
  }
}

.article-source-list {
  display: grid;
  gap: 8px;
  margin: 0 0 0 1.25rem;
}

.content-list-tight {
  gap: 8px;
}

.search-results-form {
  display: grid;
  gap: 12px;
}

.search-results-field {
  position: relative;
  max-width: 520px;
}

.search-results-form .search-suggestions {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
}

.search-results-form .cta-button {
  justify-self: start;
}

.search-results-meta,
.search-empty-state {
  margin: 14px 0 0;
  color: var(--muted);
}

.search-empty-state-block {
  display: grid;
  gap: 22px;
  margin-top: 18px;
}

.search-empty-layout {
  display: grid;
  grid-template-columns: minmax(260px, 1.15fr) minmax(0, 0.85fr);
  gap: 18px;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(31, 26, 23, 0.1);
  background: #fff9f1;
}

.search-empty-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-empty-illustration img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.search-empty-copy h2,
.search-shop-card h2 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.search-empty-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.search-empty-help {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.search-empty-help strong {
  color: var(--text);
}

.search-suggestion-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.search-suggestion-list a {
  display: inline-flex;
  padding: 7px 11px;
  border: 1px solid rgba(31, 26, 23, 0.12);
  border-radius: 999px;
  background: #ffffff;
  color: var(--accent-dark);
  font-weight: 700;
}

.search-shop-card {
  padding: 20px;
  border: 1px solid rgba(31, 26, 23, 0.1);
  background: #fffdf8;
}

.search-shop-links {
  display: grid;
  gap: 12px;
}

.search-shop-link {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border: 1px solid rgba(31, 26, 23, 0.1);
  background: #ffffff;
}

.search-shop-link strong {
  color: var(--accent-dark);
  font-size: 1rem;
}

.search-shop-link span {
  color: var(--muted);
  line-height: 1.6;
}

.error-404-card {
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(27, 103, 115, 0.09), transparent 38%),
    linear-gradient(180deg, #fff9f1 0%, #fffdf8 100%);
}

.error-404-layout {
  display: grid;
  grid-template-columns: minmax(260px, 1.05fr) minmax(0, 0.95fr);
  gap: 24px;
  align-items: center;
}

.error-404-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-404-illustration img {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
}

.error-404-copy {
  display: grid;
  gap: 16px;
}

.error-404-copy h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.25rem);
}

.error-404-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.error-404-search {
  margin-top: 6px;
}

.error-404-discovery-card h2 {
  margin-bottom: 16px;
}

.error-404-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.error-404-link-card {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border: 1px solid rgba(31, 26, 23, 0.1);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fffaf4 100%);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.error-404-link-card:hover,
.error-404-link-card:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(15, 118, 110, 0.3);
  box-shadow: 0 14px 28px rgba(31, 26, 23, 0.08);
}

.error-404-link-card strong {
  color: var(--accent-dark);
  font-size: 1rem;
}

.error-404-link-card span {
  color: var(--muted);
  line-height: 1.58;
}

.search-results-list {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.search-result-item {
  padding-top: 18px;
  border-top: 1px solid rgba(31, 26, 23, 0.1);
}

.search-result-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.search-result-item h2 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.search-result-item h2 a {
  color: var(--accent-dark);
}

.search-result-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.search-result-mark {
  padding: 0.05em 0.22em;
  border-radius: 4px;
  background: #fff0b8;
  color: var(--text);
  font-weight: 800;
}

@media (max-width: 1080px) {
  .page-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .content-topbar {
    display: grid;
    justify-content: stretch;
  }

  .content-date {
    text-align: left;
  }

  .search-empty-layout {
    grid-template-columns: 1fr;
  }

  .error-404-layout,
  .error-404-link-grid {
    grid-template-columns: 1fr;
  }

  .error-404-illustration {
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
  }

  .search-empty-illustration {
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
  }

  .detail-list-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
