.podcast-card {
    width: 100%;
    display: flex;
    gap: 32px;
    justify-content: space-between;
}

.podcast-card > div {
    width: calc(50% - 32px);
    flex-shrink: 0;
}

@media screen and (max-width: 768px) {
    .podcast-card {
        flex-direction: column !important;
    }

    .podcast-card > div {
        width: 100%;
    }

    .podcast-card > div.podcast-image-holder {
        order: 1;
    }
    .podcast-card > div.podcast-details {
        order: 2;
    }
}

.podcast-image {
    overflow: hidden;
}

.podcast-image-holder .podcast-image {
    padding-bottom: 54.731861198738%;
    border-radius: 24px;
    position: relative;
}

.podcast-image-holder .podcast-image img {
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.pagination-container .podcast-card:nth-child(even) {
    flex-direction: row-reverse;
}

.podcast-accent-title {
    position: relative;
}

.podcast-accent-title .accent {
    position: absolute;
    top: -38px;
    left: 230px;
}

.podcast-accent-title .accent:after {
    height: 8px;
    width: 100vw;
    background: #013156;
    content: '';
    display: block;
    position: absolute;
    top: 65px;
    left: 99%;
}

.podcast-accent-title h2 {
    padding-right: 30px;
}

@media screen and (max-width: 767px) {
    .accent svg { display: none !important;}
    .podcast-accent-title .accent:after {
        height: 5px;
        left: 0 !important;
        margin-top:-5px;
    }
    .podcast-accent-title .accent {
        left: 0 !important;
    }
}
.podcast-accent-title h2 {
    position: relative;
    z-index: 2;
    display: inline-block;
}
