/* ==========================================================================
   Multimedia Section
   ========================================================================== */
.multimedia-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}
.multimedia-title {
    font-size: 0.8rem;
    line-height: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--color-text-dark);
}
.multimedia-video-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    cursor: pointer;
    background: #000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    border: 2px solid var(--color-green);
}
.multimedia-video-wrapper:hover {
    transform: translateY(-5px);
}
.multimedia-thumb {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity 0.3s;
}
.multimedia-video-wrapper:hover .multimedia-thumb {
    opacity: 0.5;
}
.play-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.play-icon {
    width: 60px;
    height: 60px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}
.multimedia-video-wrapper:hover .play-icon {
    transform: scale(1.1);
}
.play-triangle {
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid var(--color-dark-green);
    margin-left: 5px; /* Visual center adjustment */
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
.video-modal:not([hidden]) {
    opacity: 1;
    visibility: visible;
}
.video-modal-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
}
.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    z-index: 10000;
}
.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
}
.video-container {
    position: relative;
    padding-top: 56.25%;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--color-green);
}
.video-container video {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
}

