.newsCoverSection {
  display: flex;
  flex-direction: column;
  gap: 1px;
  width: 100%;
  max-width: 100vw;
  overflow-x: clip;
}

.newsCoverSection__content {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 483px;
  padding: 130px 144px;
  background-color: #f6efdf;
  text-align: center;
}

.newsCoverSection__contentInner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
}

.newsCoverSection__title {
  max-width: 894px;
  margin: 0;
  font-family: 'Outfit', 'Trebuchet MS', 'Segoe UI', sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  color: #17407d;
  text-wrap: balance;
}

.newsCoverSection__imageWrap {
  width: 100%;
  height: 553px;
  background-color: #17407d;
}

.newsCoverSection__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.newsCoverSection__image--placeholder {
  min-height: 100%;
  background-color: #17407d;
}

@media (max-width: 768px) {
  .newsCoverSection__content {
    min-height: auto;
    padding: 24px 16px;
  }

  .newsCoverSection__title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.32px;
  }

  .newsCoverSection__imageWrap {
    height: 324px;
  }
}
