/* =========================================================
     RESET + VARIABLES
     ========================================================= */
  #px-home,
  #px-home * {
    box-sizing: border-box;
  }

  #px-home [hidden] {
    display: none !important;
  }

  #px-home {
    --px-bg: #ffffff;
    --px-text: #171717;
    --px-muted: #676767;
    --px-line: #deded9;
    --px-soft: #f1f1ed;
    --px-accent: #d71920;
    --px-accent-dark: #aa1016;
    width: 100%;
    color: var(--px-text);
    background: var(--px-bg);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.45;
    direction: ltr;
    text-align: left;
  }

  #px-home a {
    color: inherit;
    text-decoration: none;
  }

  #px-home img {
    display: block;
    width: 100%;
    max-width: 100%;
  }

  #px-home button,
  #px-home a {
    -webkit-tap-highlight-color: transparent;
  }

  #px-home button {
    font: inherit;
  }

  #px-home .px-home-shell {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 22px 0 72px;
  }

  #px-home .px-home-error {
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    padding: 30px;
    text-align: center;
  }

  #px-home .px-home-error strong {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 26px;
  }

  #px-home .px-home-error span {
    color: var(--px-muted);
  }

  /* =========================================================
     TYPOGRAPHY
     ========================================================= */
  #px-home .px-label {
    display: inline-block;
    color: var(--px-accent);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .11em;
    line-height: 1.2;
    text-transform: uppercase;
  }

  #px-home .px-title {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 700;
    letter-spacing: -.025em;
    line-height: 1.06;
    text-align: left;
  }

  #px-home .px-excerpt {
    margin: 0;
    color: var(--px-muted);
    text-align: left;
  }

  /* =========================================================
     MEDIA + HOVER
     ========================================================= */
  #px-home .px-media {
    position: relative;
    overflow: hidden;
    background: #ddddda;
  }

  #px-home .px-media img {
    height: 100%;
    object-fit: cover;
    transition: transform .52s cubic-bezier(.2,.7,.2,1);
  }

  @media (hover:hover) {
    #px-home a:hover .px-media img {
      transform: scale(1.035);
    }
  }

  /* =========================================================
     HERO
     ========================================================= */
  #px-home .px-hero {
    margin-bottom: 44px;
  }

  #px-home .px-hero-main {
    position: relative;
    min-height: 555px;
    overflow: hidden;
    background: #222;
  }

  #px-home .px-hero-main > a {
    position: absolute;
    inset: 0;
    display: block;
  }

  #px-home .px-hero-main .px-media {
    position: absolute;
    inset: 0;
  }

  #px-home .px-hero-main .px-media::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(0,0,0,.76) 0%, rgba(0,0,0,.42) 43%, rgba(0,0,0,.08) 76%);
    pointer-events: none;
  }

  #px-home .px-hero-copy {
    position: absolute;
    z-index: 2;
    left: 44px;
    bottom: 42px;
    width: min(720px, calc(100% - 88px));
    text-align: left;
  }

  #px-home .px-hero-copy .px-label {
    padding: 7px 9px 6px;
    color: #fff;
    background: var(--px-accent);
  }

  #px-home .px-hero-copy .px-title,
  #px-home .px-hero-copy .px-title *,
  #px-home .px-hero-copy h2,
  #px-home .px-hero-copy h2 * {
    margin-top: 13px;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    font-size: clamp(36px, 4.4vw, 60px) !important;
    line-height: 1.08 !important;
    text-shadow: 0 3px 22px rgba(0,0,0,.38);
  }

  #px-home .px-hero-copy .px-excerpt {
    max-width: 535px;
    margin-top: 15px;
    color: rgba(255,255,255,.91);
    font-size: 15px;
  }

  #px-home .px-hero-lower {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(240px, 1fr);
    border-bottom: 1px solid var(--px-line);
  }

  #px-home .px-hero-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  #px-home .px-mini-card {
    min-width: 0;
    padding: 14px;
    border-right: 1px solid var(--px-line);
    text-align: left;
  }

  #px-home .px-mini-card > a {
    display: block;
  }

  #px-home .px-mini-card .px-media {
    aspect-ratio: 16 / 10;
    margin-bottom: 10px;
  }

  #px-home .px-mini-card .px-label {
    margin-bottom: 5px;
  }

  #px-home .px-mini-card .px-title {
    font-size: 18px;
    line-height: 1.15;
  }

  #px-home .px-newsletter-card {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 28px;
    background: var(--px-soft);
    text-align: left;
  }

  #px-home .px-newsletter-card h2 {
    margin: 8px 0 9px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 25px;
    line-height: 1.05;
    text-align: left;
  }

  #px-home .px-newsletter-card p {
    margin: 0 0 19px;
    color: var(--px-muted);
    font-size: 13px;
    text-align: left;
  }

  /* =========================================================
     SECTION HEADERS
     ========================================================= */
  #px-home .px-section {
    margin-top: 52px;
  }

  #px-home .px-section-compact {
    margin-top: 28px;
  }

  #px-home .px-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 17px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--px-text);
  }

  #px-home .px-section-head h2 {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(28px, 3.2vw, 43px);
    letter-spacing: -.03em;
    line-height: 1;
    text-align: left;
  }

  #px-home .px-section-link {
    flex: 0 0 auto;
    color: var(--px-muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .05em;
    text-align: right;
    text-transform: uppercase;
    white-space: nowrap;
  }

  #px-home .px-section-link:hover {
    color: var(--px-accent);
  }

  /* =========================================================
     CARD GRIDS
     ========================================================= */
  #px-home .px-grid {
    display: grid;
    gap: 20px;
  }

  #px-home .px-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  #px-home .px-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  #px-home .px-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #px-home .px-card {
    min-width: 0;
    text-align: left;
  }

  #px-home .px-card .px-media {
    aspect-ratio: 4 / 3;
    margin-bottom: 12px;
  }

  #px-home .px-card .px-label {
    margin-bottom: 6px;
  }

  #px-home .px-card .px-title {
    font-size: 21px;
  }

  #px-home .px-card .px-excerpt {
    margin-top: 9px;
    font-size: 13px;
  }

  #px-home .px-editor-grid .px-card .px-media {
    aspect-ratio: 16 / 10;
  }

  #px-home .px-editor-grid .px-card .px-title {
    font-size: clamp(26px, 2.7vw, 38px);
  }

  /* =========================================================
     FEATURE BANDS
     ========================================================= */
  #px-home .px-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(300px, .85fr);
    min-height: 470px;
    margin-top: 52px;
    background: #fff;
  }

  #px-home .px-feature-reverse {
    grid-template-columns: minmax(300px, .85fr) minmax(0, 1.65fr);
  }

  #px-home .px-feature-reverse .px-feature-media {
    order: 2;
  }

  #px-home .px-feature-reverse .px-feature-copy {
    order: 1;
  }

  #px-home .px-feature-media,
  #px-home .px-feature-media .px-media {
    min-height: 470px;
    height: 100%;
  }

  #px-home .px-feature-copy {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 48px;
    text-align: left;
  }

  #px-home .px-feature-copy .px-title {
    margin-top: 10px;
    font-size: clamp(33px, 3.7vw, 56px);
  }

  #px-home .px-feature-copy .px-excerpt {
    margin-top: 16px;
    margin-bottom: 23px;
    font-size: 15px;
  }

  /* =========================================================
     NEWS FEED
     ========================================================= */
  #px-home .px-news-list {
    border-top: 1px solid var(--px-line);
  }

  #px-home .px-news-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(310px, .9fr);
    min-height: 235px;
    border-bottom: 1px solid var(--px-line);
  }

  #px-home .px-news-row:nth-child(even) .px-news-copy {
    order: 2;
  }

  #px-home .px-news-row:nth-child(even) .px-news-media {
    order: 1;
  }

  #px-home .px-news-copy {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 31px 35px;
    text-align: left;
  }

  #px-home .px-news-copy .px-title {
    margin-top: 8px;
    font-size: clamp(25px, 2.9vw, 41px);
  }

  #px-home .px-news-copy .px-excerpt {
    margin-top: 12px;
    font-size: 13px;
  }

  #px-home .px-news-media {
    min-height: 235px;
  }

  #px-home .px-news-media img {
    height: 100%;
    object-fit: cover;
  }

  #px-home .px-load-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 26px;
  }

  /* =========================================================
     BOTTOM FEATURE
     ========================================================= */
  #px-home .px-bottom-feature {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(250px, 1fr);
    gap: 16px;
    margin-top: 58px;
  }

  #px-home .px-bottom-main {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    background: #222;
  }

  #px-home .px-bottom-main > a {
    position: absolute;
    inset: 0;
    display: block;
  }

  #px-home .px-bottom-main .px-media {
    position: absolute;
    inset: 0;
  }

  #px-home .px-bottom-main .px-media::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(0,0,0,.82), rgba(0,0,0,.10) 72%);
    pointer-events: none;
  }

  #px-home .px-bottom-copy {
    position: absolute;
    z-index: 2;
    left: 38px;
    right: 38px;
    bottom: 34px;
    text-align: left;
  }

  #px-home .px-bottom-copy .px-label {
    padding: 7px 9px 6px;
    color: #fff;
    background: var(--px-accent);
  }

  #px-home .px-bottom-copy .px-title,
  #px-home .px-bottom-copy .px-title *,
  #px-home .px-bottom-copy h2,
  #px-home .px-bottom-copy h2 * {
    max-width: 780px;
    margin-top: 10px;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    font-size: clamp(36px, 5vw, 68px);
    text-shadow: 0 3px 18px rgba(0,0,0,.32);
  }

  #px-home .px-bottom-side {
    display: grid;
    grid-template-rows: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  #px-home .px-side-card {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    min-height: 0;
  }

  #px-home .px-side-card .px-media {
    min-height: 150px;
    height: 100%;
  }

  #px-home .px-side-copy {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 15px;
    text-align: left;
  }

  #px-home .px-side-copy .px-title {
    margin-top: 5px;
    font-size: 18px;
  }

  /* =========================================================
     BUTTONS + CTA
     ========================================================= */
  #px-home .px-btn {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    padding: 11px 18px 10px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .05em;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    transition: color .2s ease, background .2s ease, border-color .2s ease;
  }

  #px-home .px-btn-dark {
    color: #ffffff;
    background: var(--px-text);
  }

  #px-home .px-btn-dark:hover {
    color: #ffffff;
    background: var(--px-accent);
  }

  #px-home .px-btn-outline {
    color: var(--px-text);
    background: transparent;
    border-color: var(--px-text);
  }

  #px-home .px-btn-outline:hover {
    color: #ffffff;
    background: var(--px-text);
  }

  #px-home .px-bottom-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-top: 50px;
    padding: 36px 40px;
    border-top: 5px solid var(--px-accent);
    background: var(--px-soft);
  }

  #px-home .px-bottom-cta > div {
    text-align: left;
  }

  #px-home .px-bottom-cta h2 {
    margin: 6px 0 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(27px, 3.1vw, 43px);
    line-height: 1.03;
    text-align: left;
  }

  /* =========================================================
     RESPONSIVE
     ========================================================= */
  @media (max-width: 1024px) {
    #px-home .px-home-shell {
      width: min(100% - 28px, 1180px);
    }

    #px-home .px-grid-4 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #px-home .px-feature,
    #px-home .px-feature-reverse {
      grid-template-columns: 1.25fr .75fr;
    }

    #px-home .px-feature-copy {
      padding: 34px;
    }

    #px-home .px-bottom-feature {
      grid-template-columns: minmax(0, 2fr) minmax(230px, 1fr);
    }

    #px-home .px-side-card {
      grid-template-columns: 1fr;
    }

    #px-home .px-side-card .px-media {
      min-height: 105px;
    }
  }

  @media (max-width: 767px) {
    #px-home .px-home-shell {
      width: 100%;
      padding-top: 0;
    }

    #px-home .px-section,
    #px-home .px-section-compact,
    #px-home .px-feature,
    #px-home .px-bottom-feature,
    #px-home .px-bottom-cta {
      width: calc(100% - 28px);
      margin-left: auto;
      margin-right: auto;
    }

    #px-home .px-hero-main {
      min-height: 500px;
    }

    #px-home .px-hero-main .px-media::after {
      background: linear-gradient(to top, rgba(0,0,0,.84), rgba(0,0,0,.10) 75%);
    }

    #px-home .px-hero-copy {
      left: 20px;
      right: 20px;
      bottom: 24px;
      width: auto;
    }

    #px-home .px-hero-copy .px-title,
    #px-home .px-hero-copy .px-title * {
      font-size: clamp(32px, 10vw, 46px) !important;
      line-height: 1.08 !important;
    }

    #px-home .px-hero-copy .px-excerpt {
      display: none;
    }

    #px-home .px-hero-lower {
      grid-template-columns: 1fr;
    }

    #px-home .px-hero-mini-grid {
      grid-template-columns: 1fr;
    }

    #px-home .px-mini-card {
      border-right: 0;
      border-bottom: 1px solid var(--px-line);
    }

    #px-home .px-mini-card > a {
      display: grid;
      grid-template-columns: 132px minmax(0, 1fr);
      gap: 13px;
      align-items: start;
    }

    #px-home .px-mini-card .px-media {
      aspect-ratio: 1 / 1;
      margin: 0;
    }

    #px-home .px-newsletter-card {
      padding: 24px 18px;
    }

    #px-home .px-section-head {
      align-items: flex-end;
    }

    #px-home .px-section-head h2 {
      font-size: 30px;
    }

    #px-home .px-section-link {
      font-size: 10px;
    }

    #px-home .px-grid-3,
    #px-home .px-grid-2 {
      grid-template-columns: 1fr;
    }

    #px-home .px-grid-4 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 15px;
    }

    #px-home .px-grid-4 .px-card .px-title {
      font-size: 17px;
    }

    #px-home .px-grid-4 .px-card .px-excerpt {
      display: none;
    }

    #px-home .px-feature,
    #px-home .px-feature-reverse {
      grid-template-columns: 1fr;
      min-height: 0;
    }

    #px-home .px-feature-reverse .px-feature-media,
    #px-home .px-feature-reverse .px-feature-copy {
      order: initial;
    }

    #px-home .px-feature-media,
    #px-home .px-feature-media .px-media {
      min-height: 285px;
    }

    #px-home .px-feature-copy {
      padding: 28px 22px 30px;
    }

    #px-home .px-feature-copy .px-title {
      font-size: 35px;
    }

    #px-home .px-editor-grid .px-card .px-title {
      font-size: 28px;
    }

    #px-home .px-news-row,
    #px-home .px-news-row:nth-child(even) {
      grid-template-columns: 1fr;
    }

    #px-home .px-news-row .px-news-copy,
    #px-home .px-news-row .px-news-media,
    #px-home .px-news-row:nth-child(even) .px-news-copy,
    #px-home .px-news-row:nth-child(even) .px-news-media {
      order: initial;
    }

    #px-home .px-news-media {
      min-height: 250px;
    }

    #px-home .px-news-copy {
      padding: 24px 20px 28px;
    }

    #px-home .px-news-copy .px-title {
      font-size: 30px;
    }

    #px-home .px-bottom-feature {
      grid-template-columns: 1fr;
    }

    #px-home .px-bottom-main {
      min-height: 450px;
    }

    #px-home .px-bottom-copy {
      left: 22px;
      right: 22px;
      bottom: 23px;
    }

    #px-home .px-bottom-copy .px-title,
    #px-home .px-bottom-copy .px-title * {
      font-size: clamp(34px, 11vw, 52px);
    }

    #px-home .px-bottom-side {
      grid-template-rows: initial;
    }

    #px-home .px-side-card {
      grid-template-columns: 125px minmax(0, 1fr);
    }

    #px-home .px-side-card .px-media {
      min-height: 130px;
    }

    #px-home .px-bottom-cta {
      align-items: flex-start;
      flex-direction: column;
      padding: 28px 22px;
    }
  }

  @media (max-width: 430px) {
    #px-home .px-grid-4 {
      grid-template-columns: 1fr;
    }

    #px-home .px-grid-4 .px-card {
      display: grid;
      grid-template-columns: 125px minmax(0, 1fr);
      gap: 12px;
      align-items: start;
    }

    #px-home .px-grid-4 .px-card .px-media {
      aspect-ratio: 1 / 1;
      margin: 0;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    #px-home *,
    #px-home *::before,
    #px-home *::after {
      animation-duration: .001ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: .001ms !important;
    }
  }

/* Server-rendered performance version: news rows after the first batch stay hidden until requested. */
#px-home .px-news-row[hidden] { display: none !important; }
#px-home .px-placeholder { width: 100%; height: 100%; min-height: inherit; background: linear-gradient(135deg,#e6e3dc,#cfcac0); }
#px-home .px-media img { width:100%; }


/* Defer rendering work for sections below the first screen. */
@supports (content-visibility: auto) {
  #px-home .px-section,
  #px-home .px-feature,
  #px-home .px-bottom-feature,
  #px-home .px-bottom-cta {
    content-visibility: auto;
    contain-intrinsic-size: 700px;
  }
}
