:root{
      --page-bg: #ffffff;
      --section-bg: #ffffff;
      --section-alt-bg: #f6f6f6;

      --accent: #e37500;
      --accent-hover: #b85f00;

      --text: #444;
      --muted: #6b7280;

      --divider: rgba(31,41,55,.25);

      --form-ph: #e6f0fb;

      --border: rgba(0,0,0,.12);

      --maxw: 980px;

      --radius: 4px;

      --f-primary: "Mercury SSm A", "Mercury SSm B", "Mercury Fallback Mac Win", serif;
      --f-secondary: "Knockout 50 A", "Knockout 50 B", "Knockout Fallback Mac", "Knockout Fallback Win", "Knockout Fallback Android", sans-serif;
      --f-rich-text: var(--f-primary);

    }

    *{ box-sizing: border-box; }

    body{
      margin: 0;
      font-family: var(--f-rich-text);
      color: var(--text);
      background: var(--page-bg);
      line-height: 1.45;
      font-size: 16px;
    }

    p {
        font-family: var(--f-rich-text);
        font-size: 16px;
        line-height: 1.45;
    }

    ul{margin: 0; padding-left: 16px;}
    img{ max-width:100%; display:block; }

    .wrap{
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 0 16px;
    }

    .h1{
      font-size: 42px;
      margin: 0 0 10px;
      font-weight: 800;
    }

    .h2{
      font-size: 28px;
      margin: 0 0 10px;
      font-weight: 800;
    }

    .lead{
      margin: 0 0 18px;
      font-size: 18px;
      font-weight: 600;
    }

    @media (max-width: 860px){
      .h1{ font-size: 34px; }
      .h2{ font-size: 24px; }
    }

    .btn{
      display:inline-block;
      background: var(--accent);
      color: #fff;
      text-decoration:none;
      padding: 6px 12px;
      border-radius: var(--radius);
      font-family: var(--f-secondary);
      font-size: 16px;
      font-weight: 800;
      line-height: 1.75;
      text-transform: uppercase;
      letter-spacing: .5px;
      border: 1px solid --accent-hover;
      cursor: pointer;
      word-break: break-word;
    }

    .btn:hover{ background: var(--accent-hover); }
    
    /* =========================
       USHMM BRANDED HEADER (Basic)
       ========================= */

    #HeaderSection.ushmm-header{
      background-image: url(https://image.e.ushmm.org/lib/fe30117371640575771577/m/1/54faebf7-e069-4753-8ed6-5942a7e01934.png);
      background-repeat: no-repeat;
      background-size: cover;
      background-color: #ffffff;
      display: block;
    }

    /* Control header height by breakpoint */
    @media (min-width: 768px){
      #HeaderSection.ushmm-header{ min-height: 165px; }
    }
    @media (max-width: 767px){
      #HeaderSection.ushmm-header{ min-height: 100px; }
    }

    /* Inner alignment */
    .ushmm-header__inner{
      padding-top: 32px;
      padding-bottom: 18px;   /* gives breathing room; optional */
      display: flex;
      justify-content: flex-start; /* align to content left */
    }

    /* Logo sizing */
    .ushmm-header__logoLink{
      display: inline-block;
    }

    .ushmm-header__logo{
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* Mobile: center the logo */
    @media (max-width: 767px){
      .ushmm-header__inner{
        padding-top: 18px;
        padding-bottom: 18px;
        justify-content: center;
      }

      .ushmm-header__logo{
        width: 130px;
      }
    }

    

    /* =========================
       HERO (shared base)
       ========================= */

    :root{
      --hero-h-desktop: 600px;
      --hero-h-mobile: 300px;
    }

    /* Hero container height is the source of truth */
    .hero{
      position: relative;
      height: var(--hero-h-desktop);
      overflow: hidden;
      background: #e5e7eb;
    }

    @media (max-width: 860px){
      .hero{
        height: var(--hero-h-mobile);
      }
    }

    /* Single-image hero */
    .hero-img{
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* Overlay block pinned from bottom */
    .hero-inner{
      position: absolute;
      left: 0;
      right: 0;
      bottom: 40px;
      z-index: 2;
    }

    .hero::after{
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(68, 68, 68,.50);
      z-index: 1;
    }

    /* Typography unchanged */
    .hero-title{
      color: #fff;
      font-size: 48px;
      font-weight: 900;
      margin: 0;
      letter-spacing: -0.02em;
    }
    .hero-subtitle{
      margin: 0;
      color: #fff;
      /* color: rgba(31,41,55,.8); */
      font-size: 18px;
      font-weight: 700;
      max-width: 720px;
    }
    .hero-divider{
      height: 1.25px;
      margin-bottom: 12px;
      background: -webkit-linear-gradient(right, rgba(230, 119, 0, 0), rgba(230, 119, 0, 1));
      background: -o-linear-gradient(left, rgba(230,119,0,0), rgba(230,119,0,1));
      background: -moz-linear-gradient(left, rgba(230,119,0,0), rgba(230,119,0,1));
      background: linear-gradient(to left, rgba(230, 119, 0, 0), rgba(230, 119, 0, 1));
    }

    @media (max-width: 860px){
      .hero-inner{ bottom: 28px; }
      .hero-title{ font-size: 34px; }
      .hero-subtitle{ font-size: 16px; }
      .hero-divider{ width: 180px; }
    }

    /* Desktop: ensure hero image is at least 600px tall */
        @media (min-width: 768px) {
          .hero-img {
            min-height: 600px !important;
          }
        }

        /* Mobile: ensure hero image is at least 300px tall */
        @media (max-width: 767px) {
          .hero-img {
            min-height: 300px !important;
          }
        }



     /* =========================
       HERO CAROUSEL
       ========================= */

    .hero-carousel__slides{
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    /* each slide image */
    .hero-carousel__img{
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;

      opacity: 0;
      transition: opacity 2s ease;
    }

    .hero-carousel__img.is-active{
      opacity: 1;
    }

    /* Base state */
    .hero-carousel__img{
      transform: scale(1);
      will-change: opacity, transform;
      transition:
        opacity 2s ease,
        transform 8s ease;   /* zoom speed */
    }

    /* Active slide: fade in + slight zoom */
    .hero-carousel__img.is-active{
      opacity: 1;
      transform: scale(1.06); /* zoom amount */
    }



    /* =========================
       LAYOUT
       ========================= */

    .grid-2{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 22px;
      align-items: start;
    }

    .grid-3{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    @media (max-width: 860px){
      .grid-2{ grid-template-columns: 1fr; }
      .grid-3{ grid-template-columns: 1fr; }
    }

    /* =========================
       IMAGE PLACEHOLDER 
       ========================= */

    .img-ph{
      width: 100%;
      border: 1px solid var(--border);
      border-radius: 0;
      object-fit: cover;
      background: #fff;
    }

    /* Wide (for big blocks) */
    .img-ph.wide{
      aspect-ratio: 16 / 9;
      height: auto;
      min-height: 260px; /* fallback */
    }

    /* =========================
       FORMS
       ========================= */
    .form-slot{
      background: var(--form-ph);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 18px;
      min-height: 220px;
    }

    .form-slot.full{ min-height: 260px; }
    .form-slot .hint{
      font-size: 12px;
      color: rgba(31,41,55,.75);
      margin: 0 0 10px;
      font-weight: 750;
    }

    .form-slot .hint code{
      background: rgba(255,255,255,.7);
      padding: 2px 6px;
      border-radius: 10px;
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
      font-size: 11px;
    }

    /* Outer slot is neutral by default */
    .form-slot{
      background: transparent;
      border: 0;
      padding: 0;
      min-height: 0;
    }

    /* Placeholder styling */
    .form-slot__placeholder{
      background: #e6f0fb;
      border: 1px solid rgba(0,0,0,.12);
      border-radius: 12px;
      padding: 18px;
    }

    /* The embed area should not add any styling */
    .form-slot__embed{
      background: transparent !important;
      border: 0 !important;
      padding: 0 !important;
      margin: 0 !important;
    }

    /* Hide placeholder when embed has anything inside it */
    .form-slot:has(.form-slot__embed > *){
    /* no-op for container; we hide placeholder below */
    }

    .form-slot:has(.form-slot__embed > *) .form-slot__placeholder{
      display: none;
    }

    /* =========================================
    ZOHO FORM EMBED (Zoho JS embed creates an iframe)
    Scope: only inside our form slot embed area
    ========================================= */

    .form-slot__embed,
    .form-slot__embed > div{
      width: 100%;
      max-width: 100%;
    }

    .form-slot__embed{
      overflow: visible;
    }

    .form-slot__embed iframe{
      display: block;
      width: 100% !important;
      max-width: 100% !important;
      border: 0 !important;
      vertical-align: top;
    }



    /* =========================
       SPOTLIGHT BAND
       ========================= */

    /* Spotlight section now just provides spacing */
    .spotlight{
      background: transparent;
      padding: 26px 0;
    }

    /* The gray “band” is content-width only */
    .spotlight-box{
      background: #3c3c3c;
      color: #fff;
      padding: 20px;
      border-radius: 0;
    }

    /* Keep the internal layout */
    .spotlight-inner{
      display: flex;
      gap: 18px;
      align-items: center;
      justify-content: space-between;
    }

    .spotlight .copy{ max-width: 640px; }
    .spotlight .kicker{
      font-weight: 900;
      margin: 0 0 6px;
      font-size: 20px;
    }
    .spotlight p{
      margin: 0 0 10px;
      color: rgba(255,255,255,.85);
      font-size: 16px;
    }
    .spotlight .spotlight-img-wrap{
      flex: 0 0 auto;
    }

    @media (max-width: 860px){
      .spotlight-inner{
        display: flex;
        flex-direction: column;
        align-items: stretch;
      }
      .spotlight .spotlight-img-wrap{ order: 1; width: 100%; }
      .spotlight .copy{ order: 2; }
    }


     /* =========================
       VIDEO BAND
       ========================= */

    /* The gray “band” is content-width only */
    .video-box{
      color: #fff;
      text-align: center;
    }
    
    .iframe-wrap {
      text-align:center;
      margin-top: 40px;
    }


    /* =========================
       CARDS
       ========================= */
    .card{
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 0;
      overflow:hidden;
    }

    .card .pad{ 
      padding: 15px; 
      margin-bottom: 10px;
    }

    .card h3{
      margin: 0 0 6px;
      font-size: 16px;
      font-weight: 900;
    }

    .card p{
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .card .btn {
      margin-top: 10px;
      width: 100%;
    }
    
    /* Speaker cards: no border */
    .speaker-card{
      border: 0 !important;
      background: transparent;
    }

    /* =========================
       Alternating rows
       ========================= */
    .alt-row{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      align-items:center;
      padding: 26px 0;
    }

    .alt-row.reverse .img-col{ order: 2; }
    .alt-row.reverse .copy{ order: 1; }
    @media (max-width: 860px){
      .alt-row{ grid-template-columns: 1fr; }
      .alt-row.reverse .img-col,
      .alt-row.reverse .copy{ order: initial; }
    }

    /* =========================
       Standalone Photo Credit section
       ========================= */
    .photo-credit-standalone{
      padding: 0;
    }

    .photo-credit-standalone .credit{
      margin: 0;
      color: var(--muted);
      font-size: 12px;
    }

    /* =========================
       GALLERY
       ========================= */

    .gallery{
      background: #fff;
      padding: 28px 0 40px;
    }

    .gallery-frame{
      position: relative;
      border: 1px solid var(--border);
      border-radius: 0;
      overflow: hidden;
      background: #eee;
      min-height: 280px;
      display:flex;
      align-items:center;
      justify-content:center;
    }

    .gallery-frame img{
      width: 100%;
      height: 100%;
      object-fit: cover;
      min-height: 280px;
    }

    .gbtn{
      position:absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 38px; height: 38px;
      border-radius: 999px;
      border: 0;
      background: transparent;
      color: rgba(255,255,255,.4);
      cursor:pointer;
      display:flex; align-items:center; justify-content:center;
    }

    .gbtn i.fa-solid{
      font-size: 75px;
      line-height: 1;
      pointer-events: none;
    }

    .gbtn:hover{ color: rgba(255,255,255,.7) }
    .gbtn.left{ left: 12px; }
    .gbtn.right{ right: 12px; }
    .gbtn span{ font-size: 18px; line-height: 1; }

    .gallery-credit-box{
      margin-top: 10px;
      border: 1px solid rgba(0,0,0,.18);
      background: #fff;
      padding: 10px 12px;
    }

    .gallery-credit{
      margin: 0;
      font-size: 16px;
      color: var(--muted);
    }

    .dots{
      display:flex;
      gap: 8px;
      justify-content:center;
      margin-top: 14px;
    }

    .dot{
      width: 10px;
      height: 10px;
      border-radius: 999px;
      border: 1px solid rgba(0,0,0,.35);
      background: transparent;
      cursor: pointer;
      padding: 0;
    }

    .dot[aria-current="true"]{
      background: rgba(0,0,0,.55);
      border-color: rgba(0,0,0,.55);
    }

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

  
    .footer {
    text-align:left;
    }
    
    .footercontainer{
        padding: 40px;
    }

    .footer strong {
        font: normal 18px 'Knockout 50 A', 'Knockout 50 B', 'Arial Narrow', 'Trebuchet MS', Helvetica, sans-serif;
        text-transform: uppercase;
    }

    #FooterSection {
    background-color: #333;
    }

    #FooterSection #FooterBottom {
    }

    #FooterSection img#site-logo-footer {
      width:70%;
      max-width:280px !important;
      margin:1em auto 20px !important;
      opacity:0.5;
      transition:all 400ms;
      display:block;
    }

    #FooterSection img#site-logo-footer:hover {
      opacity:1.0;
    }

    #FooterSection p {
      padding: 0;
      text-align: left;
      margin: 0;
      color: #999;
      font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
      font-weight: normal;
      font-size: 0.925em;
      line-height: 20px;
    }

    #FooterSection .footer-links {
      text-align: left;
    }

    #FooterSection .footer-links ul {
      margin:2em 0;
      padding:1em 0 0 0;
      border-top:1px solid #ccc;
    }

    #FooterSection .footer-links li {
      display:inline-block;
      list-style:none;
      font-size:0.85em;
      margin:0;
      padding-right:2em;
    }

    #FooterSection .footer-links li a:hover {
      color:#fff;
      text-decoration: underline;
    }

    #FooterSection a {
      font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
      text-decoration:none;
      color:#337ab7;
      font-size: 0.975em;
      line-height:20px;
    }
    
    #FooterSection img#site-logo-footer {
      width: 70%;
      max-width: 280px !important;
      margin: 1em auto 20px !important;
      opacity: 0.5;
      transition: all 400ms;
      display: block;
    }
    
    @media (min-width: 768px) {
      #FooterSection img#site-logo-footer {
          margin: 0 10px 15px 0 !important;
          max-width: 205px !important;
      }
    }