/* ============================================
   NEVER NORMAL — Ghost Theme
   Light theme, editorial layout
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;600&display=swap');

@font-face {
  font-family: 'TT Ramillas';
  src: url('../fonts/TT Ramillas Trial Variable Roman.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* Prevent browser from synthesizing bold/italic */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   TYPE SYSTEM
   Display / Headlines : TT Ramillas, weight 200
   UI / Labels / Nav   : Work Sans, weight 400
   Body copy           : Work Sans, weight 300
   ============================================ */

:root {
  --white:       #ffffff;
  --off-white:   #f5f4f0;
  --light-gray:  #e8e6e0;
  --mid-gray:    #c0bdb5;
  --text-gray:   #888880;
  --dark-gray:   #333330;
  --near-black:  #1a1a18;
  --black:       #0a0a08;

  --font-serif:  'TT Ramillas', Georgia, serif;
  --font-sans:   'Work Sans', 'Helvetica Neue', Arial, sans-serif;

  --max-width:   1280px;
  --col-width:   680px;
  --gutter:      40px;
  --header-h:    52px;
}

html {
  background: var(--white);
  color: var(--near-black);
  font-family: var(--font-sans);
  font-size: 16px;
}

body {
  background: var(--white);
  min-height: 100vh;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a   { color: inherit; text-decoration: none; }

/* ============================================
   HEADER
   ============================================ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
  height: var(--header-h);
}

.site-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

/* Nav — left */
.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav .nav {
  display: flex;
  gap: 28px;
  list-style: none;
}

.site-nav .nav li a {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark-gray);
  transition: color 0.2s ease;
}

.site-nav .nav li a:hover,
.site-nav .nav li.nav-current a {
  color: var(--black);
}

/* Logo — center */
.site-logo {
  text-align: center;
  justify-self: center;
}

.site-logo__img {
  height: 36px;
  width: auto;
  display: inline-block;
}

.site-logo__text {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 200;
  letter-spacing: -0.02em;
  color: var(--black);
}

/* Subscribe — right */
.site-header__right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
}

.site-nav__cta {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  border: 1px solid var(--near-black);
  padding: 6px 14px;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-nav__cta:hover {
  background: var(--black);
  color: var(--white);
}

/* Mobile subscribe in nav — hidden on desktop */
.site-nav__mobile-cta {
  display: none;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 32px;
  height: 32px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--near-black);
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============================================
   SITE MAIN
   ============================================ */

.site-main {
  padding-top: var(--header-h);
}

/* ============================================
   HERO — full bleed, text overlaid bottom
   ============================================ */

.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 85vh;
  overflow: hidden;
  background: var(--near-black);
  display: block;
  margin-top: calc(-1 * var(--header-h));
}

.hero__image {
  position: absolute;
  inset: 0;
}

.hero__image img {
  opacity: 0.75;
  transition: opacity 0.5s ease;
}

.hero:hover .hero__image img { opacity: 0.85; }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.90) 0%,
    rgba(0,0,0,0.3) 50%,
    transparent 100%
  );
}

.hero__content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0 var(--gutter) 40px;
  max-width: 780px;
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.hero__tag {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.hero__date {
  font-size: 9px;
  letter-spacing: 0.10em;
  color: rgba(255,255,255,0.5);
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 200;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.hero__excerpt {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin-bottom: 16px;
}

.hero__read {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease, color 0.2s ease;
}

.hero:hover .hero__read {
  gap: 10px;
  color: var(--white);
}

/* ============================================
   NEWSLETTER STRIP (between hero and grid)
   ============================================ */

.newsletter-strip {
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
}

.newsletter-strip__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 28px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.newsletter-strip__text h3 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--near-black);
  margin-bottom: 4px;
}

.newsletter-strip__text p {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-gray);
}

.newsletter-strip__form {
  display: flex;
  flex-shrink: 0;
}

.newsletter-strip__form input {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-right: none;
  color: var(--near-black);
  padding: 12px 20px;
  font-size: 13px;
  font-family: var(--font-sans);
  width: 280px;
  outline: none;
  transition: border-color 0.2s ease;
}

.newsletter-strip__form input::placeholder {
  color: var(--mid-gray);
}

.newsletter-strip__form input:focus {
  border-color: var(--dark-gray);
}

.newsletter-strip__form button {
  background: var(--near-black);
  color: var(--white);
  border: 1px solid var(--near-black);
  padding: 12px 22px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: background 0.2s ease;
}

.newsletter-strip__form button:hover {
  background: var(--black);
}

/* ============================================
   SECTION DIVIDER TEXT (italic script line)
   ============================================ */

.section-divider {
  text-align: center;
  padding: 32px var(--gutter) 20px;
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 200;
  color: var(--mid-gray);
  letter-spacing: 0.06em;
}

/* ============================================
   POST GRID — cards with overlaid text
   ============================================ */

.post-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.post-card {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--near-black);
  cursor: pointer;
}

.post-card__image {
  position: absolute;
  inset: 0;
}

.post-card__image img {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.4s ease;
  opacity: 0.8;
}

.post-card:hover .post-card__image img {
  transform: scale(1.04);
  opacity: 0.9;
}

.post-card__no-image {
  position: absolute;
  inset: 0;
  background: var(--dark-gray);
}

.post-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.2) 55%,
    transparent 100%
  );
}

.post-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 28px 28px;
}

.post-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.post-card__tag {
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.post-card__date {
  font-size: 8px;
  letter-spacing: 0.10em;
  color: rgba(255,255,255,0.45);
}

.post-card__title {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 200;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.025em;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

.post-card__excerpt {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 12px;
}

.post-card__read {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease, color 0.2s ease;
}

.post-card:hover .post-card__read {
  gap: 10px;
  color: var(--white);
}

/* ============================================
   FOOTER NEWSLETTER
   ============================================ */

.footer-newsletter {
  padding: 80px var(--gutter) 60px;
  text-align: center;
}

.footer-newsletter__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 200;
  letter-spacing: -0.03em;
  color: var(--near-black);
  margin-bottom: 28px;
}

.footer-newsletter__form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
}

.footer-newsletter__form input {
  flex: 1;
  border: 1px solid var(--mid-gray);
  border-right: none;
  padding: 12px 18px;
  font-size: 13px;
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--near-black);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s ease;
}

.footer-newsletter__form input::placeholder {
  color: var(--mid-gray);
}

.footer-newsletter__form input:focus {
  border-color: var(--near-black);
}

.footer-newsletter__form button {
  background: var(--near-black);
  color: var(--white);
  border: 1px solid var(--near-black);
  padding: 12px 24px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: background 0.2s ease;
}

.footer-newsletter__form button:hover {
  background: var(--black);
  border-color: var(--black);
}

/* ============================================
   SITE FOOTER
   ============================================ */

.site-footer {
  padding: 40px var(--gutter) 32px;
  text-align: center;
}

.site-footer__logo {
  display: inline-block;
  margin-bottom: 16px;
}

.site-footer__logo img {
  height: auto;
  width: 255px;
  display: inline-block;
}

.site-footer__logo-text {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 200;
  letter-spacing: -0.02em;
  color: var(--text-gray);
}

.site-footer__copy {
  font-size: 10px;
  font-weight: 300;
  color: var(--near-black);
  letter-spacing: 0.08em;
}

/* ============================================
   PAGINATION
   ============================================ */

.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px var(--gutter);
  border-top: 1px solid var(--light-gray);
}

.pagination__link {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-gray);
  transition: color 0.2s ease;
}

.pagination__link:hover { color: var(--near-black); }

.pagination__info {
  font-size: 10px;
  color: var(--mid-gray);
  letter-spacing: 0.08em;
}

/* ============================================
   ARTICLE HERO — flush under nav
   ============================================ */

.article-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 85vh;
  overflow: hidden;
  background: var(--near-black);
  margin-top: calc(-1 * var(--header-h));
}

.article-hero__image {
  position: absolute;
  inset: 0;
}

.article-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  display: block;
}

.article-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.3) 55%,
    transparent 100%
  );
}

.article-hero__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 80px 0 40px;
}

.article-hero__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding-left: var(--gutter);
}

.article-hero__tag {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 3px 8px;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.article-hero__tag:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}

.article-hero__date {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.10em;
  color: rgba(255,255,255,0.5);
}

.article-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 200;
  line-height: 1.06;
  color: var(--white);
  letter-spacing: -0.03em;
  max-width: 760px;
  padding-left: var(--gutter);
  margin-bottom: 14px;
}

.article-hero__excerpt {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  padding-left: var(--gutter);
  margin-bottom: 16px;
}

.article-hero__read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  padding-left: var(--gutter);
}

/* ============================================
   ARTICLE CONTENT
   ============================================ */

.article-content {
  max-width: var(--col-width);
  margin: 0 auto;
  padding: 56px var(--gutter) 80px;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.78;
  color: var(--near-black);
}

.article-content p,
.gh-content p {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.78;
  color: var(--near-black);
  margin-bottom: 24px;
  letter-spacing: 0.005em;
}

.article-content strong,
.gh-content strong {
  font-family: var(--font-sans);
  font-weight: 600;
}

.article-content em,
.gh-content em {
  font-family: var(--font-sans);
  font-weight: 300;
}

.article-content h2,
.gh-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 200;
  color: var(--near-black);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 56px 0 20px;
  /* Wider than body column */
  max-width: 800px;
}

.article-content h3,
.gh-content h3 {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 200;
  color: var(--near-black);
  letter-spacing: -0.02em;
  margin: 40px 0 16px;
}

.article-content ul,
.article-content ol,
.gh-content ul,
.gh-content ol {
  padding-left: 24px;
  margin-bottom: 24px;
}

.article-content li,
.gh-content li {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.78;
  color: var(--near-black);
  margin-bottom: 6px;
}

.article-content blockquote,
.gh-content blockquote {
  border-left: 2px solid var(--mid-gray);
  padding: 4px 0 4px 24px;
  margin: 36px 0;
}

.article-content blockquote p,
.gh-content blockquote p {
  font-size: 18px;
  color: var(--dark-gray);
}

.article-content a,
.gh-content a {
  color: var(--near-black);
  border-bottom: 1px solid var(--mid-gray);
  transition: border-color 0.2s ease;
}

.article-content a:hover,
.gh-content a:hover {
  border-color: var(--near-black);
}

.article-content figure,
.gh-content figure {
  margin: 40px 0;
}

.article-content figcaption,
.gh-content figcaption {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--text-gray);
  margin-top: 10px;
  text-align: center;
}

/* Koenig image widths */
.kg-image-card { margin: 40px 0; }
.kg-image-card img { width: 100%; height: auto; display: block; }

.kg-width-wide {
  width: 85vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 40px;
  margin-bottom: 40px;
}

.kg-width-full {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 40px;
  margin-bottom: 40px;
}

.kg-width-full img,
.kg-width-wide img {
  width: 100%;
  height: auto;
  display: block;
}

.kg-gallery-container {
  display: flex;
  flex-direction: column;
  margin: 40px 0;
}

.kg-gallery-row {
  display: flex;
  gap: 4px;
  margin-bottom: 4px;
}

.kg-gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Article end divider */
.article-divider {
  text-align: center;
  padding: 20px 0 60px;
  max-width: var(--col-width);
  margin: 0 auto;
}

.article-divider__img {
  display: inline-block;
  width: auto;
  height: auto;
}

/* Tag page */
.tag-header {
  padding: calc(var(--header-h) + 56px) var(--gutter) 48px;
  border-bottom: 1px solid var(--light-gray);
  max-width: var(--max-width);
  margin: 0 auto;
}

.tag-header__label {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-gray);
  margin-bottom: 16px;
}

.tag-header__name {
  font-family: var(--font-serif);
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 200;
  color: #1a1a18 !important;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}

.tag-header__description {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--text-gray);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.tag-header__count {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-gray);
}

/* Error page */
.error-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-h) + 60px) var(--gutter) 60px;
}

.error-page__code {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-gray);
  margin-bottom: 16px;
}

.error-page__message {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 200;
  color: var(--near-black);
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.error-page__link {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-gray);
  border-bottom: 1px solid var(--mid-gray);
  padding-bottom: 2px;
  transition: color 0.2s ease;
}

.error-page__link:hover { color: var(--near-black); }

/* ============================================
   MOBILE
   ============================================ */

@media (max-width: 768px) {
  :root {
    --gutter: 18px;
    --header-h: 48px;
  }

  /* ---- HEADER ---- */
  .site-header__inner {
    grid-template-columns: auto 1fr auto;
    padding: 0 var(--gutter);
  }

  .site-logo { justify-self: center; }

  .nav-toggle { display: flex; }

  .site-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--light-gray);
    flex-direction: column;
    padding: 20px var(--gutter) 28px;
    z-index: 99;
  }

  .site-nav.is-open { display: flex; }

  .site-nav .nav {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .site-nav .nav li {
    border-bottom: 1px solid var(--light-gray);
  }

  .site-nav .nav li:last-child {
    border-bottom: none;
  }

  .site-nav .nav li a {
    display: block;
    padding: 14px 0;
    font-size: 12px;
    text-align: center;
  }

  /* Hide subscribe button from header on mobile */
  .site-header__right {
    display: none;
  }

  /* Show subscribe inside nav dropdown */
  .site-nav__mobile-cta {
    display: block;
    margin-top: 16px;
    width: 100%;
  }

  .site-nav__mobile-cta .site-nav__cta {
    display: block;
    text-align: center;
    padding: 12px !important;
    width: 100%;
  }

  /* ---- HERO ---- */
  .hero {
    aspect-ratio: 3 / 4;
    max-height: 90vh;
  }

  .hero__content {
    padding: 0 var(--gutter) 28px;
  }

  .hero__title {
    font-size: clamp(24px, 8vw, 38px);
  }

  .hero__excerpt { display: none; }

  /* ---- NEWSLETTER STRIP ---- */
  .newsletter-strip__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px var(--gutter);
  }

  .newsletter-strip__text h3 { font-size: 13px; }
  .newsletter-strip__text p  { font-size: 12px; }

  .newsletter-strip__form {
    width: 100%;
  }

  .newsletter-strip__form input {
    flex: 1;
    width: auto;
    font-size: 13px;
    padding: 11px 14px;
  }

  .newsletter-strip__form button {
    font-size: 10px;
    padding: 11px 16px;
  }

  /* ---- SECTION DIVIDER ---- */
  .section-divider {
    padding: 48px var(--gutter) 32px;
  }

  .section-divider__img {
    max-width: 90vw;
  }

  /* ---- POST GRID ---- */
  .post-grid {
    grid-template-columns: 1fr;
  }

  .post-card {
    aspect-ratio: 3 / 4;
  }

  .post-card__title {
    font-size: clamp(22px, 6vw, 32px);
  }

  /* ---- FOOTER NEWSLETTER ---- */
  .footer-newsletter {
    padding: 52px var(--gutter) 40px;
  }

  .footer-newsletter__title {
    font-size: clamp(24px, 7vw, 36px);
    margin-bottom: 20px;
  }

  .footer-newsletter__form {
    flex-direction: column;
    max-width: 100%;
    gap: 8px;
  }

  .footer-newsletter__form input {
    border-right: 1px solid var(--mid-gray);
    width: 100%;
    font-size: 14px;
  }

  .footer-newsletter__form button {
    width: 100%;
    padding: 14px;
    font-size: 11px;
  }

  /* ---- SITE FOOTER ---- */
  .site-footer {
    padding: 28px var(--gutter) 24px;
  }

  .site-footer__logo-img {
    max-width: 200px;
  }

  /* ---- ARTICLE HERO ---- */
  .article-hero {
    aspect-ratio: 3 / 4;
    max-height: 90vh;
  }

  .article-hero__content {
    padding: 60px 0 28px;
  }

  .article-hero__title {
    font-size: clamp(24px, 7vw, 38px);
    padding-left: var(--gutter);
  }

  .article-hero__excerpt {
    display: none;
  }

  .article-hero__meta {
    padding-left: var(--gutter);
  }

  /* ---- ARTICLE CONTENT ---- */
  .article-content {
    padding: 36px var(--gutter) 56px;
  }

  .article-content p,
  .gh-content p {
    font-size: 15px;
    line-height: 1.74;
  }

  .article-content h2,
  .gh-content h2 {
    font-size: clamp(22px, 6vw, 32px);
  }

  .article-content h3,
  .gh-content h3 {
    font-size: clamp(18px, 5vw, 24px);
  }

  /* ---- TAG PAGE ---- */
  .tag-header {
    padding: calc(var(--header-h) + 28px) var(--gutter) 28px;
  }

  .tag-header__name {
    font-size: clamp(28px, 8vw, 44px);
  }

  /* ---- PAGINATION ---- */
  .pagination {
    padding: 28px var(--gutter);
  }
}

/* ============================================
   SECTION DIVIDER IMAGE
   ============================================ */

.section-divider {
  text-align: center;
  padding: 100px var(--gutter) 40px;
  padding-bottom: 100px;
}

.section-divider__img {
  display: inline-block;
  max-width: 750px;
  width: 100%;
}

/* ============================================
   FOOTER LOGO IMAGE
   ============================================ */

.site-footer__logo-img {
  display: inline-block;
  max-width: 255px;
  width: 100%;
  margin-bottom: 14px;
}

/* ============================================
   SUBSCRIBE FORM FEEDBACK
   ============================================ */

.form-success {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--near-black);
  letter-spacing: 0.01em;
  padding: 12px 0;
  text-align: center;
}

/* Success in the newsletter strip (inline, left-aligned) */
.newsletter-strip .form-success {
  text-align: left;
  font-size: 14px;
}

.form-error {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  color: #c0392b;
  letter-spacing: 0.04em;
  margin-top: 8px;
  text-align: center;
}

.newsletter-strip .form-error {
  text-align: left;
}
