/* gtafang.com 样式文件 - 基于 requirements.md 设计系统 */

/* ==================== 全局变量 ==================== */
:root {
  /* 配色方案 */
  --color-gold: #D4AF37;
  --color-dark-bg: #2C2C2C;
  --color-charcoal: #333333;
  --color-ink: #1A1A1A;
  --color-silver: #C0C0C0;
  --color-light-gray: #E0E0E0;
  --color-mist: #F5F5F5;
  
  /* 字体 */
  --font-title: 'Playfair Display', serif;
  --font-body: 'Open Sans', sans-serif;
  --font-mono: 'Roboto Mono', monospace;
  
  /* 过渡 */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease-out;
  
  /* 阴影 */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 5px 15px rgba(212,175,55,0.1);
  --shadow-lg: 0 15px 30px rgba(212,175,55,0.1);
}

/* ==================== 基础样式 ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-charcoal);
  background: #FFFFFF;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-ink);
}

h1 { font-size: 42px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

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

/* ==================== Header 导航栏 ==================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: rgba(26, 26, 26, 0.3);
  backdrop-filter: blur(5px);
  transition: var(--transition-normal);
  z-index: 1000;
}

.header.scrolled {
  background: rgba(51, 51, 51, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-silver);
}

.header .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .logo {
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.header.scrolled .logo {
  color: var(--color-mist);
  text-shadow: none;
}

.header nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.header nav a {
  font-size: 15px;
  font-weight: 500;
  color: white;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
  transition: var(--transition-fast);
}

.header.scrolled nav a {
  color: var(--color-silver);
  text-shadow: none;
}

.header nav a:hover {
  color: var(--color-gold);
}

.header .locale-switcher {
  font-family: var(--font-title);
  font-size: 14px;
  padding: 8px 16px;
  border: 1.5px solid white;
  border-radius: 4px;
  color: white;
  cursor: pointer;
  transition: var(--transition-fast);
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.header.scrolled .locale-switcher {
  border-color: var(--color-gold);
  color: var(--color-gold);
  text-shadow: none;
}

.header .locale-switcher:hover {
  background: var(--color-gold);
  color: white;
  border-color: var(--color-gold);
  text-shadow: none;
}

/* 汉堡菜单 */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  transition: var(--transition-fast);
}

.header.scrolled .hamburger span {
  background: var(--color-gold);
}

/* ==================== Footer ==================== */
.footer {
  background: var(--color-dark-bg);
  color: var(--color-mist);
  padding: 50px 20px 30px;
  border-top: 1px solid var(--color-gold);
}

.footer .container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.footer a {
  color: var(--color-mist);
  transition: var(--transition-fast);
}

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

.footer .footer-left {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.footer .contact-info {
  font-size: 14px;
  font-weight: 300;
  line-height: 2;
}

.footer .contact-info a {
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
}

.footer .qrcode {
  flex-shrink: 0;
}

.footer .qrcode-wrapper {
  position: relative;
  display: inline-block;
}

.footer .qrcode img {
  width: 120px;
  height: 120px;
  border: 2px solid var(--color-gold);
  border-radius: 8px;
  display: block;
  transition: var(--transition-normal);
}

.footer .qrcode-wrapper:hover img {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.footer .qrcode-tip {
  position: absolute;
  bottom: -45px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-mist);
  color: var(--color-charcoal);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity var(--transition-fast);
  pointer-events: none;
}

.footer .qrcode-wrapper:hover .qrcode-tip {
  opacity: 1;
}

.footer .footer-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer .links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer .links a {
  font-size: 15px;
  font-weight: 500;
  position: relative;
}

.footer .links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width var(--transition-fast);
}

.footer .links a:hover::after {
  width: 100%;
}

.footer .copyright {
  font-size: 12px;
  font-weight: 300;
  color: var(--color-silver);
  line-height: 1.6;
}

/* Footer Logo Section */
.footer-logo {
  height: 70px;
  margin-bottom: 20px;
}

.footer-description {
  color: #999;
  font-size: 13px;
  line-height: 1.6;
  margin-top: 15px;
}

/* Footer Contact Section */
.footer-title {
  font-size: 16px;
  color: #D4AF37;
  margin-bottom: 20px;
  font-weight: 500;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-item {
  margin-top: 10px;
}

.footer-contact-item:first-child {
  margin-top: 0;
}

.footer-contact-name {
  color: #C0C0C0;
  font-size: 14px;
  margin-bottom: 5px;
  font-weight: 500;
}

.footer-contact-link {
  color: #C0C0C0;
  text-decoration: none;
  font-size: 13px;
  display: block;
  margin-bottom: 3px;
}

.footer-contact-link:hover {
  color: #D4AF37;
}

/* Footer Links Section */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 30px;
}

.footer-link {
  color: #C0C0C0;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #D4AF37;
}

/* Footer Copyright Section */
.footer-copyright {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #444;
}

.footer-copyright-text {
  color: #999;
  font-size: 12px;
}

.footer-rights {
  color: #666;
  font-size: 11px;
  margin-top: 5px;
}

/* ==================== 按钮 ==================== */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-normal);
  border: none;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-mist);
}

.btn-primary:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  border: 1.5px solid var(--color-gold);
  color: var(--color-gold);
}

.btn-secondary:hover {
  background: var(--color-gold);
  color: white;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 18px;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ==================== 表单 ==================== */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  color: var(--color-charcoal);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group label .required {
  color: var(--color-gold);
}

.form-control {
  width: 100%;
  height: 44px;
  padding: 10px 15px;
  background: rgba(224, 224, 224, 0.5);
  border: 1px solid var(--color-silver);
  border-radius: 6px;
  font-size: 14px;
  font-family: var(--font-body);
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-gold);
  border-width: 1.5px;
}

textarea.form-control {
  height: 100px;
  resize: vertical;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C0C0C0' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

.form-control::placeholder {
  color: var(--color-silver);
}

/* ==================== 卡片 ==================== */
.card {
  background: var(--color-mist);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition-slow);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

/* ==================== 房源卡片 ==================== */
.property-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-slow);
  border-bottom: 1px solid var(--color-silver);
}

.property-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--color-gold);
}

.property-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.property-card .property-info {
  padding: 20px;
}

.property-card .price {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 10px;
  font-family: var(--font-mono);
}

.property-card .address {
  font-size: 14px;
  color: var(--color-charcoal);
  margin-bottom: 10px;
}

.property-card .specs {
  display: flex;
  gap: 15px;
  font-size: 13px;
  color: var(--color-silver);
}

.property-card .mls {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 12px;
  color: var(--color-silver);
  background: rgba(255,255,255,0.9);
  padding: 4px 8px;
  border-radius: 4px;
}

.property-card .tag {
  display: inline-block;
  padding: 4px 8px;
  background: rgba(224, 224, 224, 0.3);
  border-radius: 4px;
  font-size: 12px;
  color: var(--color-charcoal);
  margin-right: 5px;
}

/* ==================== 工具卡片 ==================== */
.tool-card {
  background: rgba(245, 245, 245, 0.9);
  border: 1.5px solid var(--color-gold);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  transition: var(--transition-slow);
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.tool-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(212,175,55,0.1);
}

.tool-card .icon {
  font-size: 48px;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.tool-card h3 {
  font-size: 22px;
  color: var(--color-ink);
  margin-bottom: 15px;
}

.tool-card p {
  font-size: 14px;
  color: var(--color-charcoal);
  line-height: 1.6;
}

.tool-card .external-icon {
  position: absolute;
  bottom: 15px;
  right: 15px;
  font-size: 16px;
  color: var(--color-gold);
}

/* ==================== 工具类 ==================== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.mb-8 { margin-bottom: 8px; }
.mb-10 { margin-bottom: 10px; }
.mb-15 { margin-bottom: 15px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }

.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }
.mt-80 { margin-top: 80px; }

.py-60 { padding: 60px 0; }
.py-80 { padding: 80px 0; }
.py-100 { padding: 100px 0; }

/* Grid布局 */
.grid {
  display: grid;
  gap: 30px;
}

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

/* ==================== Hero区域 ==================== */
.hero {
  height: 90vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: white;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
}

.hero .content {
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

.hero .logo {
  width: 220px;
  height: auto;
  margin: 0 auto 20px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.hero h1 {
  font-size: 42px;
  color: white;
  margin-bottom: 15px;
  text-shadow: 0 3px 6px rgba(0,0,0,0.4);
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* ==================== 分隔线 ==================== */
.divider-line {
  width: 80px;
  height: 1.5px;
  background: var(--color-gold);
  margin: 15px auto;
}

/* ==================== 经纪人卡片 ==================== */
.agent-card {
  text-align: center;
}

.agent-card img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid var(--color-gold);
  margin: 0 auto 20px;
  object-fit: cover;
  transition: var(--transition-normal);
}

.agent-card:hover img {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.agent-card h3 {
  font-size: 18px;
  color: var(--color-gold);
  margin-bottom: 10px;
}

.agent-card p {
  font-size: 14px;
  color: var(--color-charcoal);
}

.agent-card .service-area {
  font-size: 13px;
  color: var(--color-silver);
  margin-top: 8px;
}

/* ==================== 筛选栏 ==================== */
.filters {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  margin-bottom: 50px;
  border: 1px solid var(--color-light-gray);
}

.filters-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-light-gray);
}

.filters-header h3 {
  font-size: 20px;
  color: var(--color-ink);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.filters-header h3::before {
  content: '\f002'; /* Font Awesome search icon */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 20px;
  margin-right: 8px;
}

.filters-reset {
  font-size: 14px;
  color: var(--color-gold);
  cursor: pointer;
  text-decoration: underline;
  transition: var(--transition-fast);
}

.filters-reset:hover {
  color: var(--color-charcoal);
}

.filters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-charcoal);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filters select {
  height: 48px;
  padding: 0 40px 0 15px;
  background: var(--color-mist);
  border: 1.5px solid var(--color-light-gray);
  border-radius: 8px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--color-charcoal);
  cursor: pointer;
  transition: all var(--transition-fast);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23D4AF37' d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
}

.filters select:hover {
  border-color: var(--color-gold);
  background-color: white;
}

.filters select:focus {
  outline: none;
  border-color: var(--color-gold);
  border-width: 2px;
  background-color: white;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* ==================== 轮播图 ==================== */
.carousel {
  position: relative;
  width: 100%;
  height: 70vh;
  background: #000;
  overflow: hidden;
}

.carousel img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(44, 44, 44, 0.5);
  color: var(--color-gold);
  border: none;
  font-size: 32px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.carousel-btn:hover {
  background: rgba(44, 44, 44, 0.8);
}

.carousel-btn.prev { left: 20px; }
.carousel-btn.next { right: 20px; }

.carousel-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
}

.carousel-indicators span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-silver);
  cursor: pointer;
  transition: var(--transition-fast);
}

.carousel-indicators span.active {
  width: 10px;
  height: 10px;
  background: var(--color-gold);
}

/* ==================== 表单容器 ==================== */
.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(245, 245, 245, 0.9);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

/* ==================== 成功图标 ==================== */
.success-icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 30px;
}

.success-icon svg {
  width: 100%;
  height: 100%;
}

/* ==================== 联系卡片（粘性） ==================== */
.contact-agent-card {
  position: sticky;
  top: 100px;
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

/* ==================== Toast 提示 ==================== */
.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 20px;
  background: #4CAF50;
  color: white;
  border-radius: 6px;
  box-shadow: var(--shadow-md);
  z-index: 9999;
  animation: slideIn 0.3s ease;
}

.toast.error {
  background: #f44336;
}

@keyframes slideIn {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ==================== 响应式设计 ==================== */

/* 平板 */
@media (max-width: 1199px) {
  .grid-cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .filters-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

/* 移动端 */
@media (max-width: 767px) {
  :root {
    font-size: 14px;
  }
  
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  h3 { font-size: 18px; }
  
  .header {
    height: 60px;
  }
  
  .header nav {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .header nav.mobile-open {
    display: block;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(51, 51, 51, 0.98);
    padding: 20px;
  }
  
  .header nav.mobile-open ul {
    flex-direction: column;
    gap: 15px;
  }
  
  .header nav.mobile-open a {
    color: var(--color-silver);
    font-size: 16px;
  }
  
  .footer .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer .footer-left {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer .footer-right {
    text-align: center;
  }
  
  .footer .contact-info a {
    justify-content: center;
  }
  
  .footer .links {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .footer .qrcode img {
    width: 100px;
    height: 100px;
  }
  
  .grid-cols-2,
  .grid-cols-3,
  .grid-cols-4 {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .filters {
    padding: 20px;
  }
  
  .filters-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .filters-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .hero {
    height: 70vh;
  }
  
  .hero .logo {
    width: 60px;
    height: 60px;
  }
  
  .hero h1 {
    font-size: 30px;
  }
  
  .btn, a {
    min-height: 44px;
    min-width: 44px;
  }
}

/* ==================== 加载动画 ==================== */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-mist);
  border-top-color: var(--color-gold);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ==================== 触摸优化 ==================== */
.btn,
.card,
.property-card,
.tool-card {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* ==================== 资讯卡片 ==================== */
.news-card {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 30px;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 30px;
  transition: var(--transition-normal);
}

.news-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.news-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.news-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--color-gold);
  color: white;
  padding: 5px 15px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.news-content {
  padding: 25px 30px 25px 0;
  display: flex;
  flex-direction: column;
}

.news-meta {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: var(--color-silver);
  margin-bottom: 15px;
}

.news-content h2 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--color-ink);
  line-height: 1.4;
}

.news-content p {
  color: var(--color-charcoal);
  line-height: 1.8;
  margin-bottom: 15px;
  flex: 1;
}

.read-more {
  color: var(--color-gold);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  transition: var(--transition-fast);
}

.read-more:hover {
  color: var(--color-charcoal);
}

/* 响应式 - 资讯卡片 */
@media (max-width: 767px) {
  .news-card {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .news-image {
    height: 200px;
  }
  
  .news-content {
    padding: 20px;
  }
  
  .news-content h2 {
    font-size: 18px;
  }
}

