.news-page {
  background: #f7f9fc;
}

.hero-banner {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-top: -70px;
  min-height: 580px;
}
@media (max-width: 768px) {
  .hero-banner {
    min-height: auto;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a1628 0%, #0d2348 50%, #1a0a3d 100%);
  background-size: cover;
  background-position: center;
}

.hero-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 180px 60px 120px 270px;
  display: flex;
  align-items: center;
}
@media (max-width: 1600px) {
  .hero-wrapper {
    padding: 130px 56px 72px 240px;
  }
}
@media (max-width: 1200px) {
  .hero-wrapper {
    padding: 120px 40px 64px 60px;
  }
}
@media (max-width: 768px) {
  .hero-wrapper {
    padding: 90px 16px 48px 16px;
  }
}

.hero-content-left {
  flex: 0 0 auto;
  width: 60%;
  max-width: 800px;
  text-align: left;
  animation: fade-in-left 0.8s ease-out;
}
@media (max-width: 768px) {
  .hero-content-left {
    width: 100%;
    text-align: center;
  }
}

@keyframes fade-in-left {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.hero-title {
  font-size: 44px;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  color: #1a1a2e;
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }
}

.hero-subtitle {
  font-size: 17px;
  color: rgba(26, 26, 46, 0.68);
  max-width: 560px;
  line-height: 1.8;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
  padding: 28px 40px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 600px) {
  .hero-stats {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
  }
}

.hero-stat {
  flex: 1;
  text-align: center;
}
.hero-stat .stat-num {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 6px;
}
.hero-stat .stat-num i {
  font-style: normal;
  font-size: 18px;
  font-weight: 600;
  margin-left: 2px;
  color: rgba(255, 255, 255, 0.8);
}
.hero-stat .stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.02em;
}

.hero-stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .hero-stat-divider {
    width: 60px;
    height: 1px;
  }
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(26, 26, 46, 0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.news-section {
  padding: 40px 0 60px;
  background: #f5f7fa;
}

.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid #ddd;
  background: #fff;
  color: #555;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover {
  border-color: #1890ff;
  color: #1890ff;
}
.filter-btn.active {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
}

.practice-list {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 24px;
  padding: 8px 0;
  box-shadow: 0 12px 32px rgba(15, 32, 71, 0.06);
}

.practice-card {
  display: grid;
  grid-template-columns: 324px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 22px 24px 30px;
  cursor: pointer;
  border-bottom: 1px solid #e9edf3;
}
.practice-card:last-child {
  border-bottom: none;
}
@media (max-width: 960px) {
  .practice-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px 18px 24px;
  }
}

.practice-card-cover {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 14px;
  flex-shrink: 0;
}
@media (max-width: 960px) {
  .practice-card-cover {
    height: 210px;
  }
}

.practice-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.practice-cover-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  background: linear-gradient(135deg, #0d2348 0%, #1a0a3d 100%);
}

.cover-badge {
  position: absolute;
  top: 10px;
  left: 12px;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
}
.cover-badge--top {
  background: #ff4d4f;
}
.cover-badge--new {
  background: #1890ff;
}

.practice-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 180px;
}
@media (max-width: 960px) {
  .practice-card-body {
    min-height: auto;
  }
}

.practice-card-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .practice-card-head {
    flex-direction: column;
    gap: 8px;
  }
}

.practice-card-title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #15181d;
  line-height: 1.42;
}
@media (max-width: 768px) {
  .practice-card-title {
    font-size: 20px;
  }
}

.practice-card-date {
  flex-shrink: 0;
  font-size: 14px;
  color: #9aa3b2;
  line-height: 1.6;
}

.practice-card-meta {
  margin-bottom: 14px;
}

.practice-card-category {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  background: #e6f4ff;
  font-size: 12px;
  font-weight: 600;
  color: #1890ff;
}

.practice-card-summary {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #8d97a6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 768px) {
  .practice-card-summary {
    font-size: 14px;
  }
}

.practice-card-footer {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 28px;
}

.practice-card-read,
.practice-card-arrow {
  font-size: 18px;
  font-weight: 600;
  color: #1890ff;
}

.practice-card-arrow {
  line-height: 1;
}

.practice-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
  padding: 6px 0 2px;
}
.practice-pagination .page-btn {
  min-width: 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #d8dde6;
  background: #fff;
  color: #8c95a3;
  font-size: 18px;
  cursor: pointer;
  box-shadow: none;
  transition: all 0.24s ease;
}
.practice-pagination .page-btn:hover:not(:disabled):not(.active) {
  border-color: #14d2b8;
  color: #14d2b8;
}
.practice-pagination .page-btn.active {
  border-color: #14d2b8;
  background: linear-gradient(135deg, #19d6c1 0%, #10d2a2 100%);
  color: #fff;
}
.practice-pagination .page-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 14px;
    padding: 0 16px;
  }
  .news-section {
    padding: 28px 0;
  }
  .news-section .container {
    padding: 0 16px;
  }
  .filter-bar {
    gap: 8px;
    margin-bottom: 20px;
  }
  .filter-btn {
    padding: 6px 14px;
    font-size: 13px;
  }
  .practice-list {
    border-radius: 16px;
    padding: 4px 0;
  }
  .practice-card-footer {
    padding-top: 16px;
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: 26px;
  }
  .practice-card {
    padding: 14px 14px 20px;
  }
  .practice-card-cover {
    height: 160px;
  }
}
