/** interview main container */
.interview_list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 16px;
    justify-content: flex-start;
    margin-bottom: 32px;
}
.interview_list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 16px;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 100%;
}
.interview_list li {
    width: 335px;
    background: #fff;
    box-sizing: border-box;
    margin: 0;
    display: flex;
    flex-direction: column;
}
.interview_list li a {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-decoration: none;
    height: 100%;
    color: inherit;
    transition: transform 0.3s ease;
}
.interview_list li a:hover {
    transform: translateY(-3px);
}
.interview_list li img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    margin-bottom: 6px;
}
.interview_list li p {
    font-size: 0.96em;
    line-height: 1.2 !important;
    margin-bottom: 6px;
}
.interview_list li h3 {
    font-size: 1em;
    font-weight: 400 !important;
}
@media (max-width: 820px) {
    .interview_list,
    .interview_list ul {
        flex-direction: column;
        gap: 20px 0;
        align-items: center;
    }
    .interview_list li {
        width: 100%;
        max-width: 400px;
    }
}

.interview_read {
    font-size: 1.05em;
    margin-bottom: 32px;
    line-height: 1.8;
    color: #333;
}
.interview {
    margin-bottom: 40px;
}
.interview_img {
    text-align: center;
    margin: 24px 0 24px 0;
}
.interview_img img {
    border-radius: 12px;
    max-width: 100%;
}
.interview section {
    margin-bottom: 48px;
}
.interview h3 {
    padding: 0 20px;
    border-left: 6px solid #5B7EC9;
    font-size: 1.12em;
    font-weight: 600;
    margin-bottom: 12px;
    gap: 12px;
}
.interview h3 img {
    height: 32px;
    margin-right: 8px;
    display: block;
    margin-bottom: 6px;
}
.interview p {
    margin: 0 0 0 0;
    color: #222;
    line-height: 1.8;
    font-size: 1em;
}
.flexfs {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin: 16px 0 0 0;
}