/* =========================================================
   ADHawk — field-notes.css
   Styles for the Field Notes listing page and post layout.
   Relies on tokens defined in custom.css.
   ========================================================= */

/* ---------- Listing Page ---------- */

.adh-field-notes__inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
}

.adh-field-notes__title {
  font-size: var(--size-step-5);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 .4rem;
}

.adh-field-notes__lede {
  color: var(--ink-weak);
  font-size: var(--size-step-2);
  margin: 0 0 2.5rem;
}

.adh-field-notes__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2rem;
}

.adh-fn-entry {
  border-top: 1px solid var(--border);
  padding-top: 1.75rem;
}

.adh-fn-entry__title {
  font-size: var(--size-step-4);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 .4rem;
}

.adh-fn-entry__title a {
  color: var(--white);
  text-decoration: none;
  transition: color .2s ease;
}

.adh-fn-entry__title a:hover {
  color: var(--hawk-shield-blue);
  text-decoration: none;
}

.adh-fn-entry__meta {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  margin: 0 0 .65rem;
  letter-spacing: .02em;
}

.adh-fn-entry__excerpt {
  color: var(--ink-weak);
  font-size: var(--size-step-2);
  line-height: 1.65;
  margin: 0;
  max-width: 65ch;
}

/* ---------- Post Layout ---------- */

.adh-post {
  padding: 2.5rem 1.25rem 4rem;
}

.adh-post__inner {
  max-width: 680px;
  margin: 0 auto;
}

.adh-post__back {
  display: inline-block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--hawk-shield-blue);
  text-decoration: none;
  letter-spacing: .02em;
  transition: color .2s ease;
}

.adh-post__back:hover {
  color: var(--electric-blue);
  text-decoration: none;
}

.adh-post__header {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.adh-post__title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin: .65rem 0 .75rem;
}

.adh-post__meta {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  margin: 0;
  letter-spacing: .02em;
}

/* Post body typography */
.adh-post__body {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ink-weak);
}

.adh-post__body h2 {
  font-size: var(--size-step-4);
  font-weight: 700;
  color: var(--white);
  margin: 2.25rem 0 .75rem;
}

.adh-post__body h3 {
  font-size: var(--size-step-3);
  font-weight: 600;
  color: var(--white);
  margin: 1.75rem 0 .5rem;
}

.adh-post__body p {
  margin: 0 0 1.25rem;
}

.adh-post__body a {
  color: var(--hawk-shield-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.adh-post__body a:hover {
  color: var(--electric-blue);
}

.adh-post__body hr {
  margin: 2.25rem 0;
}

.adh-post__body em {
  color: var(--white);
}

/* Post footer back link */
.adh-post__footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
