.episodes-container {
    display: grid;
    justify-content: center;
    justify-items: center;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 8rem 2rem;
    width: 100%;
    margin: 5rem 0 0 0;
}

.episode-img-container {
    position: relative;
    cursor: pointer;
    color: white;
    width: 100%;
    height: 100%;
}

.episode-img-container img {
    position: relative;
    width: 100%;
    height: 100%;
    filter: brightness(50%);
    object-fit: cover;
    object-position: top;
    border-radius: var(--rounded-md);
}

.episode-img-container h3 {
    position: absolute;
    font-weight: bold;
    left: 10%;
    top: 20%;
    text-align: left;
}

.episode-img-container h4 {
    position: absolute;
    font-weight: 100;
    left: 10%;
    top: 70%;
    font-size: 14px;
}

.episode-detail {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.episode-detail a {
    text-decoration: none;
    color: white;
    font-weight: 200;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.episode-detail a img {
    width: 2rem;
    height: auto;
}
