.as69-news-section {
  padding: 70px 0;
  background: #fff;
}

.as69-news-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.as69-news-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f2f2f2;
  color: #c90000;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.as69-news-title {
  margin: 0;
  color: #111;
  font-weight: 800;
}

.as69-news-subtitle {
  max-width: 620px;
  margin: 12px 0 0;
  color: #555;
  font-size: 17px;
  line-height: 1.55;
}

.as69-news-head-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 2px solid #d60000;
  border-radius: 4px;
  color: #d60000;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: .25s ease;
}

.as69-news-head-link:hover {
  background: #d60000;
  color: #fff;
  text-decoration: none;
}

.as69-news-main {
  position: relative;
  display: block;
  min-height: 430px;
  margin-bottom: 26px;
  overflow: hidden;
  border-radius: 18px;
  background: #111;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 18px 45px rgba(0,0,0,.16);
}

.as69-news-main:hover {
  color: #fff;
  text-decoration: none;
}

.as69-news-main__image {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.as69-news-main__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.as69-news-main:hover .as69-news-main__image img {
  transform: scale(1.04);
}

.as69-news-main__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.62) 38%, rgba(0,0,0,.18) 100%),
    linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.55) 100%);
}

.as69-news-main__content {
  position: relative;
  z-index: 3;
  max-width: 680px;
  padding: 56px;
}

.as69-news-date {
  display: inline-flex;
  align-items: center;
  margin-bottom: 13px;
  color: #d60000;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.as69-news-main .as69-news-date {
  color: #fff;
  background: #d60000;
  padding: 7px 12px;
  border-radius: 999px;
}

.as69-news-main__title {
  margin-bottom: 18px;
  font-size: 38px;
  font-weight: 900;
  line-height: 1.12;
}

.as69-news-main__text {
  max-width: 580px;
  margin-bottom: 24px;
  color: rgba(255,255,255,.88);
  font-size: 18px;
  line-height: 1.55;
}

.as69-news-readmore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 4px;
  background: #d60000;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.as69-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.as69-news-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  color: #111;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,.09);
  transition: transform .25s ease, box-shadow .25s ease;
}

.as69-news-card:hover {
  transform: translateY(-4px);
  color: #111;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(0,0,0,.14);
}

.as69-news-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #eee;
}

.as69-news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.as69-news-card:hover .as69-news-card__image img {
  transform: scale(1.05);
}

.as69-news-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 22px 22px 24px;
}

.as69-news-card__title {
  margin-bottom: 10px;
  color: #111;
  font-size: 20px;
  font-weight: 850;
  line-height: 1.25;
}

.as69-news-card__body p {
  margin: 0;
  color: #555;
  font-size: 15px;
  line-height: 1.55;
}

.as69-news-bottom {
  display: none;
  margin-top: 28px;
  text-align: center;
}

.as69-news-button {
  min-width: 220px;
}

/* Планшеты */
@media (max-width: 991px) {
  .as69-news-section {
    padding: 54px 0;
  }

  .as69-news-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .as69-news-main {
    min-height: 380px;
    border-radius: 15px;
  }

  .as69-news-main__content {
    padding: 42px;
  }

  .as69-news-main__title {
    font-size: 31px;
  }

  .as69-news-grid {
    gap: 18px;
  }

  .as69-news-card__body {
    padding: 18px;
  }

  .as69-news-card__title {
    font-size: 18px;
  }
}

/* Мобильные */
@media (max-width: 767px) {
  .as69-news-section {
    padding: 42px 0;
  }

  .as69-news-head-link {
    display: none;
  }

  .as69-news-subtitle {
    font-size: 15px;
  }

  .as69-news-main {
    min-height: auto;
    border-radius: 14px;
  }

  .as69-news-main__image,
  .as69-news-main__overlay {
    position: relative;
    inset: auto;
  }

  .as69-news-main__image {
    height: 220px;
  }

  .as69-news-main__overlay {
    display: none;
  }

  .as69-news-main__content {
    padding: 22px;
    background: #141414;
  }

  .as69-news-main__title {
    font-size: 24px;
    line-height: 1.2;
  }

  .as69-news-main__text {
    font-size: 15px;
  }

  .as69-news-grid {
    grid-template-columns: 1fr;
  }

  .as69-news-card {
    border-radius: 14px;
  }

  .as69-news-card__image {
    aspect-ratio: 16 / 10;
  }

  .as69-news-bottom {
    display: block;
  }
}

/* Маленькие телефоны */
@media (max-width: 420px) {
  .as69-news-section {
    padding: 34px 0;
  }

  .as69-news-main__image {
    height: 190px;
  }

  .as69-news-main__content {
    padding: 18px;
  }

  .as69-news-main__title {
    font-size: 21px;
  }

  .as69-news-readmore {
    width: 100%;
  }

  .as69-news-button {
    width: 100%;
  }
}