.artist_interview {
    position: relative;
}
.artist_interview .inner {
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.artist_interview .inner .interview_main_title {
    font-size: var(--size-medium);
    color: var(--black);
    font-weight: 400;
    /* margin: var(--spacing) 0 var(--spacing-text) 0; */
    margin-bottom: var(--spacing-text);
    opacity: 0;
    display: none;
}
.artist_interview .inner:first-of-type .interview_main_title {
    opacity: 1;
    display: block;
}
.line_between {
    content: "";
    background: var(--green-text);
    width: 1px;
    height: 100vh;
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.artist_interview .inner .fp-overflow {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 60px;
}
.artist_interview .right p, .artist_interview .right a {
    color: var(--black);
    font-size: var(--size-medium);
    /* margin-bottom: 15px; */
}
.artist_interview .right p:has(+ h2),
.artist_interview .right p:has(+ h3),
.artist_interview .right p:has(+ h4),
.artist_interview .right p:has(+ h5),
.artist_interview .right p:has(+ h6) {
    margin-bottom: var(--spacing);
}
.artist_interview .right h2,
.artist_interview .right h3,
.artist_interview .right h4,
.artist_interview .right h5,
.artist_interview .right h6,
.artist_interview .right strong {
    color: var(--green-text);
    font-size: var(--size-menu);
    margin-bottom: 15px;
    font-weight: 400;
}
.artist_interview .left {
    width: 100%;
    flex: 1;
    height: 60vh;
}

/* .artist_interview .inner .right:not(:first-of-type) h2,
.artist_interview .inner .right:not(:first-of-type) h3,
.artist_interview .inner .right:not(:first-of-type) h4,
.artist_interview .inner .right:not(:first-of-type) h5,
.artist_interview .inner .right:not(:first-of-type) h6 {
    margin-top: var(--spacing-text);
} */

.artist_interview .inner:first-of-type .left .text h1,
.artist_interview .inner:first-of-type .left .text h2,
.artist_interview .inner:first-of-type .left .text h3,
.artist_interview .inner:first-of-type .left .text h4,
.artist_interview .inner:first-of-type .left .text h5,
.artist_interview .inner:first-of-type .left .text h6,
.artist_interview .inner:first-of-type .left .text strong {
    color: var(--black);
    font-size: var(--size-sub);
    margin-bottom: var(--spacing-text);
    font-weight: var(--font-bold);
}
.artist_interview .inner:first-of-type .left .text p {
    color: var(--black);
    font-size: var(--size-sub);
    font-weight: 400;
}

.artist_interview .left .text h1,
.artist_interview .left .text h2,
.artist_interview .left .text h3,
.artist_interview .left .text h4,
.artist_interview .left .text h5,
.artist_interview .left .text h6,
.artist_interview .left .text strong {
    color: var(--green-text);
    font-size: var(--size-menu);
    margin-bottom: var(--spacing-text);
    font-weight: 400;
}
.artist_interview .left .text p {
    color: var(--black);
    font-size: var(--size-medium);
    margin-bottom: 15px;
}
.artist_interview .left .caption {
    position: absolute;
    bottom: var(--spacing);
    max-width: 30vw;
}
.artist_interview .left .caption p {
    color: var(--green-text);
    font-size: var(--size-caption);
}
.artist_interview .right {
    width: 100%;
    flex: 1;
    margin: 0 auto;
}
.artist_interview .left img {
    width: 100%;
    height: 100%;
    max-width: 50vw;
}

.artist_interview .left a span {
    color: var(--green-light);
    font-size: var(--size-title);
    font-weight: var(--font-bold);
    position: absolute;
    top: 50%;
    left: 25%;
    z-index: 1;
    transform: translate(-50%, -25%);
    /* animation: pulse 1s infinite; */
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}


.artist_interview .fp-overflow {
    overflow: visible;
}
.artist_interview .left img {
    position: absolute;
    top: 100px;
    left: calc((100vw - min(100vw, 1775px)) / -2);
    width: 50vw;
    height: 75%;
    object-fit: cover;
}

/* @media (min-width: 993px) and (max-width: 1550px) {
.artist_interview .left, .artist_interview .right {
    padding-top: var(--spacing);
}
} */

@media (max-width: 1250px) {
.artist_interview .left img {
    top: 0px;
}
}
@media (max-width: 992px) {
.artist_interview .inner .fp-overflow {
    flex-direction: column;
    gap: var(--spacing-text);
}
.line_between {
    position: relative;
    left: 0;
    /* width: 100vh; */
    height: 1px;
}
.line_between span {
    content: "";
    width: 100vw;
    height: 1px;
    background: var(--green-text);
    display: block;
}
.artist_interview .inner .interview_main_title {
    margin: 0;
    padding-top: var(--spacing);
}
.artist_interview .inner:first-of-type .interview_main_title {
    padding-top: var(--spacing-large);
}
.artist_interview .left {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-text);
}
.artist_interview .left img {
    position: relative;
    max-width: 100%;
    margin: auto;
    width: 100%;
    height: 100%;
}
.artist_interview .left .caption {
    position: relative;
    max-width: 100%;
    bottom: 0;
}
.artist_interview .inner {
    /* padding-top: var(--spacing-large); */
    padding-bottom: var(--spacing);
    overflow: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.artist_interview .inner .fp-overflow {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.artist_interview .left a {
    margin-bottom: 50px;
    position: relative;
}
.artist_interview .left a span {
    top: 50%;
    left: 50%;
    transform: translate(-25%, -50%);
    width: 100%;
}
}


@media (min-width: 993px) {
.postid-552 .artist_interview .inner:first-of-type .left,
.postid-552 .artist_interview .inner:first-of-type .left {
    height: auto;
}

.postid-552 .artist_interview .inner:first-of-type .left,
.postid-552 .artist_interview .inner:first-of-type .right {
    padding-top: var(--spacing-large);
} 
}