/* ============================================
   SHOOT PAGES
   Individual story pages (Avery, Megan, etc.)
============================================ */

.shoot-header {
  padding: 160px var(--section-padding-x) 72px;
  max-width: var(--max-width);
  margin: 0 auto;
  border-bottom: 1px solid var(--border-subtle);
}
.shoot-header-inner {
  max-width: 720px;
}
.shoot-sublabel {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-red);
  display: block;
  margin-bottom: 24px;
}
.shoot-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(48px, 7vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0 0 28px;
  color: var(--text-primary);
}
.shoot-intro {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.45;
  color: var(--text-secondary);
  margin: 0 0 36px;
  max-width: 30ch;
}
.shoot-meta {
  display: flex;
  gap: 32px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.shoot-gallery {
  max-width: 1280px;
  margin: 64px auto 0;
  padding: 0 var(--section-padding-x);
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.shoot-gallery figure {
  margin: 0;
}
.shoot-gallery img {
  width: 100%;
  height: auto;
  display: block;
}

.shoot-footer-nav {
  max-width: 1280px;
  margin: 96px auto 0;
  padding: 48px var(--section-padding-x) 80px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.shoot-footer-nav a {
  color: var(--text-secondary);
  transition: color 0.2s ease;
}
.shoot-footer-nav a:hover {
  color: var(--text-primary);
}

@media (max-width: 900px) {
  .shoot-header {
    padding: 118px var(--section-padding-x) 56px;
  }
  .shoot-gallery {
    gap: 32px;
    margin-top: 48px;
  }
  .shoot-footer-nav {
    margin-top: 72px;
    padding: 36px var(--section-padding-x) 60px;
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .shoot-header {
    padding: 108px var(--section-padding-x) 44px;
  }
  .shoot-meta {
    flex-direction: column;
    gap: 8px;
  }
  .shoot-gallery {
    gap: 18px;
    padding: 0;
  }
}

/* ============================================
   ARTICLE LAYOUT - newspaper / Sunday Times style
   for shoot pages with editorial body content
   Block-by-block: image and text side by side,
   alternating left/right for visual rhythm.
============================================ */
.shoot-article {
  max-width: 1320px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + 72px) var(--section-padding-x) 120px;
}

.article-header {
  max-width: 1100px;
  margin: 0 auto 80px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-faint);
}
.article-eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-red);
  margin-bottom: 28px;
}
.article-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(48px, 6.4vw, 92px);
  line-height: 1.04;
  letter-spacing: -0.018em;
  margin: 0 0 28px;
  color: var(--text-primary);
}
.article-standfirst {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.4;
  color: var(--text-secondary);
  margin: 0 0 32px;
  max-width: 64ch;
}
.article-meta {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* =============================================
   ARTICLE BODY - newspaper column flow.
   One continuous prose column. Images float
   inside the column with text wrapping around.
============================================= */
.article-body {
  max-width: 780px;
  margin: 0 auto;
}

/* Continuous prose - all paragraphs in the article share this style.
   Both <p> and .article-block-text > p flow together. */
.article-body p {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.8;
  color: var(--text-primary);
  margin: 0 0 22px;
}
.article-body p:first-child { margin-top: 0; }

/* Drop cap: oversized red italic on the first letter of the opening paragraph.
   Applies to the first <p> in the article body only. */
.article-body > p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: 5.4em;
  line-height: 0.85;
  float: left;
  color: var(--accent-red);
  margin: 0.08em 0.12em -0.05em 0;
  padding-right: 0.05em;
}

/* Clearfix so the article container grows around floated images */
.article-body::after {
  content: '';
  display: table;
  clear: both;
}

/* Floated images inside the prose column.
   Default width: roughly 48% of the column so text wraps beside. */
.article-inline-image {
  margin: 6px 0 20px;
  max-width: 48%;
}
.article-inline-image-left {
  float: left;
  margin-right: 30px;
}
.article-inline-image-right {
  float: right;
  margin-left: 30px;
}
.article-inline-image img {
  width: 100%;
  height: auto;
  display: block;
  cursor: zoom-in;
}

/* Full-width image: breaks out of any float context, spans full column.
   Used for hero moments that deserve the whole column. */
.article-full-image {
  clear: both;
  margin: 36px 0 36px;
  width: 100%;
}
.article-full-image img {
  width: 100%;
  height: auto;
  display: block;
  cursor: zoom-in;
}

/* Optional lead-block: forces a clear at any point in the flow.
   Use <div class="article-clear"></div> to end wrapping before the next
   paragraph, if the current image is longer than the text wrapping it. */
.article-clear {
  clear: both;
}

@media (max-width: 640px) {
  .article-body { max-width: 100%; }
  .article-body p { font-size: 17px; line-height: 1.7; margin-bottom: 18px; }
  /* On mobile, inline images become full-width stacked - no float */
  .article-inline-image,
  .article-inline-image-left,
  .article-inline-image-right {
    float: none;
    margin: 20px 0;
    max-width: 100%;
  }
  .article-full-image { margin: 24px 0; }
}

/* Editorial callout card: "related content" moment.
   Used to link out to an external piece (podcast, interview, related work). */
.article-callout {
  display: block;
  max-width: 720px;
  margin: 72px auto 88px;
  padding: 28px 32px;
  border: 1px solid var(--border-faint);
  text-decoration: none;
  transition: border-color 0.25s ease, background 0.25s ease;
  position: relative;
}
.article-callout:hover {
  border-color: var(--accent-red);
  background: rgba(204, 0, 1, 0.03);
}
.article-callout-eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-red);
  margin-bottom: 12px;
}
.article-callout-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.3;
  color: var(--text-primary);
  margin: 0 0 6px;
  padding-right: 40px;
}
.article-callout-meta {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}
.article-callout-arrow {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-red);
  font-size: 22px;
  line-height: 1;
  transition: transform 0.25s ease;
}
.article-callout:hover .article-callout-arrow {
  transform: translateY(-50%) translateX(4px);
}

@media (max-width: 640px) {
  .article-callout { padding: 22px 24px; margin: 48px auto 64px; }
  .article-callout-title { font-size: 19px; padding-right: 30px; }
  .article-callout-arrow { right: 22px; font-size: 18px; }
}

/* Optional pull quote block, full width */
.article-pullquote {
  max-width: 880px;
  margin: 96px auto;
  padding: 32px 0;
  border-top: 1px solid var(--border-faint);
  border-bottom: 1px solid var(--border-faint);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.3;
  text-align: center;
  color: var(--text-primary);
}

/* Bottom gallery: 5-col grid of remaining frames */
.article-gallery-section {
  max-width: 1320px;
  margin: 120px auto 0;
  padding-top: 64px;
  border-top: 1px solid var(--border-faint);
}
.article-gallery-eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-red);
  text-align: center;
  margin-bottom: 18px;
}
.article-gallery-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(28px, 3vw, 40px);
  text-align: center;
  margin: 0 0 56px;
  color: var(--text-primary);
}
.article-gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.article-gallery-grid figure {
  margin: 0;
  cursor: zoom-in;
  overflow: hidden;
}
.article-gallery-grid img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, opacity 0.25s ease;
}
.article-gallery-grid figure:hover img {
  transform: scale(1.03);
  opacity: 0.95;
}

@media (max-width: 900px) {
  .shoot-article { padding-top: calc(var(--nav-height) + 48px); padding-bottom: 80px; }
  .article-header { margin-bottom: 56px; padding-bottom: 32px; }
  .article-pullquote { margin: 64px 0; padding: 24px 0; }
  .article-gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .article-gallery-section { margin-top: 80px; padding-top: 48px; }
}
@media (max-width: 640px) {
  .article-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}
