.year-results {
        position: relative;
        width: 100%;
        height: 175px;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        gap: 90px;

        border-radius: 10px;
        background-color: #1A1A1A;
    }

    .year-results:before {
        content: "";
        position: absolute;
        left: 329px;
        top: 0;

        width: 541px;
        height: 158px;
        background: linear-gradient(137.69deg, rgba(217, 217, 217, 0) 25.2%, rgba(255, 255, 255, 0.3) 50.97%, rgba(89, 146, 253, 0.04) 74.2%);
        filter: blur(100px)
    }

    .year-results img {
        height: 138px;
    }

    .year-results-content {
        position: relative;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 20px;
    }
    	.year-results-content a {
        	width: fit-content;
        }
        .year-results-content h5 {
            margin: 0;

            font-weight: 400;
            font-size: 16px;
            line-height: 100%;
            letter-spacing: 0%;
            color: #BBFBFB;
        }

    @media screen and (max-width: 768px) {
        .year-results {
            padding: 20px 0;
            height: 260px;
            flex-direction: column;
            gap: 0;
            align-items: center;
        }
            .year-results img {
                margin-bottom: -14px;
            }

        .year-results-content {
            flex-direction: column-reverse;
            align-items: center;
            justify-content: flex-end;
            gap: 12px;
        }
            .year-results-content h5 {
                max-width: 282px;
                text-align: center;
                font-size: 14px;
            }
    }