.podcasts-name-container {
    max-width: 1000px;
    margin: auto;
    padding: 20px 30px;
    background-color: #959c24;
}

.podcasts-name {
    margin: 0;
    font-weight: 100;
    font-size: 2.5rem;
    color: white;
    line-height: 2.8rem;
}

.podcasts-introduction {
    background-color: var(--bg-grey);
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.podcasts-subtitle {
    font-weight: 500;
    color: #2d3a49;
    position: relative;
    font-size: 1rem;
    top: -20px;
    margin: 0;
    left: 0;
    text-transform: uppercase;
}

.podcasts-subtitle i {
    margin-right: 10px;
}

.podcasts-description {
    margin: 0 40px;
    font-size: 0.6rem;
    color: #404040;
    position: relative;
    max-width: 900px;
    padding: 50px 0;
}

.podcasts-sort-container {
    position: absolute;
    bottom: -18px;
    right: 0;
    width: 100%;
}

.podcasts-sort-container > label {
    margin-right: 10px;
}

.podcasts-sort-container > select {
    padding: 10px 15px;
    font-weight: 500;
    min-width: 200px;
    width: 82%;
}

.list-podcasts-container {
    display: flex;
    flex-direction: column;
    max-width: 1000px;
    margin: 0 auto 50px auto;
}

.list-podcasts.active {
    display: block;
}

.list-podcasts:not(.active) {
    display: none;
}

.podcast-card-container {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
    padding: 30px;
}

.podcast-card-container:last-child .podcast-separator {
    display: none;
}

.podcast-card {
    display: flex;
    margin-bottom: 60px;
}

.podcast-image-container {
    display: none;
}

.podcast-image {
    display: none;
}

.podcast-info-container {
    display: flex;
    flex-direction: row-reverse;
    gap: 20px;
}

.podcast-content > h3 {
    margin: 0 0 20px 0;
    overflow-wrap: anywhere;
    color: #303a42;
    font-size: 1rem;
    line-height: 1.2rem;
    font-weight: 400;
    text-transform: uppercase;
}

.podcast-content > div {
    font-size: 0.6rem;
    line-height: 0.8rem;
    overflow-wrap: anywhere;
    color: #404040;
}

.podcast-content p {
    margin: 0;
}

.podcast-info {
    display: flex;
    flex-direction: column;
    padding: 0;
    font-size: 0.6rem;
    font-weight: 500;
}

.podcast-image-mobile {
    max-width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.podcast-chroniqueur {
    display: flex;
}

.podcast-info > div:not(:last-child) {
    margin-bottom: 5px;
}

.podcast-info i {
    margin-right: 10px;
    font-size: 0.8rem;
}

.podcast-link-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.podcast-link {
    display: flex;
    flex-direction: column;
    margin-left: 0;
    margin-top: 10px;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 500;
    gap: 10px;
}

.deezer-btn {
    border: 1px solid black;
    color: black;
}

.deezer-btn:hover {
    background-color: black;
    color: white;
}

.spotify-btn {
    border: 1px solid #1DB954;
    color: #1DB954;
}

.spotify-btn:hover {
    background-color: #1DB954;
    color: white;
}

.apple-music-btn {
    border: 1px solid #B150E2;
    color: #B150E2;
}

.apple-music-btn:hover {
    background-color: #B150E2;
    color: white;
}

.amazon-music-btn {
    display: inline-flex;
    align-items: center;
    border: 1px solid #3a0ec0;
    color: #3a0ec0;
}

.amazon-music-btn > img {
    width: 20px;
    height: auto;
    margin-right: 10px;
}

.amazon-music-btn:hover {
    background-color: #3a0ec0;
    color: white;
}

.podcast-link-btn {
    padding: 5px 15px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.6rem;
}

.podcast-green-icon {
    color: #959c24;
}

.podcast-separator {
    background-color: #e5e5e5;
    height: 15px;
    width: 100%;
    margin: 20px 0;
}

@media (min-width: 1050px) {
    .podcasts-name-container {
        max-width: 1000px;
        margin: auto;
        padding: 40px 0;
        background-color: white;
    }

    .podcasts-name {
        margin: 0;
        font-weight: 100;
        font-size: 3rem;
        color: #959c24;
        line-height: 2.8rem;
    }

    .podcasts-introduction {
        background-color: var(--bg-grey);
        display: flex;
        justify-content: center;
        margin-bottom: 50px;
    }

    .podcasts-subtitle {
        font-weight: 800;
        color: #2d3a49;
        position: absolute;
        font-size: 2rem;
        top: -20px;
        margin: 0;
        left: 0;
        text-transform: revert;
    }

    .podcasts-subtitle i {
        margin-right: 10px;
    }

    .podcasts-description {
        margin: 0 40px;
        font-size: 0.8rem;
        color: #404040;
        position: relative;
        max-width: 900px;
        padding: 50px 0;
    }

    .podcasts-sort-container {
        position: absolute;
        bottom: -18px;
        right: 0;
        width: revert;
    }

    .podcasts-sort-container > label {
        margin-right: 10px;
    }

    .podcasts-sort-container > select {
        padding: 10px 15px;
        font-weight: 500;
        min-width: 200px;
        width: revert;
    }

    .list-podcasts-container {
        display: flex;
        flex-direction: column;
        max-width: 1000px;
        margin: 0 auto 50px auto;
    }

    .list-podcasts.active {
        display: block;
    }

    .list-podcasts:not(.active) {
        display: none;
    }

    .podcast-card-container {
        display: flex;
        flex-direction: column;
        margin-bottom: 30px;
    }

    .podcast-card-container:last-child .podcast-separator {
        display: none;
    }

    .podcast-card {
        display: flex;
        margin-bottom: 60px;
    }

    .podcast-image-container {
        display: flex;
        flex-direction: column;
    }

    .podcast-image-container > div {
        display: flex;
        justify-content: flex-start;
        position: relative;
    }

    .podcast-thumbnail {
        max-width: 200px;
        height: auto;
    }

    .podcast-image {
        display: block;
        position: absolute;
        max-width: 150px;
        height: auto;
        bottom: -15px;
        left: -175px;
        box-shadow: 0 0 10px 1px rgba(0,0,0,0.25);
    }

    .podcast-info-container {
        display: flex;
        flex-direction: column;
        padding-left: 20px;
    }

    .podcast-content > h3 {
        margin: 0 0 20px 0;
        overflow-wrap: anywhere;
        color: #303a42;
        font-size: 1.2rem;
        line-height: 1.4rem;
        font-weight: 400;
        text-transform: uppercase;
    }

    .podcast-content > div {
        font-size: 0.8rem;
        line-height: 1rem;
        overflow-wrap: anywhere;
        color: #404040;
    }

    .podcast-content p {
        margin: 0;
    }

    .podcast-info {
        display: flex;
        flex-direction: column;
        padding: 30px 0 0 30px;
        font-size: 0.8rem;
        font-weight: 500;
    }

    .podcast-image-mobile {
        display: none;
    }

    .podcast-info > div:not(:last-child) {
        margin-bottom: 5px;
    }

    .podcast-info i {
        margin-right: 10px;
        font-size: 1rem;
    }

    .podcast-link-container {
        display: flex;
        flex-direction: row;
        align-items: center;
        position: relative;
    }

    .podcast-link {
        display: flex;
        flex-direction: row;
        margin-left: 10px;
        margin-top: 0;
        text-transform: uppercase;
        font-size: 0.8rem;
        font-weight: 500;
    }

    .podcast-link-btn {
        padding: 7px 20px;
        font-size: 0.8rem;
    }
}

@media (min-width: 1536px) {
    .podcast-thumbnail {
        max-width: 250px;
    }

    .podcast-image {
        bottom: -10px;
    }

    .podcast-content > h3 {
        font-size: 1.8rem;
        line-height: 2rem;
    }

    .podcast-content > div {
        font-size: 0.9rem;
        line-height: 1.1rem;
    }

    .podcast-info {
        font-size: 0.9rem;
    }

    .podcast-info i {
        font-size: 1.1rem;
    }
}