.ghtc-interviews-page {
    padding: 90px 0;
    background: #fff;
}
.ghtc-interviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;
}
.ghtc-interview-card {
    background: #fff;
    box-shadow: 0 18px 44px rgba(7,27,67,.10);
    overflow: hidden;
    border: 1px solid rgba(7,27,67,.06);
}
.ghtc-interview-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #071b43;
}
.ghtc-interview-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.ghtc-video-missing {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
}
.ghtc-interview-body {
    padding: 24px 26px 28px;
}
.ghtc-interview-body h3 {
    margin: 0 0 8px;
    color: #071b43;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 800;
}
.ghtc-interview-body p {
    margin: 0;
    color: #314879;
    font-size: 16px;
    line-height: 1.55;
}
.ghtc-interviews-empty {
    background: #f8f8f8;
    padding: 32px;
    color: #53627a;
    text-align: center;
}
@media(max-width: 991px) {
    .ghtc-interviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media(max-width: 575px) {
    .ghtc-interviews-grid {
        grid-template-columns: 1fr;
    }
}
