/* ============================================================
   Articles Page Styles
   ============================================================ */

/* ── HERO ──────────────────────────────────────────────────── */
.articles-hero {
  padding: 160px 0 80px;
  background: var(--bg);
  text-align: center;
}
.articles-hero .label { display: block; margin-bottom: 24px; }
.articles-hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.articles-hero__sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto;
}

/* ── ARTICLES LIST ─────────────────────────────────────────── */
.articles-list {
  padding: 60px 0 100px;
  background: var(--bg);
}
.articles-list .container {
  max-width: 760px;
}

/* ── ARTICLE ───────────────────────────────────────────────── */
.article {
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}
.article:last-of-type { border-bottom: none; }

.article__header {
  margin-bottom: 40px;
  text-align: center;
}
.article__tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(193, 113, 74, 0.08);
  padding: 5px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 14px;
}
.article__date {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}
.article__title {
  font-family: var(--f-head);
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.article__lead {
  font-family: var(--f-head);
  font-style: italic;
  font-weight: 300;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
}

.article__body {
  max-width: 660px;
  margin: 0 auto;
}
.article__body p {
  font-family: var(--f-body);
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 22px;
}
.article__body p em { font-style: italic; color: var(--accent); }
.article__body p strong { font-weight: 500; color: var(--text); }
.article__list {
  margin: 24px 0 28px;
  padding-left: 24px;
  list-style: none;
  counter-reset: article-list;
}
.article__list li {
  counter-increment: article-list;
  position: relative;
  padding-left: 28px;
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
}
.article__list li::before {
  content: counter(article-list, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--f-head);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--accent);
  font-weight: 400;
}
.article__list li em { font-style: italic; color: var(--muted); }
.article__list li strong { font-weight: 500; }

/* ── COMMENTS ──────────────────────────────────────────────── */
.comments {
  margin-top: 56px;
  padding: 40px 36px;
  background: var(--warm);
  border-radius: var(--r-md);
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}
.comments__title {
  font-family: var(--f-head);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--text);
}
.comments__note {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 24px;
}
.comments__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.comments__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.comments__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.comments__field span {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
}
.comments__field span em {
  font-style: normal;
  color: var(--muted);
  font-weight: 400;
}
.comments__field input,
.comments__field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: var(--r-sm);
  font-family: var(--f-body);
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}
.comments__field input:focus,
.comments__field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(193, 113, 74, 0.12);
}
.comments__field textarea { min-height: 110px; font-family: var(--f-body); line-height: 1.6; }
.comments__check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--muted);
  cursor: pointer;
  line-height: 1.5;
}
.comments__check input[type="checkbox"] {
  margin-top: 4px;
  accent-color: var(--accent);
  flex-shrink: 0;
}
.comments__form .btn {
  align-self: flex-start;
  margin-top: 4px;
}
.comments__privacy {
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
}
.comments__success {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border-radius: var(--r-md);
  border: 1.5px solid var(--accent);
}
.comments__success h3 {
  font-family: var(--f-head);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
}
.comments__success p { font-size: 0.95rem; color: var(--muted); }

/* ── ACTIVE NAV LINK ───────────────────────────────────────── */
.nav__links a.active {
  color: var(--accent);
  opacity: 1;
}

/* ── HOMEPAGE ARTICLES TEASER ──────────────────────────────── */
.articles-teaser-section {
  padding: 100px 0;
  background: var(--bg);
}
.articles-teaser-section .container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: end;
}
.articles-teaser__left .label { display: block; margin-bottom: 20px; }
.articles-teaser__left h2 { margin-bottom: 16px; }
.articles-teaser__left p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
  font-size: 1rem;
  max-width: 380px;
}
.articles-teaser__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}
.articles-teaser__item {
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 24px;
  transition: padding-left 0.25s;
}
.articles-teaser__item:hover { padding-left: 8px; }
.articles-teaser__item a {
  display: contents;
  color: inherit;
}
.articles-teaser__num {
  font-family: var(--f-head);
  font-style: italic;
  font-size: 1rem;
  color: var(--muted);
  flex-shrink: 0;
  width: 32px;
}
.articles-teaser__title {
  font-family: var(--f-head);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
  flex: 1;
  line-height: 1.4;
}
.articles-teaser__tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  flex-shrink: 0;
}
.articles-teaser__arrow {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--muted);
  flex-shrink: 0;
  transition: all 0.25s;
}
.articles-teaser__item:hover .articles-teaser__arrow {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .comments { padding: 32px 24px; }
  .comments__row { grid-template-columns: 1fr; }
  .articles-teaser-section .container { grid-template-columns: 1fr; gap: 40px; }
  .articles-teaser__tag { display: none; }
}
