/* Shared Blog Article Styles */
.blog-hero {
    margin-top: 80px;
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
}
.blog-hero-inner { max-width: 800px; }
.blog-category-tag {
    display: inline-block;
    background: rgba(212,175,55,0.25);
    border: 1px solid var(--secondary);
    color: var(--secondary);
    font-size: 13px;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}
.blog-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 16px;
}
.blog-hero-meta {
    display: flex;
    gap: 24px;
    font-size: 14px;
    opacity: 0.8;
    flex-wrap: wrap;
}
.blog-content-section { padding: 60px 0; }
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 60px;
    align-items: start;
}
.blog-article { max-width: 100%; }
.blog-article h2 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    color: var(--primary);
    margin: 40px 0 16px;
}
.blog-article h3 {
    font-size: 22px;
    color: var(--primary);
    font-weight: 700;
    margin: 32px 0 12px;
}
.blog-article p {
    font-size: 17px;
    color: var(--light);
    line-height: 1.8;
    margin-bottom: 20px;
}
.blog-article ul, .blog-article ol {
    margin: 0 0 20px 24px;
}
.blog-article li {
    font-size: 17px;
    color: var(--light);
    line-height: 1.8;
    margin-bottom: 8px;
}
.blog-article img {
    width: 100%;
    border-radius: 12px;
    margin: 24px 0;
}
.info-box {
    background: #FFF9E6;
    border-left: 4px solid var(--secondary);
    padding: 20px 24px;
    border-radius: 0 8px 8px 0;
    margin: 24px 0;
}
.info-box p { margin: 0; font-size: 16px; }
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 15px;
}
.data-table th {
    background: var(--primary);
    color: white;
    padding: 12px 16px;
    text-align: left;
}
.data-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
}
.data-table tr:nth-child(even) td { background: var(--light-gray); }
/* Sidebar */
.blog-sidebar { position: sticky; top: 100px; }
.sidebar-widget {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 24px;
}
.sidebar-widget h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--secondary);
}
.sidebar-cta {
    background: var(--primary);
    color: white;
    border-radius: 12px;
    padding: 28px;
    text-align: center;
    margin-bottom: 24px;
}
.sidebar-cta h4 { font-family: 'Playfair Display', serif; font-size: 20px; margin-bottom: 12px; color: white; border: none; padding: 0; }
.sidebar-cta p { font-size: 14px; opacity: 0.85; margin-bottom: 20px; }
.related-list { list-style: none; }
.related-list li { margin-bottom: 12px; }
.related-list a { color: var(--primary); text-decoration: none; font-size: 15px; font-weight: 500; transition: color 0.3s; }
.related-list a:hover { color: var(--secondary); }
.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 24px;
    transition: color 0.3s;
}
.back-to-blog:hover { color: var(--secondary); }
@media (max-width: 1024px) {
    .blog-layout { grid-template-columns: 1fr; }
    .blog-sidebar { position: static; }
}
@media (max-width: 768px) {
    .blog-hero h1 { font-size: 28px; }
}
