/* Interview Archive List */
.interview-list {
    display: flex;
    flex-direction: column;
    gap: 120px;
    margin: 80px 0;
}

.interview-item {
    width: 80%;
}

.interview-item:nth-of-type(even) {
    margin-left: auto;
}

.interview-item__image {
    width: 100%;
}

.interview-item__image img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 85 / 35;
    object-fit: cover;
}

.interview-item__content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
}

.interview-item__title {
    font-size: 18px;
    margin-bottom: 0;
    line-height: 2;
}

.interview-item__btn {
    flex-shrink: 0;
}

@media (max-width: 991.98px) {
    .interview-item__image img {
        aspect-ratio: 1;
    }

    .interview-list {
        gap: 60px;
        margin: 60px 0;
    }

    .interview-item {
        gap: 15px;
        width: 100%;
    }

    .interview-item__content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .interview-item__title {
        font-size: 16px;
    }

    .interview-item__btn {
        width: 100%;
        text-align: left;
    }
}

.interview-item__link {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s;
}

.interview-item:nth-of-type(even) .interview-item__link {
    flex-direction: column;
}

@media (max-width: 991.98px) {
    .interview-item__link {
        gap: 15px;
    }
}

/* Hover effects for v-more inside the link */
.interview-item__link:hover .v-more {
    background-color: var(--vk-color-text-body);
    color: #fff;
    opacity: 1;
}

.interview-item__link:hover .v-more::after {
    background-color: #fff;
    background-image: url("../../img/more-w.svg");
    transform: translateY(-50%) translateX(3px);
}

@media (min-width: 992px) {
    .interview-item__link:hover .v-more::after {
        animation: v-more-icon-shoot 3s ease-out infinite;
    }
}