/* Home Featured News Carousel */
.hp-home-news { max-width: 1780px; margin: 0 auto; padding: 0 56px; }
.hp-home-news__header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 32px; flex-wrap: wrap; gap: 16px; }
.hp-home-news__header-left { flex: 1; }
.hp-home-news__kicker { font-size: 13px; font-weight: 700; text-transform: uppercase; color: var(--accent, #FF6A00); letter-spacing: 2px; margin-bottom: 8px; }
.hp-home-news__header h2 { font-size: 32px; font-weight: 800; color: var(--dark, #0B2545); margin: 0 0 6px; }
.hp-home-news__header p { font-size: 14px; color: #6B7280; margin: 0; max-width: 500px; }
.hp-home-news__header-right { flex-shrink: 0; }
.hp-home-news__view-all { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 700; color: var(--accent, #FF6A00); text-decoration: none; transition: gap .2s; }
.hp-home-news__view-all:hover { gap: 12px; }

.hp-home-news__layout { display: grid; grid-template-columns: 1.85fr 1fr; gap: 32px; }
@media (max-width: 1024px) { .hp-home-news__layout { grid-template-columns: 1.4fr 1fr; gap: 24px; } }
@media (max-width: 768px) { .hp-home-news__layout { grid-template-columns: 1fr; } }

.hp-home-news__media { position: relative; overflow: hidden; border-radius: 16px; aspect-ratio: 16 / 9; background: #e8ecf1; }
.hp-home-news__slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity .5s ease; }
.hp-home-news__slide.active { opacity: 1; z-index: 1; }
.hp-home-news__slide img { width: 100%; height: 100%; object-fit: cover; }
.hp-home-news__slide-link { display: block; width: 100%; height: 100%; }
.hp-home-news__overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 40px 28px 24px; background: linear-gradient(transparent, rgba(11,37,69,.92)); color: #fff; }
.hp-home-news__overlay .hp-home-news__cat { font-size: 11px; font-weight: 700; text-transform: uppercase; color: var(--accent); letter-spacing: 1px; margin-bottom: 6px; }
.hp-home-news__overlay h3 { font-size: 18px; font-weight: 700; margin: 0 0 6px; line-height: 1.35; color: #fff; }
.hp-home-news__overlay .hp-home-news__date { font-size: 12px; color: rgba(255,255,255,.7); }

.hp-home-news__dots { position: absolute; bottom: 16px; right: 20px; display: flex; gap: 8px; z-index: 2; }
.hp-home-news__dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.4); border: none; cursor: pointer; padding: 0; transition: background .3s; }
.hp-home-news__dot.active { background: var(--accent, #FF6A00); transform: scale(1.3); }

.hp-home-news__list { display: flex; flex-direction: column; gap: 6px; overflow-y: auto; overflow-x: hidden; max-height: 610px; padding-right: 10px; scrollbar-gutter: stable; overscroll-behavior: contain; }
.hp-home-news__list::-webkit-scrollbar { width: 6px; }
.hp-home-news__list::-webkit-scrollbar-track { background: transparent; }
.hp-home-news__list::-webkit-scrollbar-thumb { background: #c8cdd4; border-radius: 10px; }
.hp-home-news__list::-webkit-scrollbar-thumb:hover { background: #ff6a00; }
.hp-home-news__item { display: flex; gap: 16px; padding: 16px; border-radius: 12px; cursor: pointer; transition: background .2s; border: 1px solid transparent; }
.hp-home-news__item:hover { background: #f8f9fb; }
.hp-home-news__item.active { background: #fff7f0; border-color: var(--accent, #FF6A00); position: relative; }
.hp-home-news__item.active::before { content: ""; position: absolute; left: 0; top: 12px; bottom: 12px; width: 3px; background: var(--accent); border-radius: 2px; }
.hp-home-news__item-thumb { width: 80px; height: 56px; border-radius: 8px; overflow: hidden; flex-shrink: 0; background: #e8ecf1; }
.hp-home-news__item-thumb img { width: 100%; height: 100%; object-fit: cover; }
.hp-home-news__item-info { flex: 1; min-width: 0; }
.hp-home-news__item-info .hp-home-news__cat { font-size: 10px; font-weight: 700; text-transform: uppercase; color: var(--accent); letter-spacing: .5px; margin-bottom: 4px; }
.hp-home-news__item-info h4 { font-size: 14px; font-weight: 700; color: var(--dark); margin: 0 0 4px; line-height: 1.4; }
.hp-home-news__item-info .hp-home-news__date { font-size: 11px; color: #9CA3AF; }

@media (max-width: 768px) {
  .hp-home-news { padding: 0 20px; }
  .hp-home-news__header h2 { font-size: 26px; }
  .hp-home-news__media { aspect-ratio: 16/10; }
  .hp-home-news__item { min-height: 60px; padding: 14px; }
  .hp-home-news__item-thumb { width: 64px; height: 48px; }
  .hp-home-news__list { max-height: none; overflow: visible; padding-right: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hp-home-news__slide { transition: none; }
}