/* ===========================
   La Foa — Hakkında sayfası
   Sol sabit içindekiler + sağ makale gövdesi; "Proje Ekibi" bölümü
   akademik bir dergi kolofonu gibi ayrıca stillenir.
   pages-style.css'in :root değişkenlerini kullanır.
   =========================== */

.hk-intro {
  max-width: 1180px;
  margin: 0 auto;
  padding: 140px 32px 0;
}
.hk-intro .page-title {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 2px solid var(--border);
}

.hk-layout {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px 110px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 56px;
  align-items: start;
}

/* İçindekiler (sol, sabit) */
.hk-toc {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hk-toc-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.hk-toc a {
  font-size: 0.86rem;
  color: var(--text-sec);
  text-decoration: none;
  padding: 7px 0 7px 14px;
  border-left: 2px solid var(--border);
  transition: color .15s, border-color .15s;
}
.hk-toc a:hover { color: var(--text); }
.hk-toc a.active { color: var(--accent); border-left-color: var(--accent); font-weight: 600; }

/* Makale gövdesi */
.hk-content { min-width: 0; }

.hk-section {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: 100px;
}
.hk-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.hk-section-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
}
.hk-section-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text);
}

.hk-section .prose p {
  font-family: var(--font-serif);
  text-align: justify;
}

/* Proje Ekibi — kolofon */
.hk-team-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}
.hk-team-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 16px 20px 16px 0;
  border-bottom: 1px solid var(--border);
}
.hk-team-item:nth-child(odd) { padding-left: 0; }
.hk-team-item:nth-child(even) { padding-left: 24px; border-left: 1px solid var(--border); }
.hk-team-role {
  font-family: var(--font-sans);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent);
}
.hk-team-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.hk-loading {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 40px 0;
}

@media (max-width: 900px) {
  .hk-layout { grid-template-columns: 1fr; gap: 24px; }
  .hk-toc {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
  .hk-toc-label { display: none; }
  .hk-toc a {
    border-left: none;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 6px 14px;
  }
  .hk-toc a.active { background: var(--accent); color: #fff; border-color: var(--accent); }
  .hk-team-list { grid-template-columns: 1fr; }
  .hk-team-item:nth-child(even) { padding-left: 0; border-left: none; }
}

@media (max-width: 640px) {
  .hk-intro { padding: 120px 20px 0; }
  .hk-layout { padding: 0 20px 80px; }
}
