:root {
      --eyebrow-font-family: "Source Sans Pro", Helvetica, sans-serif;
      --eyebrow-font-size: 18px;
      --eyebrow-font-weight: 700;
      --eyebrow-letter-spacing: 1.33px;
      --eyebrow-line-height: 28px;
      
      --hero-body-font-family: "Source Sans Pro", Helvetica, sans-serif;
      --hero-body-font-size: 20px;
      --hero-body-font-weight: 400;
      --hero-body-line-height: 32px;
      
      --secondary-button-font-family: "Source Sans Pro", Helvetica, sans-serif;
      --secondary-button-font-size: 16px;
      --secondary-button-font-weight: 700;
      --secondary-button-letter-spacing: 1px;
      --secondary-button-line-height: 22px;
      
      --color-orange: #d8632e;
      --color-teal: #1b6780;
      --color-mine-shaft: #393939;
      --color-orient: #005f7b;
      --color-off-white: #fbfbfb;
      --color-gray-light: #efeff4;
      --color-gray-text: #585955;
      --color-dark: #151b22;
      --color-off-black: #12181f;
      --color-white: #ffffff;
    }

    .submenu {
      display: flex;
      list-style: none;
      position: relative;
      justify-content:space-between;  /* center the links */
      gap: 8px;                 /* space between links */
      background: #f0f0f0;      /* light gray bar */
      padding: 6px;
      border-radius: 48px;      /* rounded container */
      width: 100%;       /* shrink to content */
    }

    /* Links */
    .submenu li {
      list-style: none;
      font-family: 'Proxima Nova', sans-serif;
      font-size: 18px;
      text-decoration: none;
      color: #333;
      padding: 6px 14px !important;
      border-radius: 24px;       /* rounded hover shape */
      font-weight: 300;
      transition: all 0.2s ease;
      text-transform: none !important;
    }

    .accordion-menu ul>li {
      text-indent: 0;
      font-weight: 500;
    }

    .accordion-menu ul>li:before {
      padding-right: 0 !important;
    }

    .submenu li:before {
      content: "";
    }

    .submenu li.stays-underlined {
      background: white;
      color: #23819f;
      font-weight: 700;
      box-shadow: 0 1px 3px rgba(0,0,0,0.15);
    }

    .submenu-dropdown__menu li:before {
      content: "";
      float: none !important;
    }

    /* Hover effect */
    .submenu a:hover {
      background: white;
      color: #000;
      box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }

    .submenu a.active {
      background: white;
      color: #000;
      box-shadow: 0 1px 3px rgba(0,0,0,0.15);
    }

    .submenu-dropdown {
      width: min(520px, 100%);
      margin: 10px auto 0;
    }

    .submenu-dropdown__summary {
      cursor: pointer;
      background: #f0f0f0;
      border-radius: 48px;
      padding: 10px 14px;

      display: flex;
      align-items: center;
      justify-content: space-between;

      font-weight: 600;
      color: #333;
      list-style: none;
    }

    .submenu-dropdown__summary::-webkit-details-marker {
      display: none;
    }

    .submenu-dropdown__menu {
      list-style: none;
      margin: 8px 0 0;
      padding: 6px;

      background: #f0f0f0;
      border-radius: 12px;

      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .submenu-dropdown__menu li {
      padding: 10px 12px !important;
      border-radius: 48px;
      font-weight: 500;
      color: #333;
      cursor: pointer;
      transition: all 0.2s ease;
      
    }

    .submenu-dropdown__menu li:hover {
      background: #fff;
      color: #000;
      box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }

    .submenu-dropdown__menu li.stays-underlined {
      background: #fff;
      color: #23819f;
      font-weight: 700;
      box-shadow: 0 1px 3px rgba(0,0,0,0.15);
    }

    .article-section {
      display: grid;
      min-height: 495px;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      max-width: 1200px;
      margin: 20px auto;
    }

    /* Card */
    .article-card {
      background: #f4f4f4;         /* light gray */
      /* border-radius: 14px; */
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: all 0.25s ease;
    }

    /* Hover */
    .article-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    }

    /* Image */
    .article-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    /* Content */
    .card-body {
      padding: 16px 18px 18px;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    /* Date + Read time */
    .meta {
      font-size: 0.85rem;
      color: #777;
      margin-bottom: 8px;
    }

    /* Title */
    .card-body h3 {
      font-family: arno-pro, sans-serif;
      font-size: 1.5rem;
      margin: 0 0 16px;
      line-height: 1.4;
      color: #222;
      flex-grow: 1;
    }

    /* Footer */
    .card-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    /* Category badge */
    .badge {
      background: #e0e0e0;
      color: #444;
      padding: 4px 10px;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 500;
    }

    /* Read more link */
    .card-footer a {
      text-decoration: none;
      color: #0066cc;
      font-weight: 500;
      font-size: 0.9rem;
      transition: color 0.2s;
    }

    .card-footer a:hover {
      color: #004999;
    }

    .newsroom-hero {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 80px;
      padding: 80px 180px 120px;
      width: 100%;
      background-color: var(--color-off-white);
    }

    .hero-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      width: 100%;
    }

    .hero-title-area {
      display: inline-flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .hero-title-content {
      display: inline-flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }

    .eyebrow-container {
      display: flex;
      flex-direction: column;
      max-width: 1080px;
      align-items: flex-start;
    }

    .eyebrow {
      font-family: var(--eyebrow-font-family);
      font-size: var(--eyebrow-font-size);
      font-weight: var(--eyebrow-font-weight);
      color: var(--color-orange);
      letter-spacing: var(--eyebrow-letter-spacing);
      line-height: var(--eyebrow-line-height);
    }

    .title-container {
      display: flex;
      flex-direction: column;
      max-width: 1080px;
      align-items: flex-start;
    }

    .hero-title {
      max-width: 460px;
      font-family: Georgia, "Times New Roman", serif;
      font-weight: 400;
      color: var(--color-mine-shaft);
      font-size: 64px;
      letter-spacing: 0;
      line-height: 70.4px;
    }

    .hero-description {
      display: flex;
      max-width: 500px;
      align-items: center;
      padding: 16px 0;
    }

    .hero-body {
      font-family: var(--hero-body-font-family);
      font-size: var(--hero-body-font-size);
      font-weight: var(--hero-body-font-weight);
      color: var(--color-mine-shaft);
      line-height: var(--hero-body-line-height);
    }

   .articles-section {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 30px;
      width: 100%;
    }

    
    .horizontal-card {
      display: flex;
      min-height: 500px;
      background: #f4f4f4;
      /* border-radius: 14px; */
      overflow: hidden;
      max-width: 900px;
      transition: all 0.25s ease;
    }

    /* Hover */
    .horizontal-card:hover {
      box-shadow: 0 6px 18px rgba(0,0,0,0.08);
      transform: translateY(-2px);
    }

    /* Image takes 50% */
    .news-card-image {
      flex: 1;              /* equal width */
      min-width: 0;         /* prevents overflow */
    }

    /* Content takes 50% */
    .card-content {
      flex: 1;              /* equal width */
      padding: 18px 20px;

      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    /* Image styling */
    .news-card-image img {
      width: 100%;
      height: 100%;
      object-position: left center;
      object-fit: cover;
      display: block;
    }

    /* Meta */
    .card-meta {
      font-size: 0.85rem;
      color: #777;
      margin-bottom: 6px;
    }

    /* Title */
    .card-title {
      font-family: arno-pro, sans-serif;
      margin: 0 0 12px;
      font-size: 2rem;
      line-height: 1.4;
      color: #222;
    }

    /* Category */
    .card-category {
      background: #e0e0e0;
      color: #444;
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 500;
    }

    .horizontal-card-link {
      display: flex;          
      text-decoration: none;  
      color: inherit;         
    }

    a.horizontal-card-link {
      margin-bottom: 0;
    }

    .horizontal-card-link:hover .horizontal-card {
      box-shadow: 0 8px 22px rgba(0,0,0,0.12);
      transform: translateY(-3px);
    }

    .horizontal-card-link {
      cursor: pointer;
    }
    @media (max-width: 768px) {
      #mainBody {
        padding: 0 16px;
      }
      .horizontal-card {
        display: none;
      }

      .news-card-image,
      .card-content {
        width: 100%;
      }

      .news-card-image {
        height: 200px;
      }

      .article-section {
        display: block;
        /* grid-template-columns: repeat(3, 1fr); */
        gap: 24px;
        max-width: 1200px;
        margin: 20px auto;
      }

      .article-card img {
        height: unset;
      }

      .news-hero-container, .eyebrow-container, .hero-header, .hero-description{
        display: block;
      }

      .hero-title {
        font-size: 36px;
        line-height: 42px;
      }
    }

    /* Switch category menu to mobile dropdown at 1120px */
    @media (max-width: 1119px) {
      .submenu.is-desktop-flex {
        display: none !important;
      }
      .submenu-dropdown.is-mobile-only {
        display: block !important;
      }
      .article-section {
        margin: 20px auto;
      }
      .horizontal-card {
        display: none !important ;
      }
    }

    @media (min-width: 1120px) {
      .submenu-dropdown.is-mobile-only {
        display: none !important;
      }
    }