

:root {
    --primary-color: #8b0000;      
    --secondary-color: #0064d1;    
    --text-color: #333;            
    --background-color: #fff;      
    --back-color: #f6f5f1;         
    --gold-color: #ffd81c;         
    --footer-bg: #3a3a3a;          
    --heading-font: "Forum", serif;
    --body-font: "Open Sans", sans-serif;
}

.blog-header-classic {
    background: linear-gradient(135deg, var(--background-color) 0%, var(--back-color) 100%);
    padding: 40px 20px;
    text-align: center;
    border-bottom: 3px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.blog-header-inner {
    max-width: 800px;
    margin: 0 auto;
}

.blog-logo-classic {
    max-width: 350px;
    margin-bottom: 10px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.blog-title-classic {
    font-family: var(--heading-font);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 15px 0 10px;
    letter-spacing: -0.5px;
}

.blog-tagline {
    font-family: var(--body-font);
    font-size: 1.1rem;
    color: #666;
    font-weight: 300;
    font-style: italic;
}

.blog-layout-classic {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 280px 1fr 320px;
    gap: 35px;
    align-items: start;
}

.sidebar-left {
    position: sticky;
    top: 20px;
}

.sidebar-section {
    background: var(--background-color);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 2px 12px rgba(139, 0, 0, 0.08);
    border: 1px solid rgba(139, 0, 0, 0.1);
}

.sidebar-title {
    font-family: var(--heading-font);
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-title i {
    color: var(--gold-color);
}

.featured-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.featured-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: var(--back-color);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.featured-item:hover {
    background: var(--background-color);
    border-color: var(--primary-color);
    transform: translateX(3px);
    box-shadow: 0 2px 8px rgba(139, 0, 0, 0.15);
}

.featured-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 6px;
}

.featured-date .day {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
}

.featured-date .month {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-info {
    flex: 1;
}

.featured-info h4 {
    font-family: var(--heading-font);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0 0 6px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-meta {
    font-size: 0.8rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 5px;
}

.featured-meta i {
    color: var(--primary-color);
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: var(--back-color);
    border-radius: 6px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.category-list a:hover {
    background: var(--background-color);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateX(3px);
    box-shadow: 0 2px 6px rgba(139, 0, 0, 0.1);
}

.category-list i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.main-content-classic {
    min-height: 600px;
}

.articles-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.article-card-classic {
    background: var(--background-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(139, 0, 0, 0.08);
    border: 1px solid rgba(139, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.article-card-classic:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.article-header h2 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 15px;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--back-color);
    font-size: 0.9rem;
    color: #666;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-meta i {
    color: var(--primary-color);
}

.article-excerpt {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

.read-more-classic {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.read-more-classic:hover {
    background: var(--secondary-color);
    transform: translateX(3px);
    box-shadow: 0 4px 12px rgba(0, 100, 209, 0.3);
}

.read-more-classic i {
    transition: transform 0.3s ease;
}

.read-more-classic:hover i {
    transform: translateX(3px);
}

.pagination-classic {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 30px 0;
}

.page-link {
    background: var(--background-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.page-link:hover {
    background: var(--primary-color);
    color: var(--background-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.3);
}

.page-numbers-classic {
    display: flex;
    gap: 8px;
}

.page-num {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--background-color);
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid rgba(139, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.page-num:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: scale(1.1);
    background: var(--back-color);
}

.page-num.active {
    background: var(--primary-color);
    color: var(--background-color);
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(139, 0, 0, 0.3);
}

.sidebar-right {
    position: sticky;
    top: 20px;
}

.sponsor-box {
    background: linear-gradient(135deg, var(--back-color) 0%, var(--background-color) 100%);
    border: 1px solid rgba(139, 0, 0, 0.1);
}

.sponsor-content {
    text-align: center;
}

.sponsor-link {
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sponsor-link:hover {
    transform: translateY(-3px);
}

.sponsor-img {
    max-width: 150px;
    margin: 15px auto;
    filter: drop-shadow(0 2px 6px rgba(139, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.sponsor-link:hover .sponsor-img {
    filter: drop-shadow(0 4px 10px rgba(139, 0, 0, 0.2));
}

.sponsor-text {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.info-box {
    background: linear-gradient(135deg, rgba(255, 216, 28, 0.1) 0%, var(--background-color) 100%);
    border: 1px solid rgba(255, 216, 28, 0.3);
}

.info-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 15px;
}

.info-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 15px;
    background: var(--background-color);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 0, 0, 0.2);
}

.info-link:hover {
    background: var(--primary-color);
    color: var(--background-color);
    transform: translateX(3px);
    box-shadow: 0 2px 8px rgba(139, 0, 0, 0.3);
}

.social-box {
    background: linear-gradient(135deg, rgba(0, 100, 209, 0.05) 0%, var(--background-color) 100%);
    border: 1px solid rgba(0, 100, 209, 0.15);
}

.social-links-sidebar {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-btn-sidebar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-btn-sidebar:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-btn-sidebar.facebook {
    background: #1877f2;
}

.social-btn-sidebar.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn-sidebar.youtube {
    background: #ff0000;
}

.modal-classic {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.modal-classic.active {
    display: block;
}

.modal-overlay-classic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal-dialog-classic {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    background: var(--background-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(139, 0, 0, 0.3);
    animation: modalFadeIn 0.3s ease;
    border: 2px solid rgba(139, 0, 0, 0.1);
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -45%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.modal-close-classic {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--background-color);
    border: 2px solid rgba(139, 0, 0, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-color);
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(139, 0, 0, 0.15);
}

.modal-close-classic:hover {
    background: var(--primary-color);
    color: var(--background-color);
    border-color: var(--primary-color);
    transform: rotate(90deg);
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.3);
}

.modal-content-classic {
    max-height: 90vh;
    overflow-y: auto;
    padding: 50px 40px 40px;
}

.modal-header-classic {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gold-color);
}

.modal-header-classic h1 {
    font-family: var(--heading-font);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 15px;
    line-height: 1.3;
}

.modal-meta-classic {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.95rem;
    color: #666;
}

.modal-meta-classic span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.modal-meta-classic i {
    color: var(--primary-color);
}

.modal-article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.modal-article-content p {
    margin-bottom: 20px;
}

.modal-share {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--back-color);
}

.modal-share h4 {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--heading-font);
}

.modal-share h4 i {
    color: var(--primary-color);
}

.share-buttons-classic {
    display: flex;
    gap: 10px;
}

.share-btn-classic {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.share-btn-classic:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.share-btn-classic.facebook { background: #1877f2; }
.share-btn-classic.twitter { background: #000000; }
.share-btn-classic.linkedin { background: #0a66c2; }
.share-btn-classic.whatsapp { background: #25d366; }
.share-btn-classic.copy { background: #6c757d; }

@media (max-width: 1200px) {
    .blog-layout-classic {
        grid-template-columns: 250px 1fr 280px;
        gap: 25px;
    }
    
    .blog-title-classic {
        font-size: 2.4rem;
    }
    
    .article-header h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 1024px) {
    .blog-layout-classic {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .sidebar-left,
    .sidebar-right {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .sidebar-section {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .blog-header-classic {
        padding: 30px 15px;
    }
    
    .blog-title-classic {
        font-size: 2rem;
    }
    
    .blog-tagline {
        font-size: 1rem;
    }
    
    .blog-layout-classic {
        padding: 0 15px;
        margin: 30px auto;
    }
    
    .sidebar-left,
    .sidebar-right {
        grid-template-columns: 1fr;
    }
    
    .article-card-classic {
        padding: 20px;
    }
    
    .article-header h2 {
        font-size: 1.4rem;
    }
    
    .article-excerpt {
        font-size: 1rem;
    }
    
    .modal-dialog-classic {
        width: 95%;
    }
    
    .modal-content-classic {
        padding: 45px 25px 30px;
    }
    
    .modal-header-classic h1 {
        font-size: 1.8rem;
    }
    
    .share-buttons-classic {
        justify-content: center;
    }
    
    .pagination-classic {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .page-link {
        font-size: 0.85rem;
        padding: 8px 15px;
    }
}

@media (max-width: 480px) {
    .blog-title-classic {
        font-size: 1.6rem;
    }
    
    .article-card-classic {
        padding: 18px;
    }
    
    .article-header h2 {
        font-size: 1.2rem;
    }
    
    .article-meta {
        gap: 12px;
        font-size: 0.85rem;
    }
    
    .modal-content-classic {
        padding: 40px 20px 25px;
    }
    
    .modal-close-classic {
        width: 35px;
        height: 35px;
        top: 12px;
        right: 12px;
    }
}

.modal-content-classic::-webkit-scrollbar {
    width: 8px;
}

.modal-content-classic::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.modal-content-classic::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.modal-content-classic::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}
