.interview_wrapper {
    padding-top: 10vh;
}
.interview_head {
    width: 100%;
    height: 175px;
    background-image: url("../img/IMG_9600-1.jpg");
    background-color:rgba(255,255,255,0.6);
    background-blend-mode:lighten;
    background-repeat: no-repeat;
    background-size: cover;
}
.interview_title {
    text-align: center;
    width: fit-content;
    color: #2B3366;
    padding-left: 200px;
    padding-top: 80px;
}
.interview_title h2 {
    font-size: 35px;
}
.interview_title p {
    font-weight: bold;
}
.interview_list {
    padding: 50px 50px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}
.interview_list img {
    width: 100%;
    aspect-ratio: 2 / 1;
    object-fit: cover;
    border-radius: 5px;
    object-position: top;
    box-shadow: 0px 3px 6px #00000029;
}
.interview_list h3 {
    font-size: 24px;
}
.employee_interview {
    width: 65%;
}
.employee_wrapper {
    display: grid;
    grid-template-columns: repeat(2, 45%);
    border-right: 1px solid #707070;
    gap: 40px;
}
.employee {
    width: 100%;
}
.department {
    font-size: 18px;
    font-weight: bold;
}
.employee_name {
    text-align: right;
}
.interview_moreLink  {
    text-align: right;
    font-size: 10px;
}
.interview_lineArrow {
    width: 70px;
    height: 10px;
    margin: -10px -10px 0px auto;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    transform: skew(45deg);
}
.ceo_interview {
    position: sticky;
    top: 80px;
    width: 35%;
    height: fit-content;
    right: 5%;
    padding-left: 40px;
}
.ceo_department {
    text-align: right;
    font-size: 18px;
}
.ceo_name {
    text-align: right;
    font-size: 20px;
    font-weight: bold;
}

@media screen and (max-width: 1024px) {
    .interview_list {
        padding: 20px 20px;
        width: 100%;
    }
    .ceo_interview {
        position: fixed;
        top: 310px;
        padding-left: 40px;
    }
}
@media screen and (max-width: 740px) {
    .ceo_interview {
        position: fixed;
        top: 230px;
        padding-left: 40px;
    }
    .interview_title {
        padding-left: 20px;
    }
    .interview_list {
        padding: 20px 20px;
        width: 100%;
    }
    .employee_wrapper {
        display: grid;
        grid-template-columns: repeat(2, 42%);
        gap: 25px;
    }
    .department {
        font-size: 14px;
    }
    .employee_name {
        font-size: 12px;
    }
    .comment {
        font-size: 12px;
    }
    .ceo_department {
        font-size: 14px;
    }
    .ceo_name {
        font-size: 14px;
    }
}
@media screen and (max-width: 540px) {
    .interview_list {
        padding: 30px 20px;
        display: flex;
        flex-flow: column;
        align-items: center;
    }
    .ceo_interview {
        position: relative;
        width: 100%;
        margin: 0 auto;
        top: 0;
        left: 5px;
        padding-left: 0;
    }
    .employee_wrapper {
        display: block;
        border-right: none;
    }
    .employee {
        margin-top: 20px;
    }
    .employee_interview {
        width: fit-content;
    }
}