/* Blog Detail Page Styles */
.blog-detail-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.blog-detail-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 50px;
}

.blog-main-content {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.blog-featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.blog-meta-info {
    display: flex;
    gap: 25px;
    padding: 20px 40px;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-light);
}

.blog-meta-info span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-article-content {
    padding: 40px;
}

.blog-article-content .lead {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 500;
}

.blog-article-content h2 {
    font-size: 26px;
    color: var(--text-dark);
    margin: 35px 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent-light);
}

.blog-article-content h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin: 25px 0 15px;
}

.blog-article-content p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.blog-article-content ul,
.blog-article-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.blog-article-content li {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 10px;
}

.blog-article-content a {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: underline;
    transition: var(--transition);
}

.blog-article-content a:hover {
    color: var(--accent-hover);
}

.blog-cta-box {
    background: var(--bg-white);
    border: 3px solid var(--accent-color);
    padding: 40px;
    border-radius: var(--radius-md);
    text-align: center;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.15);
}

.blog-cta-box h3 {
    color: var(--text-dark);
    font-size: 26px;
    margin-bottom: 12px;
    border: none;
    padding: 0;
}

.blog-cta-box p {
    color: var(--text-medium);
    margin-bottom: 25px;
    font-size: 16px;
}

.blog-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.blog-cta-buttons .btn-primary {
    background: var(--accent-color);
    color: white;
    padding: 14px 32px;
    font-weight: 700;
    border: 2px solid var(--accent-color);
}

.blog-cta-buttons .btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
}

.blog-cta-buttons .btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 14px 32px;
    font-weight: 700;
    border: 2px solid #25D366;
}

.blog-cta-buttons .btn-whatsapp:hover {
    background: #20ba5a;
    border-color: #20ba5a;
}

.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--bg-white);
    padding: 25px;
    border-radius: var(--radius-md);
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
}

.sidebar-widget h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-dark);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent-light);
}

.sidebar-links {
    list-style: none;
    padding: 0;
}

.sidebar-links li {
    border-bottom: 1px solid var(--border-color);
}

.sidebar-links li:last-child {
    border: none;
}

.sidebar-links a {
    display: block;
    padding: 12px 0;
    color: var(--text-medium);
    font-size: 14px;
    transition: var(--transition);
}

.sidebar-links a:hover {
    color: var(--accent-color);
    padding-left: 8px;
}

.sidebar-posts {
    list-style: none;
    padding: 0;
}

.sidebar-posts li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-posts li:last-child {
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sidebar-posts a {
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    transition: var(--transition);
}

.sidebar-posts a:hover {
    color: var(--accent-color);
}

.cta-widget {
    background: var(--text-dark);
    color: white;
}

.cta-widget h3 {
    color: white;
    border-color: rgba(255,255,255,0.2);
}

.cta-widget p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    margin-bottom: 20px;
}

@media (max-width: 1024px) {
    .blog-detail-grid {
        grid-template-columns: 1fr;
    }
    .blog-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .blog-article-content {
        padding: 25px;
    }
    .blog-meta-info {
        padding: 15px 25px;
        flex-wrap: wrap;
        gap: 15px;
    }
    .blog-featured-image img {
        height: 250px;
    }
    .blog-cta-buttons {
        flex-direction: column;
    }
    .blog-article-content h2 {
        font-size: 22px;
    }
}
