/* Blog Page Specific Styles - OLYMPICAD VIII */

/* Blog Page Container */
.blog-page-container {
    position: relative;
    z-index: 1;
    padding-top: 140px;
    min-height: 100vh;
}

.blog-page-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Blog Page Header */
.blog-page-header {
    text-align: center;
    padding: 60px 0 80px 0;
    background: 
        radial-gradient(circle at 25% 30%, rgba(74, 144, 226, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 75% 70%, rgba(126, 211, 33, 0.06) 0%, transparent 35%);
}

.blog-header-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-header-content.animate {
    opacity: 1;
    transform: translateY(0);
}

.blog-page-title {
    font-size: 3rem;
    font-weight: bold;
    color: rgba(40, 40, 40, 0.95);
    text-shadow: 0 2px 20px rgba(255, 255, 255, 0.3);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    line-height: 1.2;
}

.blog-page-subtitle {
    font-size: 1.3rem;
    color: rgba(80, 80, 80, 0.85);
    text-shadow: 0 1px 10px rgba(255, 255, 255, 0.15);
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
}

/* Blog Content Grid */
.blog-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
}

/* Main Content Column */
.blog-main-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Featured Post Large */
.blog-featured-large {
    position: relative;
    height: 640px;
    border-radius: 25px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    /* HAPUS OPACITY 0 YANG MENYEMBUNYIKAN KONTEN */
    /* opacity: 0; */
    /* transform: translateY(50px); */
    cursor: pointer;
}

.blog-featured-large.animate {
    opacity: 1;
    transform: translateY(0);
}

.blog-featured-large:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 6px 20px rgba(0, 0, 0, 0.08);
}

.blog-featured-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4A90E2 0%, #03cfdd 25%, #7ED321 50%, #F5A623 75%, #dacc71 100%);
    z-index: 3;
}

.blog-featured-image {
    width: 100%;
    height: 40%;
    position: relative;
    overflow: hidden;
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-featured-large:hover .blog-featured-image img {
    transform: scale(1.05);
}

.blog-featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0) 0%, 
        rgba(0, 0, 0, 0.1) 50%, 
        rgba(0, 0, 0, 0.3) 100%);
}

.blog-featured-content {
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    backdrop-filter: blur(10px);
}

.blog-category {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
    margin-bottom: 10px;
        background: darkorange;
    color: white;
}

.blog-category.artikel {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.8) 0%, rgba(35, 186, 245, 0.8) 100%);
    color: white;
}

.blog-category.press-release {
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.8) 0%, rgba(255, 193, 7, 0.8) 100%);
    color: white;
}

.blog-category.trik-dan-tips {
    background: linear-gradient(135deg, rgba(126, 211, 33, 0.8) 0%, rgba(46, 204, 113, 0.8) 100%);
    color: white;
}

.blog-category.pengumuman {
    background: linear-gradient(135deg, rgba(220, 38, 127, 0.8) 0%, rgba(255, 105, 180, 0.8) 100%);
    color: white;
}

.blog-featured-title {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.blog-featured-title a {
    color: rgba(40, 40, 40, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    line-height: 1.3;
}

.blog-featured-title a:hover {
    color: rgba(74, 144, 226, 0.9);
}

.blog-featured-excerpt {
    font-size: 1rem;
    color: rgba(80, 80, 80, 0.85);
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-featured-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(100, 100, 100, 0.8);
    margin-bottom: 15px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.8) 0%, rgba(35, 186, 245, 0.8) 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.blog-read-more:hover {
    background: linear-gradient(135deg, rgba(74, 144, 226, 1) 0%, rgba(35, 186, 245, 1) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(74, 144, 226, 0.3);
}

/* Blog Posts Grid */
.blog-posts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.blog-post-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.3) 100%);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08), 0 3px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    cursor: pointer;
    position: relative;
}

.blog-post-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.blog-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12), 0 6px 18px rgba(0, 0, 0, 0.06);
}

.blog-post-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #F5A623 0%, #4A90E2 50%, #03cfdd 100%);
}

.blog-post-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post-card:hover .blog-post-image img {
    transform: scale(1.05);
}

.blog-post-content {
    padding: 20px;
}

.blog-post-title {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.blog-post-title a {
    color: rgba(40, 40, 40, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    line-height: 1.4;
    /* Remove line clamp for better title display */
}

.blog-post-title a:hover {
    color: rgba(74, 144, 226, 0.9);
}

.blog-post-excerpt {
    font-size: 0.9rem;
    color: rgba(80, 80, 80, 0.85);
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(100, 100, 100, 0.8);
}

/* Blog No Featured */
.blog-no-featured {
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.3) 100%);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 4px 16px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.blog-no-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4A90E2 0%, #03cfdd 25%, #7ED321 50%, #F5A623 75%, #dacc71 100%);
}

.blog-featured-placeholder {
    text-align: center;
    padding: 40px;
}

.blog-featured-placeholder h3 {
    font-size: 1.8rem;
    color: rgba(40, 40, 40, 0.9);
    margin-bottom: 15px;
}

.blog-featured-placeholder p {
    font-size: 1.1rem;
    color: rgba(80, 80, 80, 0.85);
    line-height: 1.6;
}

/* Enhanced Animation with Fallback */
.animate-on-scroll {
    /* Mulai dengan visible untuk fallback */
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Only hide if JavaScript is enabled */
.js-enabled .animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
}

.js-enabled .animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Critical Content - Always Visible */
.blog-featured-large .blog-featured-title,
.blog-featured-large .blog-featured-content,
.blog-featured-large .blog-featured-category,
.blog-featured-large .blog-featured-excerpt,
.blog-featured-large .blog-featured-meta,
.blog-featured-large .blog-read-more {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    animation: none !important;
}

/* Enhanced Featured Title Display */
.blog-featured-title {
    font-size: 1.8rem !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    margin-bottom: 15px !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
    display: block !important;
    min-height: 60px !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.blog-featured-title a,
.blog-featured-title span {
    color: rgba(40, 40, 40, 0.9) !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
    display: block !important;
    line-height: 1.3 !important;
    word-break: break-word !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.blog-featured-title a:hover {
    color: rgba(74, 144, 226, 0.9) !important;
}

/* Disable problematic animations */
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll,
    .blog-featured-large,
    .blog-post-card {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }
}

/* Pagination */
.blog-pagination {
    margin-top: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.blog-pagination.animate {
    opacity: 1;
    transform: translateY(0);
}

.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pagination-btn,
.pagination-number {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.4) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    color: rgba(40, 40, 40, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    min-width: 44px;
    justify-content: center;
}

.pagination-btn:hover,
.pagination-number:hover {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.8) 0%, rgba(35, 186, 245, 0.8) 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(74, 144, 226, 0.3);
}

.pagination-number.active {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.9) 0%, rgba(35, 186, 245, 0.9) 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.4);
}

.pagination-dots {
    color: rgba(100, 100, 100, 0.6);
    font-weight: bold;
    padding: 0 8px;
}

.pagination-numbers {
    display: flex;
    gap: 5px;
    align-items: center;
}

/* Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.3) 100%);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08), 0 3px 12px rgba(0, 0, 0, 0.04);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.sidebar-section.animate {
    opacity: 1;
    transform: translateY(0);
}

.sidebar-header {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(35, 186, 245, 0.1) 100%);
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.sidebar-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: rgba(40, 40, 40, 0.9);
    margin: 0;
}

.sidebar-posts {
    padding: 0;
}

.sidebar-post {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.sidebar-post:last-child {
    border-bottom: none;
}

.sidebar-post:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
}

.sidebar-post-image {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
}

.sidebar-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sidebar-post:hover .sidebar-post-image img {
    transform: scale(1.1);
}

.sidebar-post-content {
    flex: 1;
}

.sidebar-post-category {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.sidebar-post-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 8px;
}

.sidebar-post-title a {
    color: rgba(40, 40, 40, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sidebar-post-title a:hover {
    color: rgba(74, 144, 226, 0.9);
}

.sidebar-post-excerpt {
    font-size: 0.85rem;
    color: rgba(80, 80, 80, 0.85);
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sidebar-post-date {
    font-size: 0.75rem;
    color: rgba(100, 100, 100, 0.8);
}

.sidebar-empty {
    padding: 30px 20px;
    text-align: center;
    color: rgba(100, 100, 100, 0.8);
    font-style: italic;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .blog-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-featured-large {
        height: 450px;
    }
    
    .blog-page-title {
        font-size: 2.5rem;
    }
    
    .blog-page-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .blog-page-container {
        padding-top: 120px;
    }
    
    .blog-page-wrapper {
        padding: 0 15px;
    }
    
    .blog-page-header {
        padding: 40px 0 60px 0;
    }
    
    .blog-page-title {
        font-size: 2rem;
    }
    
    .blog-page-subtitle {
        font-size: 1rem;
    }
    
    .blog-content-grid {
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .blog-main-content {
        gap: 30px;
    }
    
    .blog-featured-large {
        height: 400px;
    }
    
    .blog-featured-content {
        padding: 20px;
    }
    
    .blog-featured-title {
        font-size: 1.5rem;
    }
    
    .blog-post-content {
        padding: 15px;
    }
    
    .blog-post-title {
        font-size: 1.1rem;
    }
    
    .sidebar-section {
        gap: 20px;
    }
    
    .sidebar-post {
        padding: 15px;
        flex-direction: column;
        align-items: stretch;
    }
    
    .sidebar-post-image {
        width: 100%;
        height: 120px;
        margin-bottom: 10px;
    }
    
    .pagination-container {
        gap: 8px;
    }
    
    .pagination-btn,
    .pagination-number {
        padding: 8px 12px;
        font-size: 0.85rem;
        min-width: 40px;
    }
    
    .pagination-btn {
        flex-direction: column;
        gap: 4px;
    }
}

@media (max-width: 480px) {
    .blog-page-title {
        font-size: 1.8rem;
    }
    
    .blog-page-subtitle {
        font-size: 0.95rem;
    }
    
    .blog-featured-large {
        height: 350px;
    }
    
    .blog-featured-content {
        padding: 15px;
    }
    
    .blog-featured-title {
        font-size: 1.3rem;
    }
    
    .blog-post-image {
        height: 150px;
    }
    
    .pagination-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .pagination-numbers {
        flex-wrap: wrap;
        justify-content: center;
    }
}

    /* ==========================================================================
   CSS TAMBAHAN UNTUK BLOG DETAIL - Tambahkan ke file blog.css yang sudah ada
   ========================================================================== */

/* Breadcrumb Navigation */
.breadcrumb {
    padding: 20px 0;
    font-size: 0.9rem;
    color: rgba(100, 100, 100, 0.8);
    margin-bottom: 20px;
}

.breadcrumb-link {
    color: rgba(74, 144, 226, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: rgba(74, 144, 226, 1);
}

.breadcrumb-separator {
    margin: 0 8px;
    color: rgba(150, 150, 150, 0.6);
}

.breadcrumb-current {
    color: rgba(40, 40, 40, 0.9);
    font-weight: 500;
}

/* Blog Detail Article Container */
.blog-detail {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 4px 16px rgba(0, 0, 0, 0.05);
    margin-bottom: 50px;
    position: relative;
}

.blog-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4A90E2 0%, #03cfdd 25%, #7ED321 50%, #F5A623 75%, #dacc71 100%);
    z-index: 3;
}

/* Article Header */
.blog-detail-header {
    padding: 40px 40px 20px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.blog-detail-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.blog-detail-date {
    font-size: 0.9rem;
    color: rgba(100, 100, 100, 0.8);
}

.blog-detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: rgba(40, 40, 40, 0.95);
    margin-bottom: 30px;
    word-wrap: break-word;
}

.blog-detail-author-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.author-details {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-text {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: rgba(40, 40, 40, 0.9);
    font-size: 1rem;
}

.author-role {
    font-size: 0.85rem;
    color: rgba(100, 100, 100, 0.8);
}

/* Share Buttons */
.blog-share-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.share-label {
    font-size: 0.9rem;
    color: rgba(100, 100, 100, 0.8);
    font-weight: 500;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0;
}

.share-whatsapp {
    background: #25D366;
    color: white;
}

.share-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
}

.share-facebook {
    background: #1877F2;
    color: white;
}

.share-facebook:hover {
    background: #166FE5;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(24, 119, 242, 0.3);
}

.share-twitter {
    background: #1DA1F2;
    color: white;
}

.share-twitter:hover {
    background: #0d8bd9;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(29, 161, 242, 0.3);
}

.share-linkedin {
    background: #0077B5;
    color: white;
}

.share-linkedin:hover {
    background: #005582;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 119, 181, 0.3);
}

.share-copy {
    background: rgba(100, 100, 100, 0.1);
    color: rgba(100, 100, 100, 0.8);
    border: 1px solid rgba(200, 200, 200, 0.3);
}

.share-copy:hover {
    background: rgba(74, 144, 226, 0.1);
    color: rgba(74, 144, 226, 0.9);
    border-color: rgba(74, 144, 226, 0.3);
    transform: translateY(-2px);
}

/* Featured Image */
.blog-detail-image {
    margin: 0;
    overflow: hidden;
}

.featured-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-detail:hover .featured-image {
    transform: scale(1.02);
}

/* Article Summary */
.blog-detail-summary {
    padding: 30px 40px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.05) 0%, rgba(35, 186, 245, 0.05) 100%);
    border-left: 4px solid rgba(74, 144, 226, 0.3);
    margin: 0;
}

.summary-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(60, 60, 60, 0.9);
    font-weight: 500;
    margin: 0;
    font-style: italic;
}

/* Article Content */
.blog-detail-content {
    padding: 40px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(50, 50, 50, 0.9);
}

.blog-detail-content h2,
.blog-detail-content h3,
.blog-detail-content h4 {
    color: rgba(40, 40, 40, 0.9);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.blog-detail-content h2 {
    font-size: 1.5rem;
    border-bottom: 2px solid rgba(74, 144, 226, 0.2);
    padding-bottom: 10px;
}

.blog-detail-content h3 {
    font-size: 1.3rem;
}

.blog-detail-content h4 {
    font-size: 1.1rem;
}

.blog-detail-content p {
    margin-bottom: 20px;
    text-align: justify;
}

.blog-detail-content ul,
.blog-detail-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.blog-detail-content li {
    margin-bottom: 8px;
}

.blog-detail-content blockquote {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.08) 0%, rgba(35, 186, 245, 0.08) 100%);
    border-left: 4px solid rgba(74, 144, 226, 0.5);
    margin: 25px 0;
    padding: 20px;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: rgba(60, 60, 60, 0.9);
}

.blog-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Article Footer */
.blog-detail-footer {
    padding: 30px 40px 40px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(248, 250, 252, 0.4) 100%);
}

.blog-detail-tags {
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.tags-label {
    font-weight: 600;
    color: rgba(100, 100, 100, 0.8);
    margin-right: 5px;
}

.tag {
    background: rgba(74, 144, 226, 0.1);
    color: rgba(74, 144, 226, 0.8);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(74, 144, 226, 0.2);
    color: rgba(74, 144, 226, 1);
}

.blog-share-footer {
    justify-content: center;
    padding-top: 20px;
    border-top: 1px solid rgba(200, 200, 200, 0.2);
}

/* Related Posts Section */
.blog-related-posts {
    margin-bottom: 50px;
}

.related-posts-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: rgba(40, 40, 40, 0.9);
    margin-bottom: 30px;
    text-align: center;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.related-post-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.3) 100%);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08), 0 3px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.related-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12), 0 6px 18px rgba(0, 0, 0, 0.06);
}

.related-post-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #F5A623 0%, #4A90E2 50%, #03cfdd 100%);
}

.related-post-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-post-card:hover .related-post-image img {
    transform: scale(1.05);
}

.related-post-content {
    padding: 20px;
}

.related-post-category {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.related-post-title {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 10px;
}

.related-post-title a {
    color: rgba(40, 40, 40, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-post-title a:hover {
    color: rgba(74, 144, 226, 0.9);
}

.related-post-excerpt {
    font-size: 0.9rem;
    color: rgba(80, 80, 80, 0.85);
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-post-date {
    font-size: 0.8rem;
    color: rgba(100, 100, 100, 0.8);
}

/* Quick Links Sidebar */
.sidebar-quick-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.2) 100%);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.quick-link:hover {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(35, 186, 245, 0.1) 100%);
    transform: translateX(5px);
    border-color: rgba(74, 144, 226, 0.2);
}

.quick-link-icon {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.quick-link-text {
    color: rgba(40, 40, 40, 0.9);
    font-weight: 500;
    font-size: 0.9rem;
}

.quick-link:hover .quick-link-text {
    color: rgba(74, 144, 226, 0.9);
}

/* Mobile Responsive for Blog Detail */
@media (max-width: 1024px) {
    .related-posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-detail-title {
        font-size: 2rem;
    }
    
    .blog-detail-header,
    .blog-detail-content,
    .blog-detail-footer {
        padding: 30px;
    }
    
    .blog-detail-summary {
        padding: 25px 30px;
    }
}

@media (max-width: 768px) {
    .blog-detail-title {
        font-size: 1.8rem;
    }
    
    .blog-detail-header,
    .blog-detail-content,
    .blog-detail-footer {
        padding: 25px 20px;
    }
    
    .blog-detail-summary {
        padding: 20px;
    }
    
    .blog-detail-author-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .blog-share-buttons {
        justify-content: flex-start;
    }
    
    .featured-image {
        height: 250px;
    }
    
    .blog-detail-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .breadcrumb {
        padding: 15px 0;
        font-size: 0.85rem;
    }
    
    .breadcrumb-separator {
        margin: 0 6px;
    }
}

@media (max-width: 480px) {
    .blog-detail-title {
        font-size: 1.5rem;
    }
    
    .blog-detail-header,
    .blog-detail-content,
    .blog-detail-footer {
        padding: 20px 15px;
    }
    
    .blog-detail-summary {
        padding: 15px;
    }
    
    .featured-image {
        height: 200px;
    }
    
    .share-btn {
        width: 36px;
        height: 36px;
    }
    
    .blog-share-buttons {
        gap: 8px;
    }
    
    .blog-detail-content {
        font-size: 1rem;
    }
    
    .author-details {
        gap: 10px;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
    }
    
    .blog-detail-tags {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .tag {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
    
    .related-posts-title {
        font-size: 1.5rem;
    }
    
    .related-post-content {
        padding: 15px;
    }
    
    .quick-link {
        padding: 10px 12px;
    }
    
    .quick-link-text {
        font-size: 0.85rem;
    }
    
    .breadcrumb {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 5px;
    }
}

/* Category Color Schemes untuk Blog Detail */
.blog-category.artikel,
.related-post-category.artikel,
.sidebar-post-category.artikel {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.8) 0%, rgba(35, 186, 245, 0.8) 100%);
    color: white;
}

.blog-category.press-release,
.related-post-category.press-release,
.sidebar-post-category.press-release {
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.8) 0%, rgba(255, 193, 7, 0.8) 100%);
    color: white;
}

.blog-category.trik-dan-tips,
.related-post-category.trik-dan-tips,
.sidebar-post-category.trik-dan-tips {
    background: linear-gradient(135deg, rgba(126, 211, 33, 0.8) 0%, rgba(46, 204, 113, 0.8) 100%);
    color: white;
}

.blog-category.pengumuman,
.related-post-category.pengumuman,
.sidebar-post-category.pengumuman {
    background: linear-gradient(135deg, rgba(220, 38, 127, 0.8) 0%, rgba(255, 105, 180, 0.8) 100%);
    color: white;
}


.blog-featured-image {
    height: 50%;
    max-height: 300px;
}