﻿/* ## PROJECT DETAIL PAGE ## */

/* Responsive 16:9 video embed wrapper */
.project-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 2rem;
}

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

/* Full-width banner image at the top of the page */
.project-banner {
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius);
    cursor: pointer;
    display: block;
    transition: var(--transition);
}

.project-banner:hover {
    filter: brightness(1.1);
}

.archive-notice {
    border-left: 4px solid #ffbb33;
    padding: 1.5rem 2rem;
    background: rgba(255, 187, 51, 0.05);
    margin-bottom: 3rem;
    border-radius: 0 8px 8px 0;
}
.status-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #ffbb33;
    color: #000;
    font-weight: bold;
    font-size: 0.8rem;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 10px;
}

/* ## RESPONSIVE ## */

@media (max-width: 768px) {
    .project-banner {
        max-height: 40vh;
    }
}