/* ========================================
   HANKOOK BBQ - Blog Detail Styles
   Estilos específicos para página de detalle
   ======================================== */

/* Blog Detail Section */
.blog-detail-section {
    padding: 80px 0;
    background: var(--body-bg-color, rgb(13, 24, 25));
}

.blog-detail-section .auto-container {
    max-width: 1200px;
}

/* Back Button Wrapper */
.back-button-wrapper {
    margin-bottom: 40px;
}

.back-button-wrapper .theme-btn {
    display: inline-block;
}

/* Featured Image */
.blog-detail-image {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.blog-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Blog Meta */
.blog-meta {
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid rgba(228, 197, 144, 0.2);
    border-bottom: 1px solid rgba(228, 197, 144, 0.2);
}

.blog-meta ul {
    display: flex;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.blog-meta ul li {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 400;
}

.blog-meta ul li .icon {
    color: rgb(228, 197, 144);
    margin-right: 8px;
}

/* Blog Content */
.blog-content {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.blog-content h2 {
    font-family: 'Forum', cursive;
    color: rgb(228, 197, 144);
    font-size: 32px;
    margin-bottom: 20px;
    margin-top: 40px;
    line-height: 1.3;
}

.blog-content h2:first-child {
    margin-top: 0;
}

.blog-content h3 {
    font-family: 'Forum', cursive;
    color: rgb(228, 197, 144);
    font-size: 26px;
    margin: 30px 0 20px;
    line-height: 1.3;
}

.blog-content h4 {
    font-family: 'Forum', cursive;
    color: rgb(228, 197, 144);
    font-size: 22px;
    margin: 25px 0 15px;
}

.blog-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.blog-content p:last-child {
    margin-bottom: 0;
}

.blog-content strong {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.blog-content a {
    color: rgb(228, 197, 144);
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-content a:hover {
    color: rgb(255, 255, 255);
    text-decoration: underline;
}

/* Highlight Box */
.highlight-box {
    background: rgba(228, 197, 144, 0.1);
    border-left: 4px solid rgb(228, 197, 144);
    padding: 25px;
    margin: 30px 0;
    border-radius: 4px;
}

.highlight-box p {
    margin: 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
}

.highlight-box strong {
    color: rgb(228, 197, 144);
}

/* Conclusion Box */
.conclusion-box {
    background: rgba(23, 24, 25, 1);
    border: 1px solid rgba(228, 197, 144, 0.2);
    padding: 30px;
    margin: 40px 0;
    border-radius: 8px;
    text-align: center;
}

.conclusion-box h4 {
    font-family: 'Forum', cursive;
    color: rgb(228, 197, 144);
    font-size: 24px;
    margin-bottom: 15px;
}

.conclusion-box p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Share Section */
.share-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(228, 197, 144, 0.2);
}

.share-section h5 {
    font-family: 'Forum', cursive;
    color: rgb(228, 197, 144);
    font-size: 18px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(228, 197, 144, 0.3);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    text-decoration: none;
}

.share-btn:hover {
    border-color: rgb(228, 197, 144);
    color: rgb(228, 197, 144);
    transform: translateY(-3px);
    background: rgba(228, 197, 144, 0.1);
}

/* Sidebar Widgets */
.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: rgba(23, 24, 25, 1);
    border: 1px solid rgba(228, 197, 144, 0.1);
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.sidebar-widget .widget-title {
    margin-bottom: 25px;
}

.sidebar-widget .widget-title h4 {
    font-family: 'Forum', cursive;
    color: rgb(228, 197, 144);
    font-size: 22px;
    margin: 0;
}

/* Recent Posts Widget */
.sidebar-widget.recent-posts .post {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(228, 197, 144, 0.1);
    overflow: hidden;
}

.sidebar-widget.recent-posts .post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-widget.recent-posts .post-thumb {
    width: 80px;
    height: 80px;
    float: left;
    margin-right: 15px;
    overflow: hidden;
    border-radius: 4px;
}

.sidebar-widget.recent-posts .post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sidebar-widget.recent-posts .post:hover .post-thumb img {
    transform: scale(1.1);
}

.sidebar-widget.recent-posts .post h6 {
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.sidebar-widget.recent-posts .post h6 a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-widget.recent-posts .post h6 a:hover {
    color: rgb(228, 197, 144);
}

.sidebar-widget.recent-posts .post-date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.sidebar-widget.recent-posts .post-date i {
    margin-right: 5px;
}

/* Categories Widget */
.sidebar-widget.categories .list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-widget.categories .list li {
    margin-bottom: 12px;
}

.sidebar-widget.categories .list li:last-child {
    margin-bottom: 0;
}

.sidebar-widget.categories .list li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(228, 197, 144, 0.05);
    text-decoration: none;
    transition: all 0.3s ease;
}

.sidebar-widget.categories .list li:last-child a {
    border-bottom: none;
}

.sidebar-widget.categories .list li a span:last-child {
    color: rgb(228, 197, 144);
}

.sidebar-widget.categories .list li a:hover {
    color: rgb(228, 197, 144);
    padding-left: 10px;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .blog-detail-section {
        padding: 60px 0;
    }
    
    .sidebar {
        position: relative;
        top: 0;
        margin-top: 40px;
    }
}

@media (max-width: 991px) {
    .blog-content h2 {
        font-size: 28px;
    }
    
    .blog-content h3 {
        font-size: 22px;
    }
    
    .blog-meta ul {
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .blog-detail-section {
        padding: 40px 0;
    }
    
    .back-button-wrapper {
        margin-bottom: 30px;
    }
    
    .blog-content h2 {
        font-size: 24px;
        margin-top: 30px;
    }
    
    .blog-content h3 {
        font-size: 20px;
        margin-top: 25px;
    }
    
    .blog-meta ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .highlight-box,
    .conclusion-box {
        padding: 20px;
    }
    
    .share-section {
        margin-top: 40px;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .sidebar-widget {
        padding: 20px;
    }
}

@media (max-width: 575px) {
    .blog-content p {
        font-size: 15px;
    }
    
    .sidebar-widget.recent-posts .post-thumb {
        width: 70px;
        height: 70px;
    }
}

/* Print Styles */
@media print {
    .back-button-wrapper,
    .share-section,
    .sidebar {
        display: none;
    }
    
    .blog-detail-section {
        padding: 0;
    }
    
    .blog-content {
        color: #000;
    }
    
    .blog-content h2,
    .blog-content h3,
    .blog-content h4 {
        color: #000;
    }
}
