.smallNewsBlock {
  padding: 112px 0;
  width: 100%;
  background: rgba(5, 38, 46, 0.5);
}

.smallNewsBlock__container {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin: 0 auto;
  max-width: 1280px;
  width: 90%;
}

.smallNewsBlock__header {
  display: grid;
  gap: 80px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 500px);
}

.smallNewsBlock__header-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

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

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

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

.smallNewsBlock__header-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 160px;
}

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

.smallNewsBlock__button {
  align-items: center;
  background: transparent;
  border: 1px solid #ffffff;
  border-radius: 4px;
  color: #ffffff;
  display: inline-flex;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  gap: 10px;
  justify-content: center;
  line-height: 1.6;
  padding: 10px 20px;
  text-decoration: none;
  width: fit-content;
}

.smallNewsBlock__button:hover {
  background: rgba(255, 255, 255, 0.2);
}
.smallNewsBlock__button-icon {
  display: block;
  filter: brightness(0) invert(1);
  height: 24px;
  width: 24px;
}

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

.smallNewsBlock__card:nth-child(2) {
  margin-top: 100px;
}

.smallNewsBlock__card:nth-child(3) {
  margin-top: 200px;
}

.smallNewsBlock__card {
  display: flex;
  flex-direction: column;
  height: fit-content;
  border-radius: 20px;
  overflow: hidden;
}

.smallNewsBlock__card-image {
  aspect-ratio: 394.67 / 240;
  border-radius: 20px;
  display: block;
  height: auto;
  object-fit: cover;
  transform: scale(1);
  transition:
    transform 400ms ease,
    filter 280ms ease;
  width: 100%;
  overflow: hidden;
}

.smallNewsBlock__card-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  padding: 16px;
}

.smallNewsBlock__card:hover {
  background-color: rgba(6, 32, 39, 0.8);
}

@media (hover: hover) and (pointer: fine) {
  .smallNewsBlock__card:hover .smallNewsBlock__card-image,
  .smallNewsBlock__card:focus-within .smallNewsBlock__card-image {
    filter: brightness(1.03);
    transform: scale(1.08);
  }
}

.smallNewsBlock__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;
}

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

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

.smallNewsBlock__read-more {
  align-items: center;
  color: #ffffff;
  display: inline-flex;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  gap: 8px;
  line-height: 1.6;
  margin-top: 20px;
  text-decoration: none;
}

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

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

@media (max-width: 1200px) {
  .smallNewsBlock__header {
    gap: 48px;
    grid-template-columns: 1fr;
  }

  .smallNewsBlock__title {
    font-size: 50px;
  }

  .smallNewsBlock__grid {
    gap: 28px;
  }

  .smallNewsBlock__card:nth-child(2),
  .smallNewsBlock__card:nth-child(3) {
    margin-top: 0;
  }
}

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

  .smallNewsBlock__title {
    font-size: 42px;
  }

  .smallNewsBlock__text {
    font-size: 18px;
  }

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

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

  .smallNewsBlock__container {
    gap: 36px;
  }

  .smallNewsBlock__title {
    font-size: 36px;
  }

  .smallNewsBlock__text {
    font-size: 16px;
  }

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

  .smallNewsBlock__card-title {
    font-size: 30px;
  }

  .smallNewsBlock__card-text,
  .smallNewsBlock__read-more {
    font-size: 16px;
  }
  .smallNewsBlock__header-right {
    padding-top: 0px;
  }
}
