/* Video Section Styles for Checklist Pages */

.video-section {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: var(--card-shadow);
    margin-bottom: 3rem;
    border: 1px solid rgba(0,0,0,0.04);
}

.video-section-title {
    font-family: 'Lora', serif;
    color: var(--forest-green);
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
    text-align: center;
}

.video-section-subtitle {
    color: #666;
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.5;
}

/* Video Card */
.video-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: var(--card-shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.05);
}

.video-card:last-child {
    margin-bottom: 0;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px -8px rgba(75, 54, 33, 0.15);
}

/* Video Wrapper (responsive iframe) */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Video Info */
.video-info {
    padding: 1rem 1.25rem;
}

.video-title {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.video-title a {
    color: var(--forest-green);
    text-decoration: none;
    transition: opacity 0.2s;
}

.video-title a:hover {
    opacity: 0.8;
}

/* Key Takeaways */
.key-takeaways {
    background: var(--off-white);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    margin-top: 0.5rem;
    border-left: 3px solid var(--leaf-lime);
}

.key-takeaways-title {
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--forest-green);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.key-takeaways ul {
    margin: 0;
    padding-left: 1.2rem;
}

.key-takeaways li {
    font-size: 0.82rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 0.25rem;
}

/* No Videos Message */
.no-videos-msg {
    text-align: center;
    padding: 2rem 1rem;
    color: #999;
    font-size: 0.95rem;
    font-style: italic;
}

/* Responsive */
@media (max-width: 480px) {
    .video-section {
        padding: 1.5rem 1rem;
        margin-bottom: 2rem;
    }
    .video-section-title {
        font-size: 1.3rem;
    }
    .video-info {
        padding: 0.85rem 1rem;
    }
    .video-title {
        font-size: 0.9rem;
    }
}
