/* Blog Styles */
.blog-hero {
    background: linear-gradient(135deg, #0B0C10 0%, #1C1E26 100%);
    padding: 100px 0 60px;
    text-align: center;
}
.blog-hero h1 {
    font-size: 42px;
    font-weight: 900;
    color: #EAEAEA;
    margin: 0 0 12px;
}
.blog-hero p {
    font-size: 18px;
    color: #A0A3B0;
    max-width: 600px;
    margin: 0 auto;
}

.blog-grid-section {
    padding: 60px 0 100px;
    background: #0B0C10;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-card {
    background: #1C1E26;
    border: 1px solid #2A2F3A;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.4);
    border-color: #D4AF37;
}

.blog-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

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

.blog-card-tag {
    display: inline-block;
    background: rgba(212,175,55,0.12);
    color: #D4AF37;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 12px;
}

.blog-card-title {
    font-size: 20px;
    font-weight: 800;
    color: #EAEAEA;
    margin: 0 0 10px;
    line-height: 1.3;
}
.blog-card-title a {
    color: inherit;
    text-decoration: none;
}
.blog-card-title a:hover {
    color: #D4AF37;
}

.blog-card-excerpt {
    font-size: 14px;
    color: #A0A3B0;
    line-height: 1.6;
    margin: 0 0 16px;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #666;
}

.blog-card-date {
    font-weight: 500;
}

.blog-card-read {
    color: #D4AF37;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}
.blog-card-read:hover {
    color: #e8c54a;
}

/* Blog Article Page */
.blog-article-section {
    padding: 100px 0 80px;
    background: #0B0C10;
}

.blog-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-article-header {
    margin-bottom: 40px;
}

.blog-article-tag {
    display: inline-block;
    background: rgba(212,175,55,0.12);
    color: #D4AF37;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 16px;
}

.blog-article h1 {
    font-size: 36px;
    font-weight: 900;
    color: #EAEAEA;
    line-height: 1.2;
    margin: 0 0 16px;
}

.blog-article-meta {
    font-size: 14px;
    color: #888;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.blog-article-hero-img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 40px;
    max-height: 420px;
    object-fit: cover;
}

.blog-article-content h2 {
    font-size: 24px;
    font-weight: 800;
    color: #EAEAEA;
    margin: 40px 0 16px;
    padding-top: 16px;
    border-top: 1px solid #2A2F3A;
}

.blog-article-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #D4AF37;
    margin: 28px 0 12px;
}

.blog-article-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #C0C0C0;
    margin: 0 0 20px;
}

.blog-article-content ul, .blog-article-content ol {
    padding-left: 24px;
    margin: 0 0 20px;
}

.blog-article-content li {
    font-size: 15px;
    line-height: 1.8;
    color: #C0C0C0;
    margin-bottom: 6px;
}

.blog-article-content strong {
    color: #EAEAEA;
}

.blog-article-content a {
    color: #D4AF37;
    text-decoration: underline;
}

.blog-article-content blockquote {
    border-left: 3px solid #D4AF37;
    background: rgba(212,175,55,0.06);
    padding: 16px 24px;
    margin: 24px 0;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #C0C0C0;
}

.blog-article-content .info-box {
    background: #1C1E26;
    border: 1px solid #2A2F3A;
    border-radius: 12px;
    padding: 20px 24px;
    margin: 24px 0;
}

.blog-article-content .info-box h4 {
    color: #D4AF37;
    font-size: 15px;
    margin: 0 0 8px;
}

.blog-article-content .info-box p {
    margin: 0;
    font-size: 14px;
}

.blog-cta-box {
    background: linear-gradient(135deg, #1C1E26, #262A35);
    border: 1px solid #D4AF37;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    margin-top: 48px;
}

.blog-cta-box h3 {
    font-size: 22px;
    font-weight: 800;
    color: #EAEAEA;
    margin: 0 0 8px;
}

.blog-cta-box p {
    font-size: 14px;
    color: #A0A3B0;
    margin: 0 0 20px;
}

.blog-cta-btn {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #D4AF37, #B8963F);
    color: #0B0C10;
    font-weight: 800;
    font-size: 15px;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.blog-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212,175,55,0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .blog-hero { padding: 80px 0 40px; }
    .blog-hero h1 { font-size: 28px; }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-article h1 { font-size: 26px; }
    .blog-article-content h2 { font-size: 20px; }
}
