/* 導入事例のグリッドレイアウト修正 */
.interview-list {
    display: grid \!important;
    grid-template-columns: repeat(3, 1fr) \!important;
    gap: 24px \!important;
    overflow-x: visible \!important;
    overflow-y: visible \!important;
    justify-content: center \!important;
}

@media screen and (max-width: 1200px) {
    .interview-list {
        gap: 16px \!important;
    }
}

@media screen and (max-width: 420px) {
    .interview-list {
        grid-template-columns: 1fr \!important;
        gap: 16px \!important;
    }
}
