﻿
/* Video Hero Section */
.video-hero-section {
    position: relative;
    min-height: 500px;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

    .video-background video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 59, 103, 0.85) 0%, rgba(10, 90, 138, 0.75) 50%, rgba(245, 247, 250, 0.95) 100%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    padding: 40px 0;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
    text-align: center;
    padding-top: 280px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.times-symbol {
    font-size: larger;
}

.hero-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-illustration {
    flex-shrink: 0;
}

.illustration-wrapper {
    width: 280px;
    height: 160px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.illustration-bg {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='20' cy='20' r='2' fill='%230a254020'/%3E%3Ccircle cx='50' cy='30' r='1.5' fill='%230a254015'/%3E%3Ccircle cx='80' cy='25' r='2' fill='%230a254020'/%3E%3C/svg%3E") repeat;
}

.illustration-icons {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    font-size: 20px;
}

.illustration-people {
    display: flex;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.person {
    width: 50px;
    height: 80px;
    background: linear-gradient(180deg, #0a2540 0%, #1e3a5f 100%);
    border-radius: 25px 25px 0 0;
}

.person-2 {
    background: linear-gradient(180deg, #3b82f6 0%, #60a5fa 100%);
}

/* Filter Section */
.filter-section {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 16px 0;
    margin-top: 30px;
    border-radius: 0;
}

.filter-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 8px 20px;
    border: none;
    background: transparent;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 20px;
    transition: all 0.3s ease;
}

    .filter-tab:hover {
        background: rgba(10, 37, 64, 0.1);
        color: #0a2540;
    }

    .filter-tab.active {
        background: #0a2540;
        color: #ffffff;
    }

/* Main Content */
.main-content {
    padding: 32px 0 60px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
}

/* Articles Column */
.articles-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Featured Article */
.featured-article {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.article-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

    .article-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.article-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: #0a2540;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.article-content {
    padding: 24px;
}

.article-title {
    font-size: 22px;
    font-weight: 700;
    color: #0a2540;
    margin-bottom: 8px;
    line-height: 1.3;
}

.article-excerpt {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 16px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #94a3b8;
}

.meta-category {
    color: #0a2540;
    font-weight: 500;
}

.meta-divider {
    color: #cbd5e1;
}

.read-more-btn {
    margin-left: auto;
    background: #0a2540;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .read-more-btn:hover {
        background: #1e3a5f;
    }

/* Latest Articles */
.section-title {
    font-size: 20px;
    font-weight: 700;
    color: #0047ab;
    margin-bottom: 20px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.article-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

    .article-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }

/*.card-image {
    position: relative;
    height: 140px;
    overflow: hidden;
}

    .card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }*/
.card-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.card-video {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}


.card-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(10, 37, 64, 0.9);
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
}

.card-content {
    padding: 16px;
}

.card-title {
    font-size: 15px;
    font-weight: 600;
    color: #0a2540;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-meta {
    display: flex;
    gap: 6px;
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 12px;
}

.card-link {
    color: #0a2540;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.3s ease;
}

    .card-link:hover {
        gap: 8px;
    }

    .card-link .arrow {
        color: #f59e0b;
    }

/* More Articles List */
.more-articles {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.list-article {
    background: #ffffff;
    padding: 16px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    cursor: pointer;
}

    .list-article:hover {
        background: #f8fafc;
        transform: translateX(4px);
    }

.list-title {
    font-size: 15px;
    font-weight: 600;
    color: #0a2540;
    line-height: 1.4;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.sidebar-title {
    font-size: 20px;
    font-weight: 700;
    color: #0047ab;
    margin-bottom: 12px;
    text-align: center;
}

.sidebar-text {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

/* Forward Focus */
.forward-focus {
    background: linear-gradient(135deg, #0a2540 0%, #1e3a5f 100%);
}

    .forward-focus .sidebar-title,
    .forward-focus .sidebar-text {
        color: #ffffff;
    }

    .forward-focus .sidebar-text {
        opacity: 0.85;
    }

/* Latest Reports */
.report-item {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
}

    .report-item:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

.report-date {
    font-size: 12px;
    color: #94a3b8;
    display: block;
    margin-bottom: 6px;
}

.report-title {
    font-size: 14px;
    font-weight: 600;
    color: #0a2540;
    line-height: 1.4;
    margin-bottom: 10px;
}

.report-image {
    border-radius: 8px;
    overflow: hidden;
    height: 70px;
}

    .report-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Subscribe */
.subscribe-form {
    margin-top: 12px;
}

.subscribe-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 12px;
    transition: border-color 0.3s ease;
}

    .subscribe-input:focus {
        outline: none;
        border-color: #0a2540;
    }

.subscribe-btn {
    width: 100%;
    padding: 12px;
    background: #0a2540;
    color: #ffffff;
    border: 2px solid #0a2540;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .subscribe-btn:hover {
        background: transparent;
        color: #0a2540;
    }

/* Topics */
.topics-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.topic-tag {
    padding: 6px 14px;
    background: #f1f5f9;
    color: #64748b;
    border-radius: 20px;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .topic-tag:hover {
        background: #0a2540;
        color: #ffffff;
    }

/* Responsive Styles */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .topics-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        max-width: 100%;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }

    .sidebar {
        grid-template-columns: 1fr;
    }

    .nav-tabs {
        gap: 16px;
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .nav-tab {
        white-space: nowrap;
    }

    .filter-tabs {
        overflow-x: auto;
        padding-bottom: 8px;
        flex-wrap: nowrap;
    }

    .filter-tab {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .read-more-btn {
        margin-left: 0;
    }

    .topics-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-section {
        padding: 24px 0;
    }

    .hero-title {
        font-size: 32px;
    }

    .illustration-wrapper {
        width: 220px;
        height: 130px;
    }

    .article-title {
        font-size: 18px;
    }

    .article-image {
        height: 180px;
    }

    .card-image {
        height: 120px;
    }

    .topics-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.featured-article,
.article-card,
.sidebar-card {
    animation: fadeIn 0.5s ease forwards;
}

    .article-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .article-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .article-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .article-card:nth-child(4) {
        animation-delay: 0.4s;
    }

.btn {
    padding: 11px 13px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #0066cc;
    color: #ffffff;
    margin-top: 12px;
}

.report-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.report-item {
    cursor: pointer;
}
    .report-item:hover {
        box-shadow: 0 4px 12px rgba(0,0,0,0.12);
        transform: translateY(-2px);
        transition: all 0.3s ease;
    }
