/**
 * Event Coverage page (post ID 829, slug "event-coverage").
 *
 * REDESIGNED per the client's own mockup (a full HTML file, not just
 * screenshots this time) -- same situation Podcast/Vodcast & Voice and
 * Drone Cinematography were in (net new content, no production
 * baseline to measure against), in that same dark visual language and
 * type scale. The mockup's own accent (#e8f000, a lime-yellow) was
 * swapped for this site's existing --color-primary token, same "match
 * our own accent color, not the mockup's literal value" call made on
 * every prior net-new-design page -- but per the client's explicit
 * follow-up instruction, the mockup's own Montserrat/uppercase heading
 * treatment (and its "videos lead, stills support" Gallery pattern, and
 * yellow-bordered cards) became this project's new SHARED template for
 * these 4 pages, not just this one -- see MIGRATION.md. Those shared
 * pieces (eyebrow, card-grid, cta-block, video-reel, marquee) all moved
 * to shared-blocks.css once Drone Cinematography's own redesign reused
 * them too.
 *
 * This file holds only what's still genuinely page-specific: this
 * page's own section spacing (below). media-split's own CSS (text+video
 * two-column section) moved to shared-blocks.css once Drone
 * Cinematography reused it too -- this project's own "promote on 2nd
 * use" rule, see MIGRATION.md. Bare-element rules scoped, same reason
 * as everywhere else in this theme (see footer.css).
 */

/* .cwf-media-split/.cwf-event-gallery/.cwf-video-reel/.cwf-marquee's
   own rules (base + responsive) live in shared-blocks.css now,
   alongside their base rules -- not duplicated here. */

/* ---- Section-divider padding symmetry ----
   Every content section on this page is solid black, so a
   template-parts/section-divider.php call now sits between every pair
   (see page-event-coverage.php and shared-blocks.css's
   .cwf-section-divider). That component has no padding of its own by
   design -- these overrides bring each pair's facing padding to a
   matching 40px so the divider sits vertically centered in the gap,
   instead of each component's own default (which was never chosen with
   a neighboring divider in mind). ID selectors target one specific
   instance where a class (.cwf-card-grid) is reused elsewhere on this
   same page with a different needed value; bare-class overrides are
   safe for step-list/cta-block since each appears only once here and
   this file loads only on this page. See MIGRATION.md. */
#what-we-cover.cwf-card-grid {
	padding-bottom: 40px;
}
#see-our-work.cwf-media-split {
	padding-top: 40px;
	padding-bottom: 40px;
}
#how-we-cover-it.cwf-card-grid {
	padding-top: 40px;
	padding-bottom: 40px;
}
.cwf-step-list {
	padding-top: 40px;
	padding-bottom: 40px;
}
#gallery.cwf-event-gallery {
	padding-top: 40px;
	/* bottom left at its default 64px -- no divider follows this section
	   (removed per the client's request: the CTA's own button already
	   reads as the break, see page-event-coverage.php) */
}
