:root {
    --primary-blue: #03224d;
    --primary-red: #c24132;
    --primary-color: var(--primary-blue);
    --secondary-color: var(--primary-red);
    --accent-color: var(--primary-red);
    --success-color: #27ae60;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --gray-color: #95a5a6;
    --white: #ffffff;
    --border: #E0E0E0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.16);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    background: #fafafa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Page Header */
.page-header {
    background: var(--primary-blue);
    padding: 60px 0 40px;
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-family: 'Source Serif Pro', serif;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span {
    color: var(--white);
    font-weight: 600;
}

.breadcrumb i {
    font-size: 0.7rem;
    opacity: 0.7;
}

/* Featured Post - VIDEO SECTION */
.featured-post {
    padding: 60px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.featured-content .post-category {
    display: inline-block;
    background: rgba(3, 34, 77, 0.1);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.featured-content h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--dark-color);
    font-family: 'Source Serif Pro', serif;
}

.post-meta {
    color: var(--gray-color);
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.post-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

.post-excerpt {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 30px;
    line-height: 1.8;
}

.featured-hashtags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.featured-hashtags span {
    background: rgba(3, 34, 77, 0.05);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

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

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Featured Media - INLINE VIDEO PREVIEW */
.featured-media {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #0f2e2a, #1e4a44);
    min-height: 350px;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.featured-video-wrapper {
    position: relative;
    width: 100%;
    min-height: 350px;
    background: #081b18;
}

.inline-featured-video {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
    object-position: center center;
    background: #081b18;
}

.video-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    width: 100%;
    height: 100%;
    min-height: 350px;
    background: linear-gradient(135deg, rgba(15, 46, 42, 0.48), rgba(30, 74, 68, 0.58));
    color: var(--white);
    cursor: pointer;
    transition: opacity 0.25s ease, background 0.25s ease;
    border: 0;
    padding: 24px;
    z-index: 2;
}

.video-play-overlay:hover {
    background: linear-gradient(135deg, rgba(26, 74, 68, 0.62), rgba(42, 96, 88, 0.68));
}

.video-play-overlay i {
    font-size: 5rem;
    margin-bottom: 12px;
}

.video-play-overlay span {
    font-size: 1.2rem;
    font-weight: 600;
}

.video-play-overlay small {
    font-size: 0.85rem;
    opacity: 0.85;
}

.featured-media.video-ready .video-play-overlay {
    opacity: 0;
    pointer-events: none;
}

.placeholder-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

/* Blog Grid Section - STATIC IMAGES ONLY */
.blog-grid-section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 10px;
    font-family: 'Source Serif Pro', serif;
}

.section-subtitle {
    color: var(--gray-color);
    font-size: 1.1rem;
}

/* Blog Grid - 2 Column Layout */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

/* Blog Card Styles - STATIC IMAGES (NO VIDEO OVERLAY) */
.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #eef2f6;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}

/* Card Media - STATIC IMAGE (NO PLAY OVERLAY) */
.card-media {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #1a1a2e;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .card-image {
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    color: white;
    padding: 5px 14px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    z-index: 2;
}

/* Card Content */
.card-content {
    padding: 24px;
}

.card-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 0.8rem;
    color: var(--gray-color);
}

.card-meta i {
    margin-right: 5px;
    color: var(--primary-color);
    font-size: 0.75rem;
}

.card-date,
.card-read-time {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.card-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.card-content p {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.card-tags span {
    background: rgba(3, 34, 77, 0.06);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 500;
    transition: all 0.2s;
}

.card-tags span:hover {
    background: var(--primary-color);
    color: white;
    cursor: pointer;
}

.read-more {
    background: none;
    border: none;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    padding: 0;
    text-decoration: none;
}

.read-more:hover {
    gap: 12px;
    color: var(--accent-color);
}

/* Load More Button */
.load-more {
    text-align: center;
    margin-top: 20px;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--border);
    padding: 12px 32px;
    border-radius: 40px;
    font-weight: 600;
    color: var(--dark-color);
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(3, 34, 77, 0.02);
}

/* Video Modal - ONLY FOR FEATURED VIDEO */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.video-modal-content {
    max-width: 1000px;
    width: 90%;
    position: relative;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 32px;
    color: white;
    cursor: pointer;
    background: none;
    border: none;
    transition: color 0.2s;
}

.video-modal-close:hover {
    color: var(--accent-color);
}

#videoModalTitle {
    color: white;
    margin-bottom: 16px;
    font-size: 1.2rem;
}

.video-modal-container video {
    width: 100%;
    border-radius: 16px;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .featured-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .featured-media {
        order: -1;
    }

    .featured-content {
        order: 1;
    }
    
    .featured-content h2 {
        font-size: 1.8rem;
    }
    
    .blog-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 40px 0 30px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .featured-content h2 {
        font-size: 1.5rem;
    }
    
    .card-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .card-meta {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .btn-primary,
    .btn-outline {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .featured-media,
    .featured-video-wrapper,
    .inline-featured-video,
    .video-play-overlay {
        min-height: 280px;
    }

    .video-play-overlay i {
        font-size: 3.5rem;
    }

    .video-play-overlay span {
        font-size: 1rem;
    }
}
