/* =========================================================
   site-2026.css
   TEFF 2026 homepage styles (cleaned + consolidated)
   ========================================================= */

/* =========================================================
   Base + Layout
   ========================================================= */

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #e8dfcc; /* parchment */
  color: #111;
}

/* Sticky footer layout */
.page2026 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main2026 {
  flex: 1;
}

/* Site-wide content wrapper */
.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 18px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

#top { scroll-margin-top: 10px; }

/* =========================================================
   Page Tagline
   ========================================================= */

.tagline2026 {
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-align: center;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0.03em;
  margin: 0px auto 16px;
  max-width: 70ch;
  color: #333;
}

/* =========================================================
   Announcement lane (home)
   - Full-bleed strip between header and hero
   - Text-only announcements (BodyHtml)
   - Desktop: single line
   - Small screens: allow wrap
   ========================================================= */

.announceLane2026 {
  /* Full-bleed while living inside .wrap */
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;

  min-height: 56px;
  padding: 10px 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  /* keep the parchment background; future-proof for alternate color */
  background: transparent;
}

.announceLane2026 .announce2026-slider {
  width: 100%;
  max-width: none;
  margin: 0;
}

.announceLane2026 .announce2026-viewport {
  width: 100%;
}

.announceLane2026 .announce2026 {
  width: 100%;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.announceLane2026 .announce2026-body {
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-align: center;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0.03em;
  color: #333;

  /* Contract: desktop is one line */
  white-space: nowrap;
}

.announceLane2026 .announce2026-body p {
  margin: 0;
}

@media (max-width: 640px) {
  .announceLane2026 {
    padding: 10px 14px;
  }

  /* Allow wrap on small phones */
  .announceLane2026 .announce2026-body {
    white-space: normal;
  }
}

/* =========================================================
   Hero
   ========================================================= */

.hero2026 {
  margin: 0 0 22px;

  /* Full-bleed while living inside .wrap */
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;

  height: clamp(260px, 46vh, 520px);
  overflow: hidden;
}

.hero2026-bg {
  position: absolute;
  inset: 0;
  background-image: url("/images/2025-WEB_Block_10rrs.png");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Subtle darkening near bottom for contrast */
.hero2026::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(0,0,0,0.00),
    rgba(0,0,0,0.18)
  );
  pointer-events: none; /* do not block clicks */
  z-index: 1;
}

/* =========================================================
   Announcements (2026)
   ========================================================= */

.announce2026-stack {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none; /* only the cards clickable, not the whole stack */
}

.announce2026 {
  pointer-events: auto;
  width: min(560px, 100%);
  padding: 12px 42px 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.60); /* opacity of announcement is the 4th parameter. Lower number is more transparent */
  color: #111;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  border: 1px solid rgba(0,0,0,0.10);
  position: relative;
}

.announce2026-title {
  font-weight: 700;
  margin: 0 0 6px;
}

.announce2026-body {
  font-size: 15px;
  line-height: 1.35;
}

.announce2026-body p {
  margin: 0 0 8px;
}

.announce2026-link {
  margin-top: 6px;
}

.announce2026-link a {
  text-decoration: underline;
}

.announce2026-close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: #333;
}

.announce2026-slider {
  position: relative;
}

.announce2026-viewport {
  overflow: hidden;
}

.announce2026-track {
  display: flex;
  width: 100%;
  transform: translateX(0);
  transition: transform 450ms ease;
  will-change: transform;
}

.announce2026-slide {
  flex: 0 0 100%;
  min-width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  .announce2026-track {
    transition: none;
  }
}

@keyframes announceExplodeOut {
  0%   { opacity: 1; transform: scale(1) rotate(0deg); filter: blur(0px); }
  70%  { opacity: 0.6; transform: scale(1.04) rotate(0.5deg); filter: blur(0.3px); }
  100% { opacity: 0; transform: scale(0.92) rotate(-1deg); filter: blur(1.2px); }
}

.announce2026.fx-explode {
  animation: announceExplodeOut 260ms ease-out forwards;
}

.announce2026.fx-fade {
  transition: opacity 220ms ease, transform 220ms ease;
  opacity: 0;
  transform: translateY(-6px);
}

.announce2026.fx-slide {
  transition: opacity 200ms ease, transform 200ms ease, max-height 220ms ease, margin 220ms ease, padding 220ms ease;
  opacity: 0;
  transform: translateY(-6px);
  max-height: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
}

/* Allow announcement close effects to apply to the entire slider box */

.announce2026-slider.fx-explode {
  animation: announceExplodeOut 260ms ease-out forwards;
}

.announce2026-slider.fx-fade {
  transition: opacity 220ms ease, transform 220ms ease;
  opacity: 0;
  transform: translateY(-6px);
}

.announce2026-slider.fx-slide {
  transition: opacity 200ms ease, transform 200ms ease, max-height 220ms ease, margin 220ms ease, padding 220ms ease;
  opacity: 0;
  transform: translateY(-6px);
  max-height: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
}

/* Keep announcements compact on very short landscape screens */
@media (max-height: 430px) and (orientation: landscape) {
  .announce2026 {
    padding: 10px 38px 10px 12px;
  }
  .announce2026-body {
    font-size: 14px;
  }
}

/* =========================================================
   Film of the Month (Hero overlay)
   ========================================================= */

.fotmOverlay2026 {
  position: absolute;
  left: 22px;
  bottom: 22px;
  max-width: 560px;
  z-index: 2;

  padding: 18px 18px 16px;
  border-radius: 18px;
  /* background: rgba(18, 18, 18, 0.78); */
  background: rgba(18, 18, 18, 0.40); /* The 4th parameter controls the opacity of the black box around FOTM */
  color: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,0.28);
}

.fotmOverlay2026-kicker {
  font-size: 14px;
  font-weight: 800;			/* controls font weight (boldness) of the title "FILM OF THE MONTH" */
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 10px;
}

.fotmOverlay2026-headline {
  font-size: 32px;
  line-height: 1.12;
  font-weight: 700;
  margin: 0 0 14px;
}

.fotmOverlay2026-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.fotmOverlay2026-btn {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 12px;
  background: #fff;
  color: #111;
  text-decoration: none;
  font-weight: 700;
}

.fotmOverlay2026-btn:hover {
  text-decoration: underline;
}

/* =========================================================
   FOTM section below the hero
   ========================================================= */

.fotm2026 {
  max-width: 900px; /* match the player max width */
  margin: 18px auto 26px;
}

.fotm2026-player {
  margin: 0 0 14px;
}

.fotm2026-embed {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  margin: 0 auto; /* center player */
  background: #000;
}

.fotm2026-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.fotm2026-title {
  margin: 10px 0 6px;
  font-size: 28px;
  line-height: 1.15;
  text-align: left;
}

.fotm2026-meta {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px;
  text-align: left;
}

.fotm2026-desc {
  font-size: 20px;
  line-height: 1.55;
  max-width: 70ch;
  text-align: left;
}

/* =========================================================
   Navigation (2026)
   ========================================================= */

.nav2026,
.nav2026 a,
.nav2026 button {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.nav2026 {
  background: #fff;
  border-bottom: 1px solid #ddd;
}

.nav2026-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.nav2026-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav2026-logo {
  display: block;
  height: 80px; /* was originally 44px */
  width: auto;
}

.nav2026-wordmark {
  display: block;
  height: 70px; /* was originally 28px */
  width: auto;
}

.nav2026-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.nav2026-toggle {
  border: 1px solid #ccc;
  background: #fff;
  padding: 8px 10px;
  border-radius: 10px;
  cursor: pointer;
}

.nav2026-menu {
  list-style: none;
  margin: 0;
  padding: 0;

  /* Mobile default: closed */
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.nav2026-link,
.nav2026-menu a {
  display: block;
  padding: 8px 10px;
  border-radius: 10px;
  text-decoration: none;
  color: #111;
}

.nav2026-menu a:hover,
.nav2026-menu a:focus {
  background: #f2f2f2;
}

.has-sub {
  position: relative;
}

.sub {
  list-style: none;
  margin: 0;
  padding: 6px 0 0 14px;
  display: none;
}

.has-sub:focus-within > .sub {
  display: block;
}

.divider {
  height: 1px;
  background: #ddd;
  margin: 6px 0;
}

/* Mobile open state */
.nav2026.is-open .nav2026-menu {
  display: flex;
}

/* Hide wordmark on tiny screens */
.nav2026-wordmark {
  height: clamp(18px, 4.5vw, 28px);
  width: auto;
}

/* Desktop dropdowns */
@media (min-width: 980px) {
  .nav2026-toggle { display: none; }

  .nav2026-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: auto;
    gap: 4px;
  }

  /* Invisible hover bridge to prevent submenu flicker */
  .has-sub::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 10px;
    background: transparent;
  }

  .sub {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 240px;
    padding: 10px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 12px 20px rgba(0,0,0,0.12);
    display: none;
    z-index: 50;
  }

  .has-sub:hover > .sub,
  .has-sub:focus-within > .sub {
    display: block;
  }

  .sub a {
    padding: 8px 10px;
  }
}

/* Mobile nav: menu must drop below the bar, not render off to the right */
@media (max-width: 979px) {
  .nav2026-inner {
    flex-wrap: wrap;
  }

  /* Make the nav area span the full width so the menu can sit under the toggle */
  .nav2026-nav {
    width: 100%;
    justify-content: flex-end;
  }

  /* When open, the menu is a full-width block under the bar */
  .nav2026.is-open .nav2026-menu {
    display: flex;
    width: 100%;
    margin-top: 10px;
  }

  .nav2026-menu {
    width: 100%;
  }

  /* Keep the hamburger button on the right */
  .nav2026-toggle {
    margin-left: auto;
  }
}
/* If nav wraps to two lines, move hamburger to the left edge */
@media (max-width: 979px) {
  .nav2026-inner {
    align-items: flex-start;
  }

  .nav2026-toggle {
    margin-left: 0;
  }

  .nav2026-nav {
    justify-content: flex-start;
  }
}
@media (max-width: 979px) {
  .nav2026-nav {
    margin-top: 8px;
  }
}

/* =========================================================
   Footer (2026)
   ========================================================= */

.footer2026 {
  padding: 26px 0 34px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.footer2026-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

.footer2026-panel {
  background: #bca482;
  padding: 34px 38px 20px;
}

.footer2026-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 46px;
}

.footer2026-title {
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer2026-line {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.45;
  color: #111;
}

.footer2026-strong {
  font-weight: 700;
}

.footer2026 a {
  color: #0b57d0;
  text-decoration: none;
}

.footer2026 a:hover {
  text-decoration: underline;
}

.footer2026-socialrow {
  margin-top: 10px;
}

.footer2026-bottom {
  margin-top: 22px;
  text-align: center;
}

.footer2026-bottom-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .footer2026-panel {
    padding: 26px 22px 16px;
  }

  .footer2026-cols {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer2026-line {
    font-size: 16px;
  }

  .footer2026-bottom-text {
    font-size: 14px;
  }
}

/* =========================================================
   Responsive: hero + FOTM overlay (portrait phones)
   ========================================================= */

@media (max-width: 640px) {
  .hero2026 {
    height: 40vh;
    min-height: 240px;
  }
}

@media (max-width: 700px) {
  .fotmOverlay2026 {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: none;
  }

  .fotmOverlay2026-headline {
    font-size: 24px;
  }
}

@media (max-width: 640px) {
  .fotmOverlay2026 {
    padding: 14px 16px;
    border-radius: 14px;
  }

  .fotmOverlay2026-kicker {
    font-size: 12px;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
  }

  .fotmOverlay2026-headline {
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .fotmOverlay2026-btn {
    padding: 8px 12px;
    font-size: 14px;
  }
}

/* =========================================================
   Responsive: landscape phones (reliable)
   ========================================================= */

/* Make the overlay intentionally narrower on landscape phones (fixes iPhone landscape “too wide” slab) */
@media (orientation: landscape) and (max-width: 950px) {
  .fotmOverlay2026 {
    max-width: clamp(320px, 52vw, 420px);
  }
}

/* Optional extra tightening for very short landscape heights */
@media (max-height: 430px) and (orientation: landscape) {
  .fotmOverlay2026 {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: clamp(320px, 52vw, 420px);

    padding: 10px 12px;
    border-radius: 14px;
  }

  .fotmOverlay2026-kicker {
    font-size: 10px;
    letter-spacing: 0.12em;
    margin-bottom: 6px;
  }

  .fotmOverlay2026-headline {
    font-size: 16px;
    line-height: 1.15;
    margin-bottom: 8px;
  }

  .fotmOverlay2026-btn {
    padding: 6px 10px;
    font-size: 13px;
  }
}

/* ============================================================
   Home page: Consortium / Sponsors / Submit trio
   ============================================================ */

.home-trio{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.home-trio-item{
  display: flex;
}

.home-card{
  display: flex;
  flex-direction: column;
  width: 100%;
  background: var(--panel-bg, #ffffff);
  background-color: #e6dcc8; /* parchment */
  border-radius: 10px;
  padding: 1.25rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

/* Images inside cards */
.home-card img{
  max-width: 100%;
  height: auto;
  display: block;
}

/* Stack on tablets / phones */
@media (max-width: 900px){
  .home-trio{
    grid-template-columns: 1fr;
  }
}

.home-trio a.home-btn{
  background: #1e6fd9 !important;
  color: #fff !important;
  display: inline-block !important;
  padding: 0.45rem 0.9rem !important;
  border-radius: 4px !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.03em !important;
}

.home-trio a.home-btn:hover{
  background: #1559b3 !important;
}

/* Space between the top image and the body content (prevents visual overlap) */
.home-card-media{
  margin-bottom: 0.9rem;
}

/* =========================================================
   Interior pages (About, Curations, etc.)
   ========================================================= */

/* Page header (simple, neutral) */
.page-header {
  margin: 18px 0 12px;
}

.page-title {
  margin: 0;
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.15;
}

/* Main page content spacing */
.page-content {
  margin-bottom: 40px;
}

/* Lightweight grid (Bootstrap replacement) */
.grid {
  display: grid;
  gap: 24px;
  margin-bottom: 28px;
}

.grid-2 {
  grid-template-columns: 1fr 1fr;
}

.col {
  min-width: 0;
}

/* Stack columns on smaller screens */
@media (max-width: 900px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

/* Images */
.img-fluid {
  max-width: 100%;
  height: auto;
  display: block;
}

/* About lists */
.about-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}

.about-list-item {
  margin-bottom: 6px;
}

/* Better anchor jump spacing for in-page links (e.g., #mission, #trustees) */
#mission, #history, #trustees {
  scroll-margin-top: 90px;
}

.page-about .sectionRule {
  border: 0;
  height: 1px;
  background: rgba(0,0,0,0.14);
  margin: 14px 0 18px;
}

/* If you haven’t already added this, it makes menu anchor jumps land nicely */
.page-about h2[id] {
  scroll-margin-top: 90px;
}

/* About page readability */
.page-about .aboutWrap {
  font-size: 18px;
  line-height: 1.6;
  color: #111;
}

/* Keep headings spaced like the old page */
.page-about h2 {
  margin: 22px 0 12px;
}

/* Make the two columns match the body text size/leading */
.page-about .grid .col {
  font-size: inherit;
  line-height: inherit;
}

/* Generic: two-column grid with a narrow first column */
.grid.grid-2.grid-narrow-left {
  grid-template-columns: 220px 1fr;
  column-gap: 32px;
  align-items: start;
}

/* Optional size variants */
.grid.grid-2.grid-narrow-left--sm { grid-template-columns: 180px 1fr; }
.grid.grid-2.grid-narrow-left--lg { grid-template-columns: 260px 1fr; }

/* Responsive stacking */
@media (max-width: 700px) {
  .grid.grid-2.grid-narrow-left,
  .grid.grid-2.grid-narrow-left--sm,
  .grid.grid-2.grid-narrow-left--lg {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }
}
/* Reusable: narrow-left two-column layout (wins even if grid-2 is defined elsewhere) */
.grid.grid-2.grid-narrow-left {
  display: grid !important;
  grid-template-columns: 190px minmax(0, 1fr) !important;
  column-gap: 40px;
  align-items: start;
}

/* Optional variants */
.grid.grid-2.grid-narrow-left--sm {
  display: grid !important;
  grid-template-columns: 160px minmax(0, 1fr) !important;
}

.grid.grid-2.grid-narrow-left--lg {
  display: grid !important;
  grid-template-columns: 230px minmax(0, 1fr) !important;
}

/* Responsive stacking */
@media (max-width: 700px) {
  .grid.grid-2.grid-narrow-left,
  .grid.grid-2.grid-narrow-left--sm,
  .grid.grid-2.grid-narrow-left--lg {
    grid-template-columns: 1fr !important;
    row-gap: 10px;
  }
}

/* --------------------
		winners.php (2026) 
*/ --------------------

/* general winners page spacing */
.winnersWrap h2 {
  margin: 0 0 0.75rem 0;
}

.winnersWrap .grid.grid-2 {
  align-items: start;
}

.winnersWrap .winnersTopGrid {
	grid-template-columns: 1.25fr 1.35fr;
}

.winnersWrap .winnersIntro {
  font-size: 18px;     /* if you want slightly larger, use 19px */
  line-height: 1.6;    /* loosens the column and restores “legacy” breathing room */
}

.winnersWrap .winnersIntro p {
  margin: 0 0 12px;
}

/* Edison Innovation Award block: make it look like a framed card */

/* Slightly soften the frame so it reads like a “feature card” */
.eiaBlock {
  max-width: 460px;              /* controls the visual card width */
  margin: 0 auto;                /* centers the card in its column */
  padding: 1rem 1.25rem;

  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 6px;
}

/* EIA summary: centered stack like the legacy screenshot */
.eiaSummary {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
  cursor: pointer;
  list-style: none;
}

.eiaSummary::-webkit-details-marker { 
	display: none; 
}

.eiaSummary img {
  display: block;
  margin: 0 auto 0.5rem auto;
  border-radius: 4px;
}

.eiaPhoto {
  display: block;
  width: 220px;        /* adjust to match your legacy image scale */
  height: auto;
  border-radius: 4px;
  margin: 0.25rem auto 0.25rem auto;
}

/* Name line under photo */
.eiaName {
  font-size: 1.65rem;
  line-height: 1.1;
  font-weight: 700;
}

/* “2025 EIA Winner” line */
.eiaWinnerLine {
  font-size: 1.1rem;
  line-height: 1.1;
  font-weight: 600;
}

/* Big award title line */
.eiaAwardLine {
  margin-top: 0.35rem;
  font-size: 1.55rem;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* Click hint line */
.eiaToggleHint {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.85rem;
  font-weight: normal;
  letter-spacing: 0.03em;
  text-transform: none;
  color: #555;
  opacity: 0.7;
}

/* EIA accent color */
.eiaName,
.eiaWinnerLine,
.eiaAwardLine,
.eiaToggleHint {
  color: #0a6cff;   /* or your chosen accent */
}

/* center the film viewer box like the screenshot */
.winnersViewer {
  max-width: calc(var(--viewer-max-width, 420px) + 120px);
  margin: 1.25rem auto 1.25rem auto;
  padding: 0.75rem;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 6px;
  text-align: center;
}

#winners, #Winners {
  margin-top: 1.25rem;
}
	
/* film thumbnail area: center and keep iframe responsive-ish */
#FilmThumbNail {
  scroll-margin-top: 0px; /* or header height if you have a fixed header */
}

/* film thumbnail area: center and keep iframe responsive-ish */
#FilmThumbNail iframe {
  width: 100%;
  max-width: var(--viewer-max-width, 420px);
  aspect-ratio: 16 / 9;
  height: auto;
  display: block;
  margin: 0 auto;
}

.filmworkdescription {
  text-align: left;
}


/* award “accordion headers” styled as the grey bars in your screenshot */
.awardGroup {
  margin: 0;
}

.awardGroup > summary {
  cursor: pointer;
  list-style: none;
  padding: 0.85rem 1rem;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 4px;
  text-align: center;
}

.awardGroup > summary::-webkit-details-marker {
  display: none;
}

/* keep the open/close text on the same line but lighter */
.awardGroup > summary em {
  font-style: italic;
  opacity: 0.85;
}

/* body list area under each header */
.awardGroupBody {
  padding: 0.75rem 0.5rem 0.25rem 0.5rem;
  text-align: left;
}

/* film title buttons inside each award group */
.nonbuttonButton.filmPick {
  background: none;
  border: none;
  padding: 0.15rem 0;
  text-align: left;
  cursor: pointer;
  color: inherit;
  text-decoration: underline;
}

.nonbuttonButton.filmPick:hover,
.nonbuttonButton.filmPick:focus {
  text-decoration: underline;
}

/* the award headers laid out in a 2-col grid like your screenshot */
.winnersAwardsGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1.25rem;
  max-width: 980px;
  margin: 0.25rem auto 0 auto;
}

/* if you want the whole awards grid centered and not too wide */
@media (max-width: 800px) {
  .winnersAwardsGrid {
    grid-template-columns: 1fr;
  }
  .winnersWrap .winnersTopGrid {
    grid-template-columns: 1fr;
  }
}

.winnersWrap .awardGroupBody .filmPick {
  display: block;
  width: 100%;
  box-sizing: border-box;

  background: transparent;
  border: 1px solid rgba(0,0,0,0.25);
  border-radius: 4px;

  padding: 6px 10px;
  margin: 4px 0;

  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

/* winners.php – film selection list (final) */
.winnersWrap .awardGroupBody button.filmPick {
  display: block;
  width: 100%;
  box-sizing: border-box;

  background: transparent;
  border: 1px solid rgba(0,0,0,0.25);
  border-radius: 4px;

  padding: 6px 10px;
  margin: 4px 0;

  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.winnersWrap .awardGroupBody button.filmPick:hover,
.winnersWrap .awardGroupBody button.filmPick:focus {
  background: rgba(0,0,0,0.06);
  outline: none;
}

/* winners viewer: title + metadata stack */
.winnersWrap #FilmTitle {
  font-size: 32px;
  line-height: 1.15;
  font-weight: 700;
  margin: 14px 0 10px;
}

.winnersWrap .filminfo,
.winnersWrap #FilmGenre,
.winnersWrap #FilmRuntime,
.winnersWrap #Filmmaker,
.winnersWrap #FilmOrigin {
  font-size: 24px;
  line-height: 1.35;
  margin: 0;
}

/* give a little breathing room between the stacked lines */
.winnersWrap #FilmGenre { margin-top: 2px; }
.winnersWrap #FilmRuntime,
.winnersWrap #Filmmaker,
.winnersWrap #FilmOrigin { margin-top: 6px; }

/* description box */
.winnersWrap #FilmWorkDescription,
.winnersWrap .filmworkdescription {
  margin: 18px auto 0;
  max-width: 70ch;
  text-align: left;

  font-size: 22px;
  line-height: 1.55;

  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(0,0,0,0.18);
  border-radius: 6px;
  padding: 14px 16px;
}

.winnersWrap .winnersViewer #FilmWorkDescription {
  text-align: left;
}

/* Winners page – award group headers */
.awardGroup > summary {
  color: #2b5dab;           /* same blue as EIA */
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Subtle interaction feedback */
.awardGroup > summary:hover {
  text-decoration: underline;
}

.awardGroup[open] > summary {
  color: #1f4aa3;           /* slightly darker when open */
}

.winnersHint {
  margin: 0 0 10px;
  font-size: 14px;
  color: #444;
  text-align: center;
}

/* Winners page – title + context */
.winnersTitle {
  text-align: center;
  margin-bottom: 12px;
}

.winnersTitle .winnersContext {
  display: inline-block;
  margin-left: 12px;
  font-size: 0.55em;
  font-weight: normal;
  color: #555;
}

/* Instructions block */
.winnersInstructions {
  text-align: center;
  margin: 10px auto 28px;
}

.winnersInstructionsTitle {
  font-size: 14px;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: #333;
}

.winnersInstructionsMain {
  font-size: 15px;
  margin-top: 6px;
}

.winnersInstructionsNote {
  font-size: 11px;
  color: #666;
  margin-top: 4px;
}

/* Space after awards grid */
.winnersAwardsGrid {
  margin-bottom: 32px;
}

.winnersIntro {
  text-align: center;
  margin-bottom: 2.5rem;
}

.winnersSubtitle {
  font-size: 1rem;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.winnersInstructionsTitle {
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.winnersInstructions {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.winnersLegal {
  font-size: 0.75rem;
  opacity: 0.75;
}

.winnersBrowse {
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

.eiaAwardHead {
  font-size: 1.45rem;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0.25rem 0 0.35rem;
}

.curationsHero {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.25rem;
  align-items: start;
  margin: 1.25rem auto 1.75rem;
  max-width: 1100px;
}

.curationsHeroText p {
  margin: 0 0 0.75rem;
}

.curationsHeroArt {
	aspect-ratio: 4 / 1;  /* long strip */
  min-height: 140px;
  /* border-radius: 10px; */
  background-size: contain; /* show the whole image */
  background-position: center;
  background-repeat: no-repeat;

  /* Use the actual path to your existing graphic */
  background-image: url("/images/aGraphic_curations.png");
}


/* Curations + Archive: on smaller screens, stack the hero art above the intro text */
@media (max-width: 900px) {
  .curationsHero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "art"
      "text";
  }

  .curationsHeroArt {
    grid-area: art;
    aspect-ratio: 3 / 1;
    min-height: 110px;
  }

  .curationsHeroText {
    grid-area: text;
  }
}

.page2026 .toTop {
  margin: 10px 0 10px;
  font-size: 0.8rem;
  font-weight: 400;
  color: #666;
  text-align: center;
}

.page2026 .toTop a {
  color: #666;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page2026 .toTop a:hover,
.page2026 .toTop a:focus {
  text-decoration: underline;
}

/* =========================================================
   Archive page (2026)
   ========================================================= */

.page-archive .archiveHowto {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.45;
  color: #333;
}

.page-archive .archiveHowtoTitle {
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.page-archive .archiveHeroArt {
  /* Uses the same layout rules as .curationsHeroArt */
  background-image: url("/images/aGraphic_archive.png");
}

.page-archive .archiveSearchGrid {
  margin-top: 10px;
}

.page-archive .field2026 {
  display: block;
  margin: 0 0 14px;
}

.page-archive .field2026 .lbl {
  display: block;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin: 0 0 6px;
  color: #222;
}

.page-archive .field2026 input,
.page-archive .field2026 select {
  width: 100%;
  font: inherit;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.25);
  background: rgba(255,255,255,0.85);
}

.page-archive .field2026 input:focus,
.page-archive .field2026 select:focus {
  outline: none;
  border-color: rgba(11,87,208,0.65);
  box-shadow: 0 0 0 3px rgba(11,87,208,0.15);
}

/* Buttons (reusable, but scoped here to avoid ripple) */
.page-archive .btn2026 {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.25);
  background: #1e6fd9;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.page-archive .btn2026.secondary {
  background: transparent;
  color: #111;
}

.page-archive .archiveActions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}

/* Results paging (keeps the DOM short for Chrome stability) */
.page-archive .archivePager {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 14px 0;
}

.page-archive .archivePagerMeta {
  flex: 1;
  text-align: center;
  color: rgba(0,0,0,0.75);
  font-weight: 600;
}

/* Autocomplete dropdown */
.page-archive .acbox {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 60;
  display: none;
  margin-top: 6px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.18);
  border-radius: 12px;
  box-shadow: 0 14px 22px rgba(0,0,0,0.16);
  overflow: hidden;
}

.page-archive .ac-row {
  padding: 10px 12px;
  cursor: pointer;
}

.page-archive .ac-row:hover,
.page-archive .ac-row.is-active {
  background: rgba(0,0,0,0.06);
}

.page-archive .ac-primary {
  font-weight: 700;
  line-height: 1.2;
}

.page-archive .ac-meta {
  margin-top: 4px;
  font-size: 13px;
  color: #555;
  line-height: 1.25;
}

/* Viewer: make iframe responsive like other 2026 pages */
.page-archive .archiveThumb iframe {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  height: auto;
  display: block;
  margin: 0 auto;
}

.page-archive .archiveResults {
  max-width: 650px;
  margin: 18px auto 32px;
}

.archiveResultLink,
.filmPick.archiveResultLink {
  display: block;
  padding: 10px 12px;
  margin: 8px 0;
  border: 1px solid rgba(0,0,0,0.20);
  border-radius: 10px;
  background: #efe6d5;
  text-decoration: none;
  color: #0b57d0;
}

.archiveResultLink:hover,
.filmPick.archiveResultLink:hover {
  background: #e3d8c6;
  text-decoration: underline;
}

.archiveResultTitle {
  font-weight: 700;
  color: #0b57d0;
}

.archiveResultMeta {
  margin-top: 4px;
  font-size: 13px;
  color: #444;
  text-decoration: none;
}

.page-archive .archiveNoOnline {
  text-align: center;
  padding: 18px 12px;
  background: #ece7db;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 10px;
}

/* =========================================================
   Form controls (2026)
   Shared baseline used by archive.php and future pages.
   ========================================================= */

/* =========================================================
   Unified form control (2026)
   Normalizes input + select heights across browsers
   ========================================================= */

/* =========================================================
   Unified form control (2026)
   Inputs + selects, consistent height without clipping
   ========================================================= */

/* =========================================================
   Unified form control (2026)
   Typography + height normalized
   ========================================================= */

.control2026 {
  font-family: inherit;
  font-size: 15px;
  font-weight: 400;          /* <-- key fix */
  line-height: 1.3;

  padding: 6px 10px;
  border: 1px solid rgba(0,0,0,0.25);
  border-radius: 8px;
  background-color: rgba(255,255,255,0.85);
  box-sizing: border-box;

  height: 42px;
  min-height: 42px;

  color: #111;
}

/* Normalize select rendering */
select.control2026 {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  line-height: normal;

  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23666'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 10px 6px;

  padding-right: 32px;
}

.page-archive .archiveResults {
  transform: translateZ(0);
}



/* =========================================================
   Mobile nav polish: clearer dropdown grouping + inset menu
   - Inset the open mobile menu slightly (not full-width)
   - Show submenus when JS adds .is-open on the parent <li>
   - Remove confusing divider lines inside dropdowns
   - Visually nest dropdown items (indent + subtle bracket)
   ========================================================= */

@media (max-width: 979px) {
  /* Inset the opened menu so it reads as a contained panel */
  .nav2026.is-open .nav2026-menu {
    width: 92%;
    max-width: 520px;
    margin: 10px auto 0;
    border: 1px solid #ddd;
    border-radius: 14px;
    padding: 8px;
    background: #fff;
  }

  /* JS-driven open state for dropdown parents (iOS-safe) */
  .has-sub.is-open > .sub {
    display: block;
  }

  /* Make dropdowns feel like dropdowns */
  .sub {
    padding: 10px 0 10px 16px; /* nested indent */
    margin: 6px 2px 6px;
    border-top: 1px solid rgba(0,0,0,0.10);
    border-bottom: 1px solid rgba(0,0,0,0.10);
  }

  /* Dropdown items: slightly tighter + clearly nested */
  .sub a {
    padding: 8px 10px;
  }

  /* Hide divider rules inside dropdowns (they read as random lines) */
  .sub .divider {
    display: none !important;
  }
}


/* =========================================================
   Home announcement lane overrides (text-only, centered)
   Purpose: Keep existing slider motion/JS, but remove the “card/box” look
   Scope: ONLY affects announcements when they are inside .announceLane2026
   ========================================================= */

/* Full-bleed lane (like .hero2026) while living inside .wrap */
.announceLane2026{
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;

  /* Lane feel (parchment already from body) */
  min-height: 56px;
  padding: 10px 18px;

  /* Center the slider block vertically */
  display: flex;
  align-items: center;

  /* Fallback centering if anything renders as inline */
  text-align: center;
}

/* Let the slider use the full available lane width (no artificial narrowing) */
.announceLane2026 .announce2026-slider{
  width: 100%;
  max-width: none;
  margin: 0 auto;
}

/* Ensure the viewport/track don’t inherit card-like constraints */
.announceLane2026 .announce2026-viewport{
  width: 100%;
}

/* Each slide should occupy full width so the text can truly center */
.announceLane2026 .announce2026-slide{
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Remove the box look ONLY in the lane */
.announceLane2026 .announce2026{
  width: 100%;
  max-width: none;
  padding: 0 !important;
  margin: 0 !important;

  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* Apply tagline typography ONLY in the lane */
.announceLane2026 .announce2026-body{
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0.03em;
  color: #333;
  text-align: center;

  /* Desktop: single line */
  white-space: nowrap;
}

/* Phones: allow wrapping (up to 2 lines in practice) */
@media (max-width: 640px){
  .announceLane2026{
    min-height: 56px; /* keep lane stable */
  }
  .announceLane2026 .announce2026-body{
    white-space: normal;
  }
}
