@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@300;400;500;600;700;900&family=ZCOOL+XiaoWei&display=swap');

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #000000;
  --gold: #ffd700;
  --gold-light: #ffed4e;
  --gold-dark: #b8860b;
  --red: #c62828;
  --red-light: #e53935;
  --white: #ffffff;
  --gray-dark: #1a1a1a;
  --gray-mid: #333333;
  --gray-light: #888888;
  --font-serif: 'Noto Serif SC', serif;
  --font-display: 'ZCOOL XiaoWei', serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.8;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--gold-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Header ===== */
.site-header {
  background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
  border-bottom: 2px solid var(--gold);
  position: relative;
}

.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0 14px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.15);
}

.logo {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.logo-sub {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: var(--gray-light);
  letter-spacing: 0.3em;
  font-weight: 300;
}

.header-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.8rem;
  color: var(--gray-light);
}

.header-meta .date {
  color: var(--gold);
}

.header-meta .social-links a {
  margin-left: 14px;
  color: var(--gray-light);
  font-size: 0.85rem;
}

.header-meta .social-links a:hover {
  color: var(--gold);
}

/* ===== Navigation ===== */
.main-nav {
  padding: 0;
}

.nav-list {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 0;
}

.nav-list li {
  position: relative;
}

.nav-list li a {
  display: block;
  padding: 16px 32px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.15em;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
}

.nav-list li a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-list li a:hover,
.nav-list li a.active {
  color: var(--gold);
  background: rgba(255, 215, 0, 0.05);
}

.nav-list li a:hover::before,
.nav-list li a.active::before {
  width: 60%;
}

.nav-list li a .nav-icon {
  display: inline-block;
  margin-right: 6px;
  opacity: 0.7;
}

/* ===== Hero / Banner ===== */
.hero {
  position: relative;
  background: radial-gradient(ellipse at center, #1a0a0a 0%, #000000 70%);
  padding: 60px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
    url('https://trae-api-cn.mchost.guru/api/ide/v1/text_to_image?prompt=luxury%20news%20magazine%20editorial%20black%20gold%20elegant&image_size=landscape_16_9');
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}

.hero-content {
  position: relative;
  text-align: center;
  z-index: 1;
}

.hero-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.4em;
  color: var(--red);
  margin-bottom: 20px;
  padding: 6px 24px;
  border: 1px solid var(--red);
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  text-shadow: 0 0 40px rgba(255, 215, 0, 0.4);
  line-height: 1.2;
}

.hero-title .accent {
  color: var(--red);
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 300;
  letter-spacing: 0.2em;
  opacity: 0.9;
  margin-bottom: 30px;
}

.hero-divider {
  width: 80px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto;
  position: relative;
}

.hero-divider::before,
.hero-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: var(--gold-dark);
  opacity: 0.5;
}

.hero-divider::before {
  right: calc(100% + 10px);
}

.hero-divider::after {
  left: calc(100% + 10px);
}

/* ===== Section Titles ===== */
.section {
  padding: 72px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.section-subtitle {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gray-light);
  letter-spacing: 0.1em;
}

.section-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 20px auto 0;
}

/* ===== News Grid ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.news-card {
  background: var(--gray-dark);
  border: 1px solid rgba(255, 215, 0, 0.15);
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
}

.news-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 1;
}

.news-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(255, 215, 0, 0.15);
}

.news-card:hover::before {
  transform: scaleX(1);
}

.news-card.featured {
  grid-column: span 2;
  grid-row: span 2;
}

.news-card .card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.news-card.featured .card-image {
  aspect-ratio: 16 / 9;
}

.news-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.news-card:hover .card-image img {
  transform: scale(1.05);
}

.news-card .card-body {
  padding: 24px;
}

.news-card .card-category {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--red);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.news-card .card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.news-card.featured .card-title {
  font-size: 1.8rem;
}

.news-card:hover .card-title {
  color: var(--gold);
}

.news-card .card-excerpt {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card.featured .card-excerpt {
  -webkit-line-clamp: 4;
  font-size: 1rem;
}

.news-card .card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  font-size: 0.8rem;
  color: var(--gray-light);
}

.news-card .card-meta .time {
  color: var(--gold);
}

/* ===== Two Column Layout ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
}

.main-content {
  min-width: 0;
}

.sidebar {
  min-width: 0;
}

/* ===== Sidebar Widgets ===== */
.widget {
  background: var(--gray-dark);
  border: 1px solid rgba(255, 215, 0, 0.15);
  padding: 28px;
  margin-bottom: 32px;
}

.widget-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  position: relative;
}

.widget-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--red);
}

.widget-list {
  list-style: none;
}

.widget-list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.08);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.widget-list li:last-child {
  border-bottom: none;
}

.widget-list .rank {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
}

.widget-list li:nth-child(2) .rank {
  background: var(--gold-dark);
}

.widget-list li:nth-child(3) .rank {
  background: var(--red);
  color: var(--white);
}

.widget-list .item-title {
  font-size: 0.9rem;
  color: var(--white);
  line-height: 1.5;
  transition: color 0.3s ease;
  cursor: pointer;
}

.widget-list .item-title:hover {
  color: var(--gold);
}

.widget-list .item-time {
  font-size: 0.75rem;
  color: var(--gray-light);
  margin-top: 4px;
}

/* ===== Category Navigation ===== */
.category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 32px;
  background: var(--gray-dark);
  border: 1px solid rgba(255, 215, 0, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 140px;
}

.category-item:hover {
  background: var(--black);
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
}

.category-item .cat-icon {
  font-size: 2rem;
}

.category-item .cat-name {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
}

.category-item:hover .cat-name {
  color: var(--gold);
}

/* ===== Magazine Article (Exclusive) ===== */
.magazine-article {
  max-width: 820px;
  margin: 0 auto 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.15);
}

.magazine-article:last-child {
  border-bottom: none;
}

.magazine-article .article-head {
  text-align: center;
  margin-bottom: 40px;
}

.magazine-article .article-category {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.magazine-article .article-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  line-height: 1.4;
  margin-bottom: 20px;
}

.magazine-article .article-meta {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 0.85rem;
  color: var(--gray-light);
}

.magazine-article .article-meta .author {
  color: var(--gold);
}

.magazine-article .article-image {
  margin: 30px 0;
  position: relative;
}

.magazine-article .article-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.magazine-article .article-image .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--gray-light);
  font-size: 0.85rem;
}

.magazine-article .article-body {
  font-size: 1.05rem;
  line-height: 2;
  color: var(--white);
  font-weight: 300;
}

.magazine-article .article-body p {
  margin-bottom: 24px;
  text-align: justify;
}

.magazine-article .article-body p:first-child::first-letter {
  font-family: var(--font-display);
  font-size: 4.5rem;
  float: left;
  line-height: 0.85;
  padding: 6px 10px 0 0;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.magazine-article .article-blockquote {
  border-left: 4px solid var(--gold);
  padding: 20px 30px;
  margin: 30px 0;
  background: rgba(255, 215, 0, 0.03);
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
  line-height: 1.7;
  letter-spacing: 0.05em;
  font-style: italic;
}

/* ===== People Cards ===== */
.people-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.person-card {
  background: var(--gray-dark);
  border: 1px solid rgba(255, 215, 0, 0.15);
  overflow: hidden;
  transition: all 0.4s ease;
  text-align: center;
}

.person-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(255, 215, 0, 0.2);
}

.person-card .person-photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
}

.person-card .person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.person-card:hover .person-photo img {
  transform: scale(1.08);
}

.person-card .person-info {
  padding: 28px 24px;
}

.person-card .person-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.person-card .person-role {
  font-size: 0.8rem;
  color: var(--red);
  letter-spacing: 0.2em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.person-card .person-desc {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.person-card .person-link {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  padding: 8px 24px;
  border: 1px solid var(--gold);
  transition: all 0.3s ease;
}

.person-card .person-link:hover {
  background: var(--gold);
  color: var(--black);
}

/* ===== Review Cards ===== */
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.review-card {
  display: flex;
  gap: 24px;
  background: var(--gray-dark);
  border: 1px solid rgba(255, 215, 0, 0.15);
  padding: 28px;
  transition: all 0.4s ease;
}

.review-card:hover {
  border-color: var(--gold);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.12);
}

.review-card .review-poster {
  flex-shrink: 0;
  width: 140px;
  aspect-ratio: 2 / 3;
  overflow: hidden;
}

.review-card .review-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card .review-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.review-card .review-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
  transition: color 0.3s ease;
}

.review-card:hover .review-title {
  color: var(--gold);
}

.review-card .review-meta-row {
  font-size: 0.8rem;
  color: var(--gray-light);
  margin-bottom: 12px;
}

.review-card .review-meta-row .genre {
  color: var(--red);
  margin-right: 10px;
}

.review-card .review-excerpt {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-card .review-score {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card .score-label {
  font-size: 0.8rem;
  color: var(--gray-light);
}

.review-card .score-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
}

.review-card .score-bar {
  flex: 1;
  height: 4px;
  background: rgba(255, 215, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.review-card .score-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
}

/* ===== About Page ===== */
.about-hero {
  background: radial-gradient(ellipse at top, #1a0a0a 0%, #000000 70%);
  padding: 80px 0;
  text-align: center;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.about-hero h1 {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}

.about-hero p {
  font-size: 1.1rem;
  color: var(--gray-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.9;
}

.about-section {
  padding: 72px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.about-section:nth-child(even) {
  background: rgba(255, 215, 0, 0.02);
}

.about-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-section .about-text h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 24px;
}

.about-section .about-text p {
  font-size: 1rem;
  color: var(--white);
  line-height: 2;
  margin-bottom: 18px;
  font-weight: 300;
}

.about-section .about-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.team-member {
  text-align: center;
}

.team-member .avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  border: 2px solid var(--gold);
}

.team-member .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member .t-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.team-member .t-role {
  font-size: 0.8rem;
  color: var(--red);
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}

.team-member .t-desc {
  font-size: 0.85rem;
  color: var(--gray-light);
  line-height: 1.6;
}

/* ===== Contact Page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

.contact-card {
  background: var(--gray-dark);
  border: 1px solid rgba(255, 215, 0, 0.15);
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.contact-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--red));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.contact-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.15);
}

.contact-card:hover::after {
  transform: scaleX(1);
}

.contact-card .c-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.contact-card .c-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.contact-card .c-content {
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.8;
  margin-bottom: 8px;
}

.contact-card .c-content a {
  color: var(--white);
  border-bottom: 1px dashed var(--gold);
}

.contact-card .c-content a:hover {
  color: var(--gold);
}

.social-matrix {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.social-matrix .sm-item {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-dark);
  border: 1px solid rgba(255, 215, 0, 0.2);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.85rem;
  transition: all 0.3s ease;
  cursor: pointer;
  letter-spacing: 0.05em;
}

.social-matrix .sm-item:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-4px);
}

/* ===== Pagination ===== */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 50px;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}

.pagination a:hover,
.pagination .active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.pagination .disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* ===== Footer ===== */
.site-footer {
  background: #0a0a0a;
  border-top: 3px solid var(--gold);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.15);
}

.footer-col p {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.9;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--gray-light);
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-col .footer-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.85rem;
  color: var(--gray-light);
}

.footer-bottom .copyright {
  color: var(--gray-light);
}

.footer-bottom .legal-links a {
  margin-left: 24px;
  color: var(--gray-light);
}

.footer-bottom .legal-links a:hover {
  color: var(--gold);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-card.featured {
    grid-column: span 2;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .people-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-section .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-list {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-list li a {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section {
    padding: 48px 0;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-card.featured {
    grid-column: span 1;
    grid-row: auto;
  }

  .news-card.featured .card-title {
    font-size: 1.4rem;
  }

  .people-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-bottom .legal-links a {
    margin: 0 12px;
  }

  .header-top {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .logo {
    font-size: 1.8rem;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-list li {
    border-bottom: 1px solid rgba(255, 215, 0, 0.08);
  }

  .nav-list li a {
    padding: 14px 24px;
    text-align: center;
  }

  .review-card {
    flex-direction: column;
  }

  .review-card .review-poster {
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .magazine-article .article-title {
    font-size: 1.6rem;
  }

  .magazine-article .article-body p:first-child::first-letter {
    font-size: 3rem;
  }

  .about-hero h1 {
    font-size: 2rem;
  }

  .pagination {
    flex-wrap: wrap;
  }
}