/* Interview Page Styles */

.interview-page {
    background: linear-gradient(to bottom, #ffffff, #efefef);
    min-height: 100vh;
}

/* Hero Text Subheading */
.interview-page .blog-hero__text {
    max-width: 600px;
}

.interview-page .blog-hero__text-sub {
    font-family: 'A-OTF Gothic MB101 Pr6N', 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 34px;
    color: #4c4c4c;
    margin-top: 20px;
}

/* Interview List Section */
.interview-list-section {
    padding: 40px 60px 80px;
}

.interview-list-container {
    max-width: 1162px;
    margin: 0 auto;
}

/* PC Grid Layout - 3 columns */
.interview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px 25px;
}

/* Interview Card */
.interview-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.interview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.interview-card__image {
    width: 100%;
    aspect-ratio: 343 / 192;
    overflow: hidden;
    background: #fff;
    pointer-events: none;
}

.interview-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.interview-card__content {
    padding: 16px 9px;
    background: #fff;
    min-height: 133px;
    pointer-events: none;
}

.interview-card__title {
    font-family: 'Hiragino Kaku Gothic Pro', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #312d96;
    line-height: 1.6;
    margin: 0 0 6px 0;
}

.interview-card__excerpt {
    font-family: 'Hiragino Kaku Gothic Pro', sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #231e1f;
    line-height: 1.6;
    margin: 0;
}

/* SP Layout (Hidden on PC) */
.interview-list-sp {
    display: none;
}

/* ========================================
   Responsive - Tablet
======================================== */
@media screen and (max-width: 1024px) {
    .interview-list-section {
        padding: 30px 40px 60px;
    }

    .interview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* ========================================
   Responsive - Mobile (375px base)
======================================== */
@media screen and (max-width: 768px) {
    /* Interview Hero Mobile Overrides */
    .interview-page .blog-hero__title {
        margin-bottom: 20px;
        margin-left: 15px;
    }

    .interview-page .blog-hero__visual {
        height: 380px;
    }

    .interview-page .blog-hero__text {
        left: 15px;
        right: 15px;
        max-width: calc(100% - 30px);
    }

    .interview-page .blog-hero__text-main {
        font-size: 20px;
        line-height: 36px;
        letter-spacing: 2px;
    }

    .interview-page .blog-hero__text-sub {
        font-size: 14px;
        line-height: 26px;
        margin-top: 15px;
    }

    .interview-list-section {
        padding: 20px 16px 60px;
    }

    /* Hide PC Grid on Mobile */
    .interview-grid {
        display: none;
    }

    /* Show SP List on Mobile */
    .interview-list-sp {
        display: flex !important;
        flex-direction: column;
        gap: 30px;
    }

    /* SP Card Styles */
    .interview-card-sp {
        display: block !important;
        text-decoration: none;
        cursor: pointer;
    }

    .interview-card-sp__image {
        display: block;
        width: 100%;
        height: 200px;
        overflow: hidden;
        margin-bottom: 12px;
        background: #f0f0f0;
        pointer-events: none;
    }

    .interview-card-sp__img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        pointer-events: none;
    }

    .interview-card-sp__content {
        padding: 0;
        pointer-events: none;
    }

    .interview-card-sp__title {
        font-family: 'Hiragino Kaku Gothic Pro', sans-serif;
        font-weight: 600;
        font-size: 16px;
        color: #312d96;
        line-height: 1.6;
        margin: 0 0 8px 0;
    }

    .interview-card-sp__excerpt {
        font-family: 'Hiragino Kaku Gothic Pro', sans-serif;
        font-weight: 300;
        font-size: 14px;
        color: #231e1f;
        line-height: 1.8;
        margin: 0;
    }
}
