.news-card {
  padding: 48px;
  border-bottom: 1px solid #cb1512;
  cursor: pointer;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .news-card {
    padding: 24px;
  }
}
.news-card:hover {
  opacity: 0.8;
}
.news-card:last-child {
  border: none;
}
.news-card:nth-child(odd) {
  border-left: 1px solid #cb1512;
}
.news-card:nth-child(even):nth-last-of-type(2) {
  border-bottom: none;
}
.news-card__title-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 16px;
}
.news-card__title {
  margin-top: 16px;
  font-size: 20px;
  font-weight: 500;
}
.news-card__title-row .news-card__title {
  margin-top: 0;
}
.news-card__description {
  margin-top: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-card__media {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #000;
  height: 290px;
  display: flex;
}

.news-card__player {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  object-fit: cover;
  object-position: center;
}

.news-card__media img.news-card__player {
  display: block;
  width: 100%;
  height: auto;
}

.news-card__player-button {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-card__player-icon {
  width: 32px;
  height: 32px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding: 1.5rem 0;
}
.pagination__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 6.5rem;
  padding: 0.65rem 1rem;
  border: 1px solid #cb1512;
  border-radius: 0.65rem;
  color: #cb1512;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  background: #ffffff;
}
.pagination__link:hover {
  opacity: 0.85;
}
.pagination__link--disabled {
  border-color: #ccced1;
  color: #9ca3af;
  cursor: default;
  pointer-events: none;
  background: #f1f1f1;
}
.pagination__status {
  font-size: 0.95rem;
  color: #4b5563;
  font-weight: 500;
}
.pagination--admin {
  justify-content: flex-end;
  margin-top: 1.25rem;
  padding: 0;
}

.news-list {
  max-width: 1276px;
  margin: 0 auto;
  padding: 6rem 1.5rem 4rem;
}
.news-list__header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.news-list__title {
  font-size: clamp(15px, 10vw, 58px);
  font-weight: 500;
  color: #111827;
}
.news-list__title-muted {
  margin-right: 0.35rem;
}
.news-list__title-highlight {
  color: #cb1512;
}
.news-list__admin-link {
  color: #cb1512;
  text-decoration: underline;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
}
.news-list__grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .news-list__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.news-list__empty {
  grid-column: 1/-1;
  text-align: center;
  margin: 2rem 0;
  color: #4b5563;
}

/*# sourceMappingURL=news-list.css.map */
