.contest_section {
    background-color: var(--background-color);
    backdrop-filter: none;
}

.contest_container {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    overflow: wrap;
    margin: 0;
}


.contest_item {
    display: block;
    max-width: 450px;

    height: auto;
    width: auto;
    background-size: 110% 110%;
    background-position: center;
    background-color: var(--background-alt-color);
    text-decoration-line: none;

    a {
        display: block;
        padding: 0;
        margin: 0;
        height: 0;
        text-decoration: none;
        text-decoration-line: none;

        color: var(--text-color);

        &:hover {
            text-decoration-line: none;
            color: var(--primary-color);
            transition: 0.15s;
        }
    }

    p {
        text-wrap: nowrap;
    }

    &:hover {
        transform: scale(1.01);
        text-decoration-line: none;
    }
}

.contest_item_info {
    box-sizing: border-box;
    padding: 8px;
    backdrop-filter: blur(var(--glass-blur));
    background-color: rgba(0, 0, 0, 0.2);
    height: auto;
    width: 100%;
}

.contest_item_img {
    display: block;
    height: auto;
    background-color: #000000;
}

.contest_item .contest_item_info .contest_item_description {
    display: none;
    height: 0;
}

.contest_item_title {
    font-size: 1.25rem;
    margin: 0;
}