.tv-news-section {
  width: min(1320px, 92%);
  min-width: 0;
  margin: 46px auto 58px;
  position: relative;
}

.tv-news-section .section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.tv-news-section .section-head::after {
  content: "";
  height: 1px;
  flex: 1 1 auto;
  min-width: 40px;
  background: linear-gradient(90deg, var(--panel), transparent);
  order: 2;
}

.tv-news-section .section-title {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #fff !important;
  font-size: clamp(1.5rem, 3vw, 2.45rem);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  order: 1;
}

.tv-news-section .sec-more {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 40px !important;
  height: auto !important;
  padding: 0 16px !important;
  border: 1px solid rgba(242, 211, 76, 0.34) !important;
  border-radius: 8px !important;
  background: transparent !important;
  color: var(--panel) !important;
  font-size: 0.82rem !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  order: 3 !important;
  box-shadow: none !important;
  filter: none !important;
  transition: background 0.2s ease, color 0.2s ease !important;
}

.tv-news-section .sec-more:hover {
  background: rgba(242, 211, 76, 0.1) !important;
  color: var(--panel) !important;
  transform: none !important;
  filter: none !important;
  box-shadow: none !important;
}

.tv-news-section .carousel-container {
  position: relative;
  width: 100%;
  margin-bottom: 40px;
  padding: 0 60px;
  display: flex;
  align-items: center;
}

.tv-news-section .carousel {
  display: flex;
  flex: 1;
  gap: 22px;
  overflow-x: auto;
  padding: 10px 0 35px;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.tv-news-section .carousel::-webkit-scrollbar {
  display: none;
}

.tv-news-section .carousel > * {
  flex: 0 0 clamp(290px, 24vw, 330px);
  scroll-snap-align: start;
}

.tv-news-section .news-card {
  min-width: 0;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: linear-gradient(180deg, #1b1b22, #15151b);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.tv-news-section .news-card:hover {
  border-color: rgba(242, 211, 76, 0.82);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.34);
  transform: translateY(-5px);
}

.tv-news-section .news-link {
  display: flex;
  min-height: 0;
  flex: 1 1 auto;
  flex-direction: column;
}

.tv-news-section .news-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  margin: 0;
  object-fit: cover;
  border-radius: 0;
  background: #050506;
  opacity: 0.92;
  transition: transform 0.34s ease, opacity 0.34s ease;
}

.tv-news-section .news-card:hover .news-img {
  opacity: 1;
  transform: scale(1.045);
}

.tv-news-section .info-top {
  padding: 18px 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.tv-news-section .info-top span:first-child {
  min-width: 0;
  overflow: hidden;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(242, 211, 76, 0.94);
  color: #151515;
  font-size: 0.72rem;
  font-weight: 950;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.tv-news-section .date-tag {
  flex: 0 0 auto;
  background: transparent;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.tv-news-section .news-card h3 {
  padding: 14px 18px 0;
  color: #fff;
  font-size: 1.12rem;
  font-weight: 850;
  line-height: 1.22;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  min-height: calc(1.22em * 3);
}

.tv-news-section .card-actions {
  margin-top: auto;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.tv-news-section .tag-btn {
  max-width: 58%;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #747b89;
  font-size: 0.78rem;
  font-weight: 800;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.tv-news-section .tag-btn.small {
  max-width: 42%;
  color: var(--panel);
}

.tv-news-section .nav-btn {
  position: absolute;
  top: calc(50% - 15px);
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(242, 211, 76, 0.28);
  border-radius: 50%;
  background: rgba(15, 15, 19, 0.92);
  color: var(--panel);
  font-size: 22px;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.36);
  transition: all 0.2s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.tv-news-section .nav-btn:hover {
  background: var(--panel);
  color: var(--panel-ink);
}

.tv-news-section .left-btn {
  left: 0;
}

.tv-news-section .right-btn {
  right: 0;
}

@media (max-width: 1350px) {
  .tv-news-section .carousel-container {
    padding: 0 22px;
  }

  .tv-news-section .left-btn {
    left: -10px;
  }

  .tv-news-section .right-btn {
    right: -10px;
  }
}

@media (max-width: 700px) {
  .tv-news-section {
    width: min(100% - 22px, 1320px);
  }

  .tv-news-section .section-head {
    flex-wrap: wrap;
    align-items: center;
    flex-direction: row;
  }

  .tv-news-section .section-head::after {
    order: 4;
    flex-basis: 100%;
    margin-left: 0;
    margin-top: 10px;
  }

  .tv-news-section .sec-more {
    margin-left: auto;
    width: auto;
  }

  .tv-news-section .carousel-container {
    padding: 0 40px;
  }

  .tv-news-section .nav-btn {
    display: inline-flex;
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .tv-news-section .news-card {
    min-height: auto;
  }

  .tv-news-section .news-card h3 {
    min-height: auto;
    -webkit-line-clamp: 2;
  }
}
