.superis-news,
.superis-news * {
  box-sizing: border-box;
}

.superis-news {
  width: 100%;
  padding: 92px 24px 104px;
  background: #f6f6f6;
  color: #151515;
  font-family: Arial, Helvetica, sans-serif;
}

.superis-news__inner {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
}

.superis-news__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 42px;
}

.superis-news__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px !important;
  color: #e3261c !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase;
}

.superis-news__eyebrow::before {
  width: 30px;
  height: 2px;
  flex: 0 0 auto;
  content: "";
  background: #e3261c;
}

.superis-news__title {
  margin: 0 !important;
  color: #151515 !important;
  font-size: clamp(42px, 5vw, 64px) !important;
  font-weight: 900 !important;
  line-height: 0.98 !important;
  letter-spacing: -0.05em !important;
}

.superis-news__intro {
  width: min(100%, 410px);
  margin: 0 !important;
  color: #666666 !important;
  font-size: 16px !important;
  line-height: 1.65 !important;
}

.superis-news__grid {
  display: grid;
  grid-template-columns: repeat(var(--superis-news-columns, 3), minmax(0, 1fr));
  gap: 26px;
}

.superis-news-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid #e5e5e5;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(21, 21, 21, 0.07);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.superis-news-card:hover {
  border-color: rgba(227, 38, 28, 0.28);
  box-shadow: 0 20px 48px rgba(21, 21, 21, 0.12);
  transform: translateY(-5px);
}

.superis-news-card__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #ececec;
  text-decoration: none !important;
}

.superis-news-card__image {
  display: block;
  width: 100%;
  height: 100% !important;
  margin: 0 !important;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.superis-news-card:hover .superis-news-card__image {
  transform: scale(1.045);
}

.superis-news-card__placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(227, 38, 28, 0.12), transparent 60%),
    #eeeeee;
}

.superis-news-card__placeholder span {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border-radius: 20px;
  background: #e3261c;
  color: #ffffff;
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}

.superis-news-card__category {
  position: absolute;
  right: 16px;
  bottom: 16px;
  max-width: calc(100% - 32px);
  padding: 8px 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #e3261c;
  box-shadow: 0 8px 20px rgba(227, 38, 28, 0.24);
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.superis-news-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 25px 25px 27px;
}

.superis-news-card__date {
  margin-bottom: 12px;
  color: #e3261c;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.06em;
}

.superis-news-card__title {
  margin: 0 0 13px !important;
  color: #151515 !important;
  font-size: 23px !important;
  font-weight: 900 !important;
  line-height: 1.14 !important;
  letter-spacing: -0.03em !important;
}

.superis-news-card__title a {
  color: inherit !important;
  text-decoration: none !important;
}

.superis-news-card__title a:hover,
.superis-news-card__title a:focus-visible {
  color: #e3261c !important;
}

.superis-news-card__excerpt {
  margin: 0 0 24px !important;
  color: #666666 !important;
  font-size: 14px !important;
  line-height: 1.65 !important;
}

.superis-news-card__link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: auto;
  gap: 10px;
  color: #151515 !important;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none !important;
}

.superis-news-card__link span:last-child {
  color: #e3261c;
  font-size: 18px;
  transition: transform 0.2s ease;
}

.superis-news-card__link:hover span:last-child,
.superis-news-card__link:focus-visible span:last-child {
  transform: translateX(4px);
}

.superis-news__pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 42px;
  gap: 9px;
}

.superis-news__page {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid #dddddd;
  border-radius: 50%;
  background: #ffffff;
  color: #151515 !important;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none !important;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.superis-news__page:hover,
.superis-news__page:focus-visible,
.superis-news__page.is-current {
  border-color: #e3261c;
  background: #e3261c;
  color: #ffffff !important;
}

.superis-news__empty {
  display: grid;
  min-height: 220px;
  padding: 34px;
  place-content: center;
  gap: 10px;
  border: 1px solid #e5e5e5;
  border-radius: 24px;
  background: #ffffff;
  color: #666666;
  text-align: center;
}

.superis-news__empty strong {
  color: #151515;
  font-size: 22px;
  line-height: 1.2;
}

@media (max-width: 1024px) {
  .superis-news {
    padding: 76px 28px 88px;
  }

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

@media (max-width: 767px) {
  .superis-news {
    padding: 60px 18px 72px;
  }

  .superis-news__header {
    display: block;
    margin-bottom: 30px;
  }

  .superis-news__title {
    font-size: clamp(38px, 13vw, 50px) !important;
  }

  .superis-news__intro {
    width: 100%;
    margin-top: 18px !important;
    font-size: 15px !important;
  }

  .superis-news__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .superis-news-card {
    border-radius: 20px;
  }

  .superis-news-card__body {
    padding: 22px;
  }

  .superis-news-card__title {
    font-size: 21px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .superis-news-card,
  .superis-news-card__image,
  .superis-news-card__link span:last-child,
  .superis-news__page {
    transition: none !important;
  }
}

