.unfound-episode-latest {
    display: flex;
    background-color: #fff;
}

.unfound-episode-latest > div {
    width: 50%;
}

.unfound-episode-latest .column-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.unfound-episode-latest .column-content .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    height: 100%;
    padding: 50px;
}

.unfound-episode-latest .column-content .button-actions {
    display: flex;
}

.unfound-episode-latest .column-content .button-actions button svg {
    height: 20px;
}

.unfound-episode-latest .column-content .button-actions button span {
    display: block;
}

.unfound-episode-latest .column-content .button-actions .action-left {
    width: 60%;
}

.unfound-episode-latest .column-content .button-actions .action-left button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.unfound-episode-latest .column-content .button-actions .action-right {
    display: flex;
    justify-content: space-around;
    width: 40%;
    background-color: #d2d2d2;
}

.unfound-episode-latest .column-content .button-actions .action-right button {
    padding: 20px;
}

.unfound-episode-latest .column-image img {
    height: 100%;
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

@media (max-width: 991px) {
    .unfound-episode-latest {
        flex-direction: column-reverse;
    }

    .unfound-episode-latest > div {
        width: 100%;
    }

    .unfound-episode-latest .column-content .content {
        padding: 50px 30px;
    }

    .unfound-episode-latest .column-image img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }
}

@media (max-width: 640px) {
    .unfound-episode-latest .column-content .button-actions {
        flex-wrap: wrap;
    }

    .unfound-episode-latest .column-content .button-actions > div {
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    .unfound-episode-latest .column-content .content {
        padding: 30px;
    }
}