@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  body {
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
    background-color: #000000;
    color: #ffffff;
    padding-top: 10px;
  }

  h1 {
    text-transform: uppercase;
  }

  .span1 {
    font-weight: 400;
  }

  main {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: center;
    background-color: #000000;
    width: 100%;
  }

  /* Newsroom Hero Section */
  .newsroom-hero {
    width: 100%;
    background-color: #000000;
    padding: 100px 50px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: calc(auto - 88px);
  }

  .newsroom-hero__container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: flex-start;
  }

  .newsroom-hero__eyebrow {
    font-size: 16px;
    color: #b3b3b3;
    margin-bottom: 6px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .newsroom-hero__eyebrow.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .newsroom-hero__title {
    font-size: clamp(26px, 3vw, 50px);
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    margin: 0;
    color: #ffffff;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

  .newsroom-hero__title.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .newsroom-hero__subtitle {
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    margin: 0;
  }

  /* Tablet Responsive Styles */
  @media screen and (max-width: 1024px) and (min-width: 768px) {
    .newsroom-hero {
      padding: 80px 35px;
      min-height: auto;
    }

    .newsroom-hero__container {
      gap: 1px;
    }

    .newsroom-hero__eyebrow {
      font-size: 16px;
    }

    .newsroom-hero__title,
    .newsroom-hero__subtitle {
      font-size: clamp(36px, 7vw, 64px);
    }
  }

  /* Mobile Responsive Styles */
  @media screen and (max-width: 767px) {
    .newsroom-hero {
      padding: 60px 25px;
      min-height: auto;
    }

    .newsroom-hero__container {
      gap: 15px;
    }

    .newsroom-hero__eyebrow {
      font-size: 14px;
    }

    .newsroom-hero__title,
    .newsroom-hero__subtitle {
      font-size: clamp(32px, 8vw, 56px);
      line-height: 1.3;
    }
  }

  /* Small Mobile Devices */
  @media screen and (max-width: 480px) {
    .newsroom-hero {
      padding: 50px 25px;
      margin-top: 50px;
    }

    .newsroom-hero__container {
      gap: 1px;
    }

    .newsroom-hero__eyebrow {
      font-size: 16px;
    }

    .newsroom-hero__title,
    .newsroom-hero__subtitle {
      font-size: clamp(28px, 7vw, 48px);
    }
  }

  /* News Grid Section */
  .news-grid {
    width: 100%;
    background-color: #131313;
    padding: 80px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .news-grid__container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .news-card {
    background-color: #000000;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.6s ease;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
  }

  .news-card.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }

  .news-card__image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #e0e0e0;
    position: relative;
  }

  .news-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .news-card__content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
  }

  .news-card__date {
    font-size: 14px;
    font-weight: 400;
    color: #c7c7c7;
    margin: 0;
  }

  .news-card__title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .news-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    margin-top: auto;
    transition: color 0.3s ease;
  }

  .news-card__link:hover {
    color: #666666;
  }

  .news-card__link-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
  }

  .news-card__link:hover .news-card__link-icon {
    transform: translateX(5px);
  }

  /* Tablet Responsive Styles for News Grid */
  @media screen and (max-width: 1024px) and (min-width: 768px) {
    .news-grid {
      padding: 60px 35px;
    }

    .news-grid__container {
      grid-template-columns: repeat(2, 1fr);
      gap: 25px;
    }

    .news-card__image-wrapper {
      height: 220px;
    }

    .news-card__content {
      padding: 20px;
    }

    .news-card__title {
      font-size: 16px;
    }
  }

  /* Mobile Responsive Styles for News Grid */
  @media screen and (max-width: 767px) {
    .news-grid {
      padding: 50px 25px;
    }

    .news-grid__container {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .news-card__image-wrapper {
      height: 200px;
    }

    .news-card__content {
      padding: 20px;
      gap: 12px;
    }

    .news-card__date {
      font-size: 13px;
    }

    .news-card__title {
      font-size: 16px;
    }

    .news-card__link {
      font-size: 13px;
    }
  }

  /* Small Mobile Devices for News Grid */
  @media screen and (max-width: 480px) {
    .news-grid {
      padding: 40px 20px;
    }

    .news-grid__container {
      gap: 18px;
    }

    .news-card__image-wrapper {
      height: 180px;
    }

    .news-card__content {
      padding: 18px;
    }
  }