/********************************************************
    YEAR-END LISTS
********************************************************/
.lists-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 20px;
}

.list-title {
    font-family: var(--title-font);
    font-size: 3rem;
    text-align: center;
}

.year-block {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.split-banner {
    position: relative;
    display: inline-block;
}

.split-banner a {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
    color: white;
    font-weight: bold;
    pointer-events: auto;
}

.split-banner img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

/* Left half */
.left-link {
    left: 0;
}

/* Right half */
.right-link {
    right: 0;
}

.hover-text {
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 10px 14px;
    color: var(--powder-blue);
    font-family: var(--title-font);
    font-size: 3vw;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.9);
    border-radius: 6px;
}

/* LEFT HOVER */
.left-link:hover {
    background: linear-gradient(
        to right,
        rgba(250, 232, 180,0.45) 0%,
        rgba(250, 232, 180,0.28) 45%,
        rgba(250, 232, 180,0.12) 70%,
        rgba(250, 232, 180,0.00) 100%
    );
}

.left-link:hover .hover-text {
    opacity: 1;
}

/* RIGHT HOVER */
.right-link:hover {
    background: linear-gradient(
        to left,
        rgba(250, 232, 180,0.45) 0%,
        rgba(250, 232, 180,0.28) 45%,
        rgba(250, 232, 180,0.12) 70%,
        rgba(250, 232, 180,0.00) 100%
    );
}

.right-link:hover .hover-text {
    opacity: 1;
}



/*
.banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(250,232,180,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--powder-blue);
    font-family: var(--title-font);
    font-size: 36px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.9);
    opacity: 0;
    transition: opacity 0.3s;
}

.banner:hover .overlay {
    opacity: 1;
}

*/

.links {
    width: 100%;
    height: 100%;
    justify-content: center;
    display: flex;
    gap: 20px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.list-link {
    width: 35%;
    height: 50px;
    text-decoration: none;
    text-align: center;
    align-content: center;
    color: var(--dark-slate);
    font-weight: bold;
    font-size: larger;
    font-family: var(--title-font);
    padding: 10px 20px;
    border: 2px solid var(--powder-blue);
    border-radius: 8px;
    transition: background 0.3s, color 0.3s;
}

.list-link:hover {
    background: var(--powder-blue);
    color: var(--vanilla);
}
