/* ════════════════════════════════════
   Sisäsivut — yhteinen pohja
   ════════════════════════════════════ */

.inner-page { margin-top: 60px; }

.inner-hero { background: var(--blue); padding: 4rem 0 3rem; }
.inner-hero-eyebrow {
  font-size: .68rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: #f0c060;
  display: flex; align-items: center; gap: .6rem; margin-bottom: .8rem;
}
.inner-hero-eyebrow::before { content:''; display:block; width:20px; height:2px; background:#c9943a; }
.inner-hero-title {
  font-family:'Playfair Display',serif;
  font-size:clamp(1.8rem,4vw,2.8rem); font-weight:900;
  color:#fff; line-height:1.1; margin-bottom:.6rem;
}
.inner-hero-title em { font-style:italic; color:#f0c060; }
.inner-hero-desc { font-size:1rem; color:rgba(255,255,255,.6); max-width:560px; line-height:1.7; }

.inner-content { padding:3.5rem 0 5rem; }
.inner-content h2 {
  font-family:'Playfair Display',serif; font-size:1.5rem; font-weight:700;
  color:var(--text-dark); margin:2.2rem 0 .7rem;
}
.inner-content h2:first-child { margin-top:0; }
.inner-content h3 {
  font-family:'Playfair Display',serif; font-size:1.1rem; font-weight:700;
  color:var(--text-dark); margin:1.6rem 0 .5rem;
}
.inner-content p { color:var(--text-mid); line-height:1.8; margin-bottom:1rem; font-size:.97rem; }
.inner-content ul,.inner-content ol { margin:.6rem 0 1rem 1.4rem; }
.inner-content li { color:var(--text-mid); line-height:1.7; margin-bottom:.35rem; font-size:.97rem; }
.inner-content a { color:var(--blue-light); text-decoration:underline; text-underline-offset:2px; }
.inner-content a:hover { color:var(--blue); }
.inner-content strong { color:var(--text-dark); font-weight:600; }

.info-box {
  background:var(--blue-pale); border-left:3px solid var(--blue-light);
  padding:1.2rem 1.5rem; border-radius:0 5px 5px 0; margin:1.5rem 0;
}
.info-box p { font-size:.88rem; margin-bottom:.4rem; }
.info-box p:last-child { margin-bottom:0; }

.highlight-box {
  background:var(--gold-pale); border-left:3px solid var(--gold);
  padding:1.2rem 1.5rem; border-radius:0 5px 5px 0; margin:1.5rem 0;
}
.highlight-box p { font-size:.9rem; margin-bottom:0; }

.content-divider { border:none; border-top:1px solid var(--border); margin:2rem 0; }

.listing-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.2rem; margin-top:2rem; }
.listing-grid-2 { grid-template-columns:repeat(2,1fr); }

@media(max-width:768px){
  .inner-hero{padding:3rem 0 2.2rem}
  .inner-content{padding:2.5rem 0 3.5rem}
  .listing-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:480px){
  .listing-grid{grid-template-columns:1fr}
  .listing-grid-2{grid-template-columns:1fr}
}

/* ── Article hero with image ── */
.article-hero {
  margin-top: 60px;
  min-height: 420px;
  position: relative;
  display: flex; align-items: flex-end;
}
.article-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,20,60,.88) 0%, rgba(0,20,60,.25) 55%, rgba(0,10,30,.15) 100%);
}
.article-hero-content {
  position: relative; z-index: 2;
  padding-top: 3rem; padding-bottom: 3rem;
}
.article-hero-content .inner-hero-title { font-size: clamp(1.8rem,4vw,3rem); }
.article-hero-content .breadcrumb a { color: rgba(255,255,255,.65); }
.article-hero-content .breadcrumb span { color: rgba(255,255,255,.9); }
.article-hero-content .breadcrumb-sep { color: rgba(255,255,255,.4); }
.article-hero-content .inner-hero-eyebrow { color: #f0c060; }
.article-hero-content .inner-hero-title { color: #fff; }
.article-hero-content .inner-hero-title em { color: #f0c060; }
.article-hero-content .inner-hero-desc { color: rgba(255,255,255,.7); }

/* ── Related cards row ── */
.related-section { background: var(--blue-pale); padding: 3rem 0; border-top: 3px solid var(--gold); }
.related-section h2 { font-family:'Playfair Display',serif; font-size:1.3rem; font-weight:700; color:var(--text-dark); margin-bottom:1.2rem; }
.related-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1rem; }
.related-grid .card { text-decoration:none; }
.related-grid .card-img { height:140px; background-size:cover; background-position:center; }

/* ── Info table ── */
.info-table { width:100%; border-collapse:collapse; margin:1rem 0 1.5rem; font-size:.9rem; }
.info-table tr { border-bottom:1px solid var(--border); }
.info-table tr:last-child { border-bottom:none; }
.info-table th { text-align:left; padding:.6rem .8rem .6rem 0; color:var(--text-muted); font-weight:600; width:38%; vertical-align:top; }
.info-table td { padding:.6rem 0; color:var(--text-mid); }

@media(max-width:768px) {
  .article-hero { min-height:320px; }
  .related-grid { grid-template-columns:1fr 1fr; }
}
@media(max-width:480px) {
  .related-grid { grid-template-columns:1fr; }
}
