.newsBlock {
  padding: 112px 0;
  width: 100%;
}

.newsBlock__container {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin: 0 auto;
  max-width: 1280px;
  width: min(100% - 128px, 1280px);
}

.newsBlock__heading {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 768px;
}

.newsBlock__top-row {
  align-items: flex-start;
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
}

.newsBlock__top-text {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.newsBlock__top-icon {
  display: block;
  height: 9px;
  width: 54px;
}

.newsBlock__title {
  color: #ffffff;
  font-family: "Gilda Display", serif;
  font-size: 60px;
  font-weight: 400;
  letter-spacing: 0.6px;
  line-height: 1.1;
  margin: 0;
}

.newsBlock__intro {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  max-width: 680px;
}

.newsBlock__section-title {
  color: #ffffff;
  font-family: "Gilda Display", serif;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.32px;
  line-height: 1.2;
  margin: 0 0 32px;
}

.newsBlock__featured-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.newsBlock__featured-main {
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow: hidden;
  transition: background-color 0.2s ease;
}

.newsBlock__featured-side {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.newsBlock__featured-side-item {
  border-radius: 20px;
  display: grid;
  gap: 24px;
  grid-template-columns: 250px minmax(0, 1fr);
  overflow: hidden;
  transition: background-color 0.2s ease;
}

.newsBlock__card-image {
  border-radius: 20px;
  display: block;
  object-fit: cover;
  transform: scale(1);
  transition: transform 400ms ease, filter 280ms ease;
  width: 100%;
  overflow: hidden;
}

.newsBlock__card-image--main {
  aspect-ratio: 3 / 2;
  max-height: 416px;
}

.newsBlock__card-image--side {
  aspect-ratio: 1 / 1;
  height: 250px;
}

.newsBlock__card-image--latest {
  aspect-ratio: 3 / 2;
  max-height: 270px;
}

.newsBlock__card-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
}

.newsBlock__card-content--side {
  justify-content: center;
}

.newsBlock__card-label {
  align-self: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  padding: 4px 10px;
}

.newsBlock__card-title {
  color: #ffffff;
  font-family: "Gilda Display", serif;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
}

.newsBlock__card-title--main {
  font-size: 40px;
  letter-spacing: 0.4px;
}

.newsBlock__card-title--side,
.newsBlock__card-title--latest {
  font-size: 32px;
  letter-spacing: 0.32px;
}

.newsBlock__card-excerpt {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}

.newsBlock__card-excerpt--main {
  font-size: 20px;
}

.newsBlock__read-more {
  align-items: center;
  color: #ffffff;
  display: inline-flex;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  gap: 8px;
  line-height: 1.6;
  margin-top: 4px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.newsBlock__read-more:hover {
  text-decoration: underline;
}

.newsBlock__read-more-icon {
  display: block;
  height: 15px;
  width: 15px;
}

.newsBlock__latest-grid {
  display: grid;
  gap: 64px 32px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.newsBlock__latest-item {
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow: hidden;
  transition: background-color 0.2s ease;
}

.newsBlock__featured-main:hover,
.newsBlock__featured-side-item:hover,
.newsBlock__latest-item:hover {
  background-color: rgba(6, 32, 39, 0.8);
}

@media (hover: hover) and (pointer: fine) {
  .newsBlock__featured-main:hover .newsBlock__card-image,
  .newsBlock__featured-side-item:hover .newsBlock__card-image,
  .newsBlock__latest-item:hover .newsBlock__card-image,
  .newsBlock__featured-main:focus-within .newsBlock__card-image,
  .newsBlock__featured-side-item:focus-within .newsBlock__card-image,
  .newsBlock__latest-item:focus-within .newsBlock__card-image {
    filter: brightness(1.03);
    transform: scale(1.08);
  }
}

@media (max-width: 1200px) {
  .newsBlock__container {
    width: min(100% - 80px, 1280px);
  }

  .newsBlock__title {
    font-size: 52px;
  }

  .newsBlock__featured-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .newsBlock {
    padding: 92px 0;
  }

  .newsBlock__container {
    gap: 64px;
    width: min(100% - 48px, 1280px);
  }

  .newsBlock__title {
    font-size: 42px;
  }

  .newsBlock__intro {
    font-size: 18px;
  }

  .newsBlock__card-image--main {
    aspect-ratio: 1 / 1;
    max-height: 250px;
  }

  .newsBlock__latest-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .newsBlock {
    padding: 72px 0;
  }

  .newsBlock__container {
    gap: 52px;
    width: min(100% - 32px, 1280px);
  }

  .newsBlock__title {
    font-size: 36px;
  }

  .newsBlock__section-title {
    margin-bottom: 24px;
  }

  .newsBlock__featured-side-item {
    gap: 18px;
    grid-template-columns: 1fr;
  }

  .newsBlock__card-image--side {
    height: auto;
    max-height: 250px;
  }

  .newsBlock__card-title--main {
    font-size: 34px;
  }

  .newsBlock__card-title--side,
  .newsBlock__card-title--latest {
    font-size: 28px;
  }

  .newsBlock__latest-grid {
    grid-template-columns: 1fr;
  }
}
