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

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

.newsroom-text {
  text-align: center;
  padding-top: 21vh;
  font-size: 100px;
  color: #ffffffff;
}

.container {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.holder {
  width: 430px;
  height: 500px;
}

.holder img {
  object-fit: cover;
  width: 430px;
  height: 300px;
}

.holder h2 {
  margin-top: 1px;
  margin-bottom: 1px;
  display: block;
  color: black;
}

.holder h3 {
  display: block;
  font-size: 15px;
  margin-top: 4px;
  margin-bottom: 3px;
  color: rgb(62, 62, 62);
}

/* ===== MOBILE LAYOUT ===== */
@media (max-width: 768px) {
  /* Header / black section */
  main > div {
    margin-top: 0;
    width: 100%;
    height: auto;
    background-color: black;
    padding: 80px 16px 40px;
    box-sizing: border-box;
  }

  .newsroom-text {
    padding-top: 0;
    font-size: 38px;
    line-height: 1.1;
    text-align: left;
  }

  /* Whole news list */
  .container {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0 16px 40px;
    box-sizing: border-box;
  }

  .holder {
    width: 100%;
    height: auto;
  }

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

  /* First card: bigger hero image */
  .container .holder:first-child img {
    height: 260px;
    object-fit: cover;
  }

  /* Other cards: slightly smaller images */
  .container .holder:not(:first-child) img {
    height: 190px;
    object-fit: cover;
  }

  .holder h2 {
    font-size: 18px;
    margin: 8px 0 4px;
    line-height: 1.2;
  }

  .holder h3 {
    font-size: 13px;
    margin: 2px 0;
  }
}

/* Extra small phones */
@media (max-width: 480px) {
  .newsroom-text {
    font-size: 30px;
  }

  .container .holder:first-child img {
    height: 220px;
  }

  .container .holder:not(:first-child) img {
    height: 170px;
  }

  .holder h2 {
    font-size: 16px;
  }

  .holder h3 {
    font-size: 12px;
  }
}
