/* ============================================
   Media Layout (Dual Column)
   ============================================ */
.media-dual-column {
    display: grid;
    grid-template-columns: 280px 1fr;
    /* TikTok fixed width, Social flexible */
    gap: var(--space-xl);
    width: 100%;
    margin-bottom: var(--space-xl);
    align-items: start;
}

/* Left Column: TikTok Section */
.tiktok-section {
    width: 100%;
    margin-bottom: 0;
    /* Reset margin */
}

.video-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.video-wrapper {
    position: relative;
    width: 100%;
    /* Fill container */
    height: 500px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #000;
    display: block;
    transition: transform var(--transition-smooth);
}

.video-wrapper:hover {
    transform: translateY(-5px);
}

.tiktok-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-fast);
    color: white;
    gap: var(--space-xs);
    font-weight: 500;
    z-index: 10;
}

.video-wrapper:hover .video-overlay {
    opacity: 1;
}

.play-icon {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

/* Right Column: Social Feeds */
.social-feed-column {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

/* Zero out margins for sections inside grid */
.instagram-section,
.youtube-section {
    width: 100%;
    margin-bottom: 0;
}

/* Social Card Large (Instagram & YouTube) */
.social-card-large {
    position: relative;
    width: 100%;
    height: 230px;
    /* Adjusted to align with 500px TikTok column (230+230+40gap) */
    border-radius: var(--radius-md);
    overflow: hidden;
    display: block;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-smooth);
}

.social-card-large:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-large-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-fast);
    color: white;
    font-weight: 500;
    gap: var(--space-xs);
}

.social-card-large:hover .card-overlay {
    opacity: 1;
}

.overlay-icon {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.card-overlay.youtube {
    background: rgba(0, 0, 0, 0.5);
    /* Slightly darker for video feel */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .media-dual-column {
        grid-template-columns: 1fr;
        /* Stack on mobile */
        gap: var(--space-lg);
    }

    .video-wrapper {
        width: 280px;
        /* Keep fixed width centered on mobile */
        margin: 0 auto;
    }

    .social-feed-column {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}