.interviews-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (min-width: 900px) {
    .interviews-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
.interview-card {
    background: silver;
    overflow: hidden;
    border: 3px solid black;
    box-shadow: 5px 5px black;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}
.interview-card .window-header {
    color: white;
    padding: 0.75rem 1rem;
    font-weight: bold;
}

.interview-card .video-container {
    position: relative;
    width: calc(100% - 2rem);
    max-width: 500px;
    margin: 1rem auto;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    align-self: center;
}

.interview-card .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid black;
}

.interview-card .card-content {
    color: black;
    text-shadow: none;
    padding: 0 1.5rem 1.5rem;
    font-size: 0.9rem;
    margin-top: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
}
.interview-card p {
    margin: 0 0 1rem 0;
    line-height: 1.5;
}
.interview-card .transcript-link {
    display: inline-block;
    color: #0066cc;
    text-decoration: none;
}
.interview-card .transcript-link:hover {
    text-decoration: underline;
}

.interview-card .interview-date {
    color: #666;
    font-style: italic;
    margin: 0 0 0.75rem;
    font-size: 0.9rem;
}

#whatisyourname-img, #djelmoe-img {
    display: block;
    max-width: 100%;
    width: 500px;
    height: auto;
    margin: 1rem auto 1rem;
}

.interview-card .video-container.dual-video {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    height: auto;
    max-width: 500px;
    margin: 1rem auto 1rem;
}

.interview-card .video-container.dual-video .video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.interview-card .video-container.dual-video .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid black;
}

@media (min-width: 768px) {
    .interview-card .video-container.dual-video {
        max-width: 500px;
    }
}