/* --- block 1 --- */
/* ===== NEWS SECTION ===== */
        .news-section { background: var(--off-white); padding-bottom: 60px; }
        .video-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .video-card {
            background: var(--white);
            border: 1px solid var(--gray-100);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s;
            display: block;
            color: inherit;
        }
        .video-card:hover {
            border-color: var(--gray-200);
            box-shadow: 0 6px 20px rgba(0,0,0,0.05);
            transform: translateY(-3px);
        }
        .video-thumb {
            background: var(--black-rich);
            height: 160px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        .video-thumb img {
            width: 100%; height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }
        .video-card:hover .video-thumb img { transform: scale(1.05); }
        .video-thumb svg {
            position: absolute;
            width: 48px; height: 48px;
            color: var(--white);
            opacity: 0.85;
            transition: all 0.2s;
            filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
        }
        .video-card:hover .video-thumb svg { opacity: 1; transform: scale(1.1); }
        .video-card-body { padding: 18px; }
        .video-card-body h3 {
            font-family: var(--font-display);
            font-size: 1.05rem; font-weight: 600;
            color: var(--black); margin-bottom: 8px;
        }
        section .video-card-body p {
            font-size: 0.88rem !important;            color: var(--section-text); line-height: 1.65 !important;
            margin-bottom: 0 !important;
        }

        /* ===== HAPPENINGS SECTION ===== */
        .happenings-section { background: var(--white); }
        .happenings-group { margin-bottom: 40px; }
        .happenings-group:last-child { margin-bottom: 0; }
        .happenings-header {
            display: flex; align-items: center; gap: 10px;
            margin-bottom: 20px;
        }
        .happenings-header-icon {
            width: 36px; height: 36px; border-radius: 8px;
            background: var(--red-glow);
            display: flex; align-items: center; justify-content: center;
        }
        .happenings-header-icon svg { width: 18px; height: 18px; color: var(--red); }
        .happenings-header h3 {
            font-family: var(--font-display);
            font-size: 1.15rem; font-weight: 600;
            color: var(--black);
        }
        .happenings-cards {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
        }
        .happening-card {
            background: var(--gray-50);
            border: 1px solid var(--gray-100);
            border-radius: 10px;
            padding: 24px;
        }
        .happening-card h4 {
            font-family: var(--font-display);
            font-size: 1.05rem; font-weight: 600;
            color: var(--black); margin-bottom: 10px;
        }
        section .happening-card p {
            font-size: 0.88rem !important;            color: var(--section-text); line-height: 1.65 !important;
            margin-bottom: 12px !important;
        }
        .happening-card .pdf-link {
            display: inline-flex; align-items: center; gap: 6px;
            font-size: 0.88rem; font-weight: 600; color: var(--red);
        }
        .happening-card .pdf-link svg { width: 16px; height: 16px; }
        .happening-card .pdf-link:hover { gap: 10px; }

        /* ===== PUBLICATIONS SECTION ===== */
        .publications-section { background: var(--off-white); padding-top: 60px; }
        .publications-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 24px;
        }
        .publication-col h3 {
            font-family: var(--font-display);
            font-size: 1.05rem; font-weight: 600;
            color: var(--black); margin-bottom: 14px;
        }
        section .publication-col p {
            font-size: 0.88rem !important;            color: var(--section-text); line-height: 1.85 !important;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .video-grid { grid-template-columns: 1fr 1fr; }
            .publications-grid { grid-template-columns: repeat(3, 1fr); }
        }
        @media (max-width: 768px) {
            .video-grid { grid-template-columns: 1fr; }
            .publications-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 480px) {
            .publications-grid { grid-template-columns: 1fr; }
        }
