/* --- MEDIA GRID --- */
.media-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 1024px) {
    .media-grid { grid-template-columns: 1.2fr 0.8fr; } /* Video gets more space */
}

.media-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #f0f0f0;
    transition: transform 0.4s ease;
}

.media-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(36, 58, 106, 0.08);
}

/* Accent Colors */
.video-card { border-top: 6px solid #E4002B; }
.fb-card { border-top: 6px solid #243A6A; }

.media-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.media-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.youtube-red { background: #E4002B; }
.fb-blue { background: #243A6A; }

/* Video Handling */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

/* Facebook Fixes */
.fb-wrapper {
    overflow: hidden;
    border-radius: 15px;
    background: #f8f9fa;
    height: 450px;
    display: flex;
    justify-content: center;
}

.media-footer {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
}

.subscribe-btn {
    font-size: 0.8rem;
    font-weight: 800;
    color: #E4002B;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- SOCIAL GLASS CARDS --- */
.social-glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 32px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.social-glass-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

/* Fix Facebook width and height for responsiveness */
.fb-wrapper {
    width: 100% !important;
    overflow: hidden;
    border-radius: 16px;
}

/* Brutalist Button Style */
.subscribe-btn-brutalist {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem;
    background: white;
    color: #0F172A;
    border-radius: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 6px 6px 0px 0px #FF0000;
    transition: all 0.2s ease;
}

.subscribe-btn-brutalist:hover {
    box-shadow: 2px 2px 0px 0px #FF0000;
    transform: translate(4px, 4px);
}

/* MOBILE FIXES */
@media (max-width: 768px) {
    .social-hub-section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
    
    .social-glass-card {
        padding: 20px;
        border-radius: 24px;
    }

    .social-hub-section h2 {
        font-size: 2.5rem !important;
    }
}