/* ============================================
   BLOG PAGE STYLES
   ============================================ */

/* Blog Hero */
.blog-hero {
    padding: 160px 0 60px;
    text-align: center;
}

.blog-hero h1 {
    font-size: clamp(40px, 6vw, 64px);
    background: linear-gradient(135deg, var(--text-light), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.blog-hero p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    padding: 60px 0 100px;
}

.blog-card {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--card-radius);
    overflow: hidden;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-gold);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    position: relative;
    overflow: hidden;
}

.blog-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, var(--primary-dark));
}

.blog-card-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(212, 175, 55, 0.15);
    color: var(--accent-gold);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    width: fit-content;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-card-excerpt {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-card-date {
    color: var(--text-muted);
    font-size: 13px;
}

.blog-card-link {
    color: var(--accent-gold);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-fast);
}

.blog-card-link:hover {
    color: var(--accent-gold-light);
}

/* Article Page */
.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 140px 20px 80px;
}

.article-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-gold);
    text-decoration: none;
    margin-bottom: 30px;
    font-size: 14px;
    transition: var(--transition-fast);
}

.article-back:hover {
    opacity: 0.8;
}

.article-tag {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(212, 175, 55, 0.15);
    color: var(--accent-gold);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.article-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.article-content h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--accent-gold);
    margin: 40px 0 20px;
}

.article-content h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--text-light);
    margin: 30px 0 15px;
}

.article-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 16px;
}

.article-content ul, .article-content ol {
    padding-left: 25px;
    margin-bottom: 25px;
}

.article-content li {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 10px;
}

.article-content strong {
    color: var(--text-light);
}

.article-content blockquote {
    border-left: 3px solid var(--accent-gold);
    padding: 20px 25px;
    margin: 30px 0;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 0 var(--card-radius) var(--card-radius) 0;
}

.article-content blockquote p {
    color: var(--accent-gold-light);
    font-style: italic;
    margin: 0;
}

.article-cta {
    background: var(--gradient-card);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--card-radius);
    padding: 40px;
    text-align: center;
    margin: 50px 0;
}

.article-cta h3 {
    color: var(--accent-gold) !important;
    margin-top: 0 !important;
}

.article-cta p {
    margin-bottom: 25px;
}

.article-cta .cta-button {
    display: inline-block;
    padding: 14px 35px;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-normal);
}

.article-cta .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.related-articles {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.related-articles h2 {
    text-align: center;
    margin-bottom: 30px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.related-card {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
    transition: var(--transition-normal);
}

.related-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.related-card h4 {
    font-family: var(--font-heading);
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 8px;
}

.related-card p {
    font-size: 13px !important;
    color: var(--text-muted) !important;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        padding: 40px 0 60px;
    }
    
    .article-content {
        padding: 120px 15px 60px;
    }
    
    .article-cta {
        padding: 25px;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}
