.season_list_links {
    width: 100%;
    padding: 20px 5%;
}
.season_list_links_title {
    width: 100%;
    text-align: center;
    padding-bottom: 20px;
    font-weight: 600;
    color: #ffffff;
    font-size: 18px;
}
.season_list_links_list {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: start;
    align-items: start;
}
.season_link_wrap {
    flex: 1;
    flex-grow: 1;
    padding: 5px 5px;
    max-width: 20%;
    min-width: 20%;
}
.season_link {
    cursor: pointer;
    white-space: nowrap;
    padding: 5px 10px;
    text-decoration: none;
    display: flex;
    flex-flow: column nowrap;
    justify-content: start;
    align-items: start;
    transition: 0.3s ease;
}
.season_link_cover {
    flex: 1;
    flex-grow: 1;
    overflow: hidden;
    min-width: 100%;
    max-width: 100%;
    aspect-ratio: 0.75;
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    border-radius: 9px;
    background-color: #fff;
}
.season_link_src {
    max-width: 100%;
    position: absolute;
    transition: 0.3s ease;
    transform: scale(1.0);
}
.season_link:hover .season_link_src {
    transition: 0.3s ease;
    transform: scale(1.05);
}
.season_link_content {
    padding: 10px;
}
.season_link_title {
    font-weight: 600;
}
.season_link:hover .season_link_title {
    color: var(--green);
}