h2 a {
    color: #333;
}
h2 a:hover {
    color: #0a8be1;
}

.contest-info {
    display: none;
    flex-direction: column;
    gap: .5rem;
}

.contest-info ul {
    padding-left: 1.2rem;
}

.contest-info span {
    font-weight: bold;
}

.contest-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
}

.contest-item {
    width: 22%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}


.contest-item-cover {
    position: relative;

    color: #454545;
    font-size: 2.2rem;
    font-weight: bold;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;

    height: 10rem;
}

.contest-item-cover .label {
    font-size: .875rem;
    padding: 0rem 1rem;
    position: absolute;
    top: 0px;
    right: 0px;
    
    color: #fff;
    border-radius: 0 5px 0 0;
}



.contest-item-cover .label.coming {
    background-color: rgb(205, 2, 2, 1);
}

.contest-item-cover .label.doing {
    background-color: rgba(0, 164, 46, 1);
}

.contest-item-cover .label.competing {
    background-color: rgba(0, 164, 46, 1);
}

.contest-item-cover .label.completed {
    background-color: rgba(0, 164, 46, 1);
}

.contest-item-cover .label.completed-timeover {
    background-color: rgba(0, 164, 46, 1);
}

.contest-item-cover .label.done {
    background-color: rgba(0,0,0,0.5);
}

.contest-item-info {
    display: flex;
    flex-direction: column;
    gap: .3rem;
}

.contest-item-info .title {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}

.contest-item-info p.score {
    font-size: .875rem;
    color: #666;
}




