/* ========== FIELD NOTES (dryeaz.sg) ========== */
/* Editorial / magazine layout — featured hero + asymmetric grid */

.fn-hero {
  padding: 130px 0 50px;
  background: #fff;
  position: relative;
}
.fn-hero::before {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red) 50%, transparent);
}
.fn-hero .container { max-width: 980px; }
.fn-hero .fn-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 22px;
}
.fn-hero .fn-kicker::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--red);
}
.fn-hero h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
  line-height: 1.05;
  margin-bottom: 22px;
  letter-spacing: -0.03em;
}
.fn-hero .fn-sub {
  font-size: 1.18rem;
  line-height: 1.55;
  max-width: 720px;
  color: var(--text-muted);
}
.fn-issue {
  margin-top: 28px;
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.fn-issue strong { color: var(--text); font-weight: 600; }

/* Featured (lead) story */
.fn-featured {
  padding: 70px 0 30px;
  background: #fff;
}
.fn-featured .container { max-width: 1180px; }
.fn-feat-card {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.fn-feat-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}
.fn-feat-img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.8s var(--ease);
}
.fn-feat-card:hover .fn-feat-img img { transform: scale(1.03); }
.fn-feat-img::after {
  content: 'Featured';
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--red);
  color: #fff;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.fn-feat-body {}
.fn-feat-meta {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}
.fn-feat-meta .dot { color: var(--text-muted); }
.fn-feat-body h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}
.fn-feat-body p {
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.fn-feat-link {
  font-weight: 600;
  color: var(--text);
  border-bottom: 2px solid var(--red);
  padding-bottom: 4px;
  font-size: 0.95rem;
}

/* Notes index — secondary stories */
.fn-list-head {
  padding: 80px 0 28px;
  background: #fff;
}
.fn-list-head .container { max-width: 1180px; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.fn-list-head h2 {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.fn-list-head h2::before {
  content: '— ';
  color: var(--red);
}
.fn-cat-list { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; }
.fn-cat-list li {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 100px;
}

.fn-grid {
  padding: 30px 0 120px;
  background: #fff;
}
.fn-grid .container { max-width: 1180px; }
.fn-grid-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px 48px;
}
.fn-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.fn-card-img {
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
}
.fn-card-img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.6s var(--ease);
}
.fn-card:hover .fn-card-img img { transform: scale(1.04); }
.fn-card-meta {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}
.fn-card-meta .dot { color: var(--text-muted); margin: 0 6px; }
.fn-card h3 {
  font-size: 1.5rem;
  line-height: 1.18;
  letter-spacing: -0.02em;
}
.fn-card p {
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--text-muted);
}
.fn-card-arrow {
  margin-top: auto;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--red);
  align-self: flex-start;
  padding-bottom: 2px;
}

/* ========== ARTICLE PAGE ========== */
.article-hero {
  padding: 130px 0 50px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.article-hero .container { max-width: 780px; }
.article-breadcrumb { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 18px; }
.article-breadcrumb a { color: var(--text-muted); border-bottom: 1px solid transparent; }
.article-breadcrumb a:hover { border-bottom-color: var(--red); }
.article-meta { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--red); margin-bottom: 18px; }
.article-meta .dot { display: inline-block; margin: 0 8px; color: var(--text-muted); }
.article-hero h1 { font-size: clamp(2rem, 4.4vw, 3.2rem); margin-bottom: 18px; }
.article-hero .lead { font-size: 1.18rem; max-width: 680px; }

.article-cover {
  max-width: 1100px;
  margin: 40px auto -20px;
  padding: 0 32px;
}
.article-cover img {
  display: block;
  max-width: 100%;
  max-height: 520px;
  width: auto;
  height: auto;
  margin: 0 auto;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 24px;
}

.prose {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 32px 100px;
  font-size: 1.08rem;
  line-height: 1.72;
  color: #2c2c30;
}
.prose > * + * { margin-top: 1.1em; }
.prose h2 { font-size: 1.6rem; margin-top: 2.2em; margin-bottom: 0.4em; letter-spacing: -0.02em; }
.prose h3 { font-size: 1.22rem; margin-top: 1.8em; margin-bottom: 0.3em; }
.prose p { color: #2c2c30; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin: 0.35em 0; }
.prose li::marker { color: var(--text-muted); }
.prose a { color: var(--accent); border-bottom: 1px solid rgba(0,113,227,0.25); }
.prose a:hover { border-bottom-color: var(--accent); }
.prose figure { margin: 2.4em -8px; }
.prose figure img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  background: var(--bg-alt);
}
.prose figcaption {
  margin-top: 12px;
  font-size: 0.88rem;
  color: var(--text-muted);
  text-align: center;
}
.prose blockquote {
  border-left: 3px solid var(--red);
  padding: 4px 0 4px 20px;
  margin: 1.6em 0;
  font-size: 1.18rem;
  color: var(--text-muted);
  font-style: italic;
}
.prose .callout {
  background: var(--bg-alt);
  border-radius: 14px;
  padding: 22px 24px;
  margin: 1.8em 0;
  font-size: 0.98rem;
  border: 1px solid var(--line);
}
.prose .callout h4 { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.6em 0; font-size: 0.95rem; }
.prose th, .prose td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--line); }
.prose th { font-weight: 600; color: var(--text); background: var(--bg-alt); }

.article-cta {
  background: var(--bg-alt);
  padding: 70px 0;
  border-top: 1px solid var(--line);
}
.article-cta .container { max-width: var(--max-narrow); text-align: center; }
.article-cta h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 14px; }
.article-cta p { color: var(--text-muted); margin-bottom: 24px; }

.related {
  padding: 80px 0;
  border-top: 1px solid var(--line);
}
.related h3 { margin-bottom: 32px; font-size: 1.3rem; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.related-card {
  display: flex;
  flex-direction: column;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border-color 0.2s, transform 0.2s var(--ease);
}
.related-card:hover { border-color: var(--text-muted); transform: translateY(-2px); }
.related-card p.tag { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.related-card h4 { font-size: 1.05rem; line-height: 1.3; letter-spacing: -0.015em; }

.btn-pill {
  display: inline-block;
  background: var(--black);
  color: #fff;
  padding: 14px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  transition: background 0.2s, transform 0.2s;
}
.btn-pill:hover { background: #000; transform: translateY(-1px); }

@media (max-width: 820px) {
  .fn-feat-card { grid-template-columns: 1fr; gap: 28px; }
  .fn-grid-inner { grid-template-columns: 1fr; gap: 44px; }
  .article-cover { padding: 0 16px; }
  .prose { padding: 50px 22px 70px; font-size: 1.02rem; }
}
