.steck-podcast-player {
    max-width: 900px;
}

.featured {
    display: flex;
    gap: 30px;
    padding: 30px;
    border-radius: 20px;
    background: #f5f5f5;
    align-items: center;
}

.featured h2 {
    font-size: 20px;
    margin: 5px 0;
}

.label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.episode-image img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
}

.episode-content {
    flex: 1;
}

audio {
    width: 100%;
}

.episode-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 0 40px;
    margin-top: 20px;
    border-bottom: 1px solid #ddd;
}

.episode-row h4 {
    margin: 0 0 5px;
}

.episode-content p {
    margin-bottom: 10px;
}

.custom-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.custom-controls button {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: #1a5f8a;
    color: #fff;
    cursor: pointer;
}

.progress-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.progress-wrap span {
    font-size: 12px;
}

#progress {
    width: 100%;
}

#speed {
    width: 45px;
    border-radius: 6px;
}

/* Load more */
.steck-load-more-wrap {
    text-align: left;
    margin-top: 30px;
}

.steck-load-more {
    border-width: 0;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 800;
    padding: 15px 30px;
    text-align: center;
    text-decoration: none;
    white-space: normal;
    width: auto;
    background: #006585;
}

.steck-load-more:disabled {
    opacity: 0.6;
    cursor: default;
}

@media only screen and (max-width: 1023px) {
    .episode-image img {
        width: 150px;
        height: 150px;
    }

    .featured h2 {
        font-size: 22px;
        margin: 0;
    }
}

@media (max-width: 700px) {
    .featured {
        flex-direction: column;
    }

    .episode-image img {
        width: 100%;
        height: auto;
    }
}
