/* News + Vision Section */
.news-vision-section {
    position: relative;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.news-card {
    overflow: hidden;
}

.news-card.featured {
    border-color: var(--primary);
}

/* Image */
.news-image-container {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.news-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.news-card:hover img {
    transform: scale(1.05);
}

/* Badge */
.news-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: #fff;
    padding: .4rem .9rem;
    border-radius: 20px;
    font-size: .85rem;
    display: flex;
    gap: .4rem;
}

/* Content */
.news-content {
    padding: 1.5rem;
}

.news-date {
    font-size: .85rem;
    color: var(--primary);
    font-weight: 600;
    display: block;
    margin-bottom: .5rem;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--primary);
    font-weight: 600;
}

/* Vision */
.vision-statement {
    display: flex;
    gap: 2.5rem;
    padding: 3rem;
    margin-bottom: 3rem;
}

.vision-icon i {
    font-size: 3rem;
    color: var(--primary);
}

.vision-metrics {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

.metric strong {
    display: block;
    font-size: 1.8rem;
}

/* CTA */
.news-cta {
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .vision-statement {
        flex-direction: column;
        text-align: center;
    }

    .vision-metrics {
        justify-content: center;
        flex-wrap: wrap;
    }
}











/* ===== Modern Learning Approach Page ===== */

:root {
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hero Section */
.modern-hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
    position: relative;
    overflow: hidden;
}

.modern-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text) 0%, var(--muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.hero-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.meta-tag, .meta-date {
    padding: 0.5rem 1.5rem;
    background: var(--bg-light);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
    border: 1px solid var(--border);
}

/* Layout */
.content-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
    align-items: start;
    padding: 4rem 0;
}

@media (max-width: 1200px) {
    .content-layout {
        grid-template-columns: 1fr 300px;
        gap: 3rem;
    }
}

/* Main Content Card */
.modern-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    position: relative;
}

.modern-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.content-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 2;
}

/* Image */
.modern-image-frame {
    position: relative;
    height: 400px;
    border-radius: 0;
    margin-bottom: 0;
    overflow: hidden;
}

.modern-image-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.1));
    z-index: 1;
}

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

.modern-card:hover .modern-image {
    transform: scale(1.02);
}

/* Content Body */
.content-body {
    padding: 3rem;
}

.content-intro {
    margin-bottom: 3rem;
}

.content-lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-light);
}

.content-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Strategy Section */
.strategy-section {
    margin-top: 3rem;
}

.section-header {
    margin-bottom: 2.5rem;
}

.content-heading {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.section-underline {
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.strategy-grid {
    display: grid;
    gap: 1.5rem;
}

.strategy-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
    transition: var(--transition-smooth);
}

.strategy-item:hover {
    background: var(--bg-lighter);
    transform: translateX(4px);
}

.strategy-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    opacity: 0.3;
    min-width: 50px;
}

.strategy-content {
    flex: 1;
}

.strategy-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.strategy-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

/* Sidebar */
.content-sidebar {
    position: sticky;
    top: 2rem;
}

.sidebar-header {
    margin-bottom: 2rem;
}

.sidebar-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.sidebar-subtitle {
    font-size: 0.9375rem;
    color: var(--muted);
    margin: 0;
}

.sidebar-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Sidebar Cards */
.modern-sidebar-card {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
    text-decoration: none;
    color: inherit;
}

.modern-sidebar-card:hover {
    border-color: var(--primary);
    background: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.sidebar-card-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

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

.modern-sidebar-card:hover .sidebar-card-image img {
    transform: scale(1.05);
}

.sidebar-card-content {
    flex: 1;
    min-width: 0;
}

.sidebar-card-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    color: var(--text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sidebar-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
}

.card-tag {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    background: var(--bg-light);
    color: var(--text);
    border-radius: 50px;
}

.card-arrow {
    color: var(--primary);
    font-size: 1.25rem;
    opacity: 0;
    transform: translateX(-5px);
    transition: var(--transition-smooth);
}

.modern-sidebar-card:hover .card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.75rem;
    }
    
    .content-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .content-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .modern-hero {
        padding: 80px 0 40px;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .content-body {
        padding: 2rem;
    }
    
    .strategy-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .strategy-number {
        min-width: auto;
    }
    
    .modern-image-frame {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.875rem;
    }
    
    .modern-sidebar-card {
        flex-direction: column;
    }
    
    .sidebar-card-image {
        width: 100%;
        height: 160px;
    }
    
    .content-badge {
        top: 1rem;
        right: 1rem;
        font-size: 0.75rem;
        padding: 0.375rem 1rem;
    }
}