body {
  width: 100vw;
  max-width: 100vw;
  overflow-x: hidden;
  font-family: "Nunito", sans-serif;
}

a{
  text-decoration: none;
  color: white;
}

main div {
  margin-top: -90px;
  width: 100vw;
  height: 70vh;
  background-color: black;
}

.newsroom-text {
  padding-top: 11vh;
  padding-bottom: 20px;
  font-size: 70px;
  width: 63vw;
  margin-right: calc(3vw + 20px);
  float: right;
  color: #ffffffff;
  font-family: monospace;
}

.section-1 {
  margin-top: 30px;
  width: 100vw;
  display: flex;
}

.section-1 img {
  width: 55vw;
  height: 80vh;
  margin-left: 5vw;
}

.section-1 div {
  padding: 0vh 3vw 0vh 3vw;
  font-size: 22px;
}

.section-2 h3 {
  width: 60vw;
  margin-left: 35vw;
  margin-right: 5vw;
  font-size: 26px;
  font-weight: 500;
}

.container {
  margin-top: 30px;
  display: grid;
  width: 90vw;
  grid-template-columns: repeat(4, 1fr);
  padding: 0vh 5vw 0vh 5vw;
}

.holder {
  width: 330px;
  height: 500px;
  color: #ffffffff;
}

.holder div {
  transform: translateY(-120%);
  width: 250px;
  margin-left: 8px;
  font-weight: 500;
}

.holder img {
  object-fit: cover;
  width: 330px;
  height: 450px;
}

/* ============ MOBILE LAYOUT (max-width: 768px) ============ */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  /* ---------- HEADER TITLE SECTION ---------- */
  main div {
    margin-top: 0 !important;
    width: 100% !important;
    height: auto !important;
    padding: 40px 20px;
    background: black;
    box-sizing: border-box;
  }

  .newsroom-text {
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 32px !important;
    line-height: 1.2;
    text-align: left;
  }

  /* ---------- SECTION 1 (Image + Text) ---------- */
  .section-1 {
    display: block !important;
    width: 100%;
    margin-top: 20px;
  }

  .section-1 img {
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
  }

  .section-1 div {
    padding: 20px !important;
    font-size: 16px !important;
    line-height: 1.5;
  }

  /* ---------- SECTION 2 (Full article text) ---------- */
  .section-2 h3 {
    width: 100% !important;
    margin: 0 !important;
    padding: 20px;
    font-size: 16px !important;
    line-height: 1.5;
    box-sizing: border-box;
  }

  /* ---------- IMAGE GRID (stacked images) ---------- */
  .container {
    width: 100% !important;
    padding: 0 !important;
    margin-top: 20px;
    display: flex !important;
    flex-direction: column !important;
    gap: 20px;
    align-items: center;
  }

  .holder {
    width: 100% !important;
    height: auto !important;
    padding: 0 0;
  }

  .holder img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover;
  }

  .holder div {
    display: none; /* hides empty text overlays */
  }
}

/* ============ EXTRA SMALL (max-width: 480px) ============ */
@media (max-width: 480px) {
  .newsroom-text {
    font-size: 26px !important;
  }

  .section-1 div,
  .section-2 h3 {
    font-size: 15px !important;
  }
}
