/* ============================================
   EIGHT GENERATIONS, SAME WATER — article styles
   Page-scoped fk-* classes for Fiskevollen-specific blocks.
   Shared art-* primitives come from article-base + article-shared.
   hst-split is defined here for this page (mirrors Folldal pattern).
   ============================================ */

/* hst-split — figure + text side-by-side block */
.hst-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 3.5vw, 56px);
  align-items: center;
  max-width: 1020px;
  margin: clamp(36px, 5vh, 60px) auto;
}
.hst-split__fig {
  margin: 0;
}
.hst-split__img-wrap {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}
.hst-split__img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
.hst-split figcaption {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.86rem;
  font-style: italic;
  color: #6b7388;
  margin-top: 10px;
  line-height: 1.45;
}
.hst-split__text {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 0.94rem + 0.18vw, 1.1rem);
  line-height: 1.72;
  color: #2a3148;
}
.hst-split__text p {
  margin: 0 0 1.05em;
}
.hst-split__text p:last-child {
  margin-bottom: 0;
}
@media (max-width: 800px) {
  .hst-split {
    grid-template-columns: 1fr;
    gap: clamp(20px, 3vh, 32px);
    max-width: 620px;
  }
  .hst-split__fig {
    margin-bottom: 4px;
  }
}

/* Fact box — used for the Viking-net standout */
.fk-fact {
  margin: clamp(28px, 4vh, 44px) auto;
  max-width: 720px;
  padding: clamp(24px, 3vh, 36px) clamp(28px, 3.5vw, 44px);
  background: rgba(168, 122, 82, 0.06);
  border-left: 3px solid #a87a52;
  border-radius: 6px;
}
.fk-fact__title {
  font-family: var(--font-display, "Cormorant Garamond"), Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.25rem, 0.95rem + 0.8vw, 1.55rem);
  line-height: 1.18;
  color: #1a2540;
  margin: 0 0 0.55rem;
}
.fk-fact__text {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.98rem, 0.92rem + 0.18vw, 1.08rem);
  line-height: 1.62;
  color: #3a4258;
  margin: 0;
}

/* Stat grid — used in the cooperative section */
.fk-stat {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 28px);
  margin: clamp(36px, 4.5vh, 52px) auto clamp(16px, 2vh, 24px);
  max-width: 920px;
}
.fk-stat__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(18px, 2.5vh, 28px) clamp(8px, 1.4vw, 16px);
  border-top: 1px solid rgba(26, 37, 64, 0.16);
}
.fk-stat__number {
  font-family: var(--font-display, "Cormorant Garamond"), Georgia, serif;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(2.2rem, 1.6rem + 2.4vw, 3.6rem);
  line-height: 1;
  color: #1a2540;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.fk-stat__label {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b7388;
}
@media (max-width: 800px) {
  .fk-stat {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* Sources list */
.fk-sources {
  padding-bottom: clamp(60px, 8vh, 100px);
}
.fk-sources__list {
  list-style: none;
  padding: 0;
  margin: clamp(16px, 2vh, 24px) auto 0;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.92rem;
  line-height: 1.5;
}
.fk-sources__list li {
  padding-left: 18px;
  position: relative;
}
.fk-sources__list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: #a87a52;
  font-weight: 700;
}
.fk-sources__list a {
  color: #1a2540;
  text-decoration: none;
  border-bottom: 1px solid rgba(168, 122, 82, 0.4);
  padding-bottom: 1px;
  transition: border-color 0.18s ease, color 0.18s ease;
}
.fk-sources__list a:hover,
.fk-sources__list a:focus-visible {
  color: #a87a52;
  border-bottom-color: #a87a52;
}
