.page-hero p { max-width: 520px; }
.main-content { max-width: 1200px; margin: 0 auto; padding: 5rem 2rem 6rem; }
.articles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 1.5rem; }
.article-card { background: white; border: 1px solid rgba(0,0,0,0.07); border-radius: 18px; overflow: hidden; text-decoration: none; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; display: flex; flex-direction: column; }
.article-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); border-color: rgba(27,58,107,0.15); }
.article-card-header { background: linear-gradient(135deg, var(--night), var(--navy)); padding: 2rem; position: relative; overflow: hidden; min-height: 120px; display: flex; align-items: flex-end; }
.article-card-header::before { content: ''; position: absolute; top: -30%; right: -10%; width: 200px; height: 200px; background: radial-gradient(circle, rgba(200,16,46,0.15) 0%, transparent 70%); pointer-events: none; }
.article-card-emoji { font-size: 2.5rem; position: absolute; top: 1.25rem; right: 1.5rem; opacity: 0.6; }
.article-card-category { display: inline-flex; background: rgba(200,16,46,0.2); border: 1px solid rgba(200,16,46,0.35); color: #ff8096; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.25rem 0.65rem; border-radius: 100px; position: relative; z-index: 1; }
.article-card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.article-card-date { font-size: 0.75rem; color: #94a3b8; margin-bottom: 0.75rem; }
.article-card-title { font-family: 'Outfit', sans-serif; font-size: 1.05rem; font-weight: 800; color: var(--night); line-height: 1.3; letter-spacing: -0.01em; margin: 0 0 0.75rem; }
.article-card-excerpt { font-size: 0.875rem; color: #64748b; line-height: 1.7; margin: 0; flex: 1; }
.article-card-footer { padding: 1.25rem 1.75rem; border-top: 1px solid rgba(0,0,0,0.06); display: flex; align-items: center; justify-content: space-between; }
.read-more { font-family: 'Outfit', sans-serif; font-size: 0.82rem; font-weight: 700; color: var(--navy); display: flex; align-items: center; gap: 0.35rem; transition: gap 0.2s; }
.article-card:hover .read-more { gap: 0.6rem; }
.read-time { font-size: 0.75rem; color: #94a3b8; }
.cta-banner { background: var(--red); border-radius: 20px; padding: 3.5rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 2rem; margin-top: 5rem; }
.cta-banner h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 800; color: white; letter-spacing: -0.02em; margin: 0; max-width: 480px; }
.btn-white { background: white; color: var(--red); padding: 0.85rem 2rem; border-radius: 8px; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.95rem; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; white-space: nowrap; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
footer { margin-top: 6rem; }
@media (hover: none) {
  .article-card:active { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); border-color: rgba(27,58,107,0.15); }
  .article-card:active .read-more { gap: 0.6rem; }
}
@media (max-width: 640px) {
  .main-content { padding: 3rem 1.5rem 4rem; }
  .articles-grid { grid-template-columns: 1fr; }
  .article-card-header { min-height: 80px; }
  .cta-banner { padding: 2rem 1.5rem; }
}
