.content {
    width: var(--width);
    margin: 0 auto;
}

main h3 {
    margin-bottom: 18px;
    font-size: 23px;
}

main h4 {
    font-size: 23px;
}

.list {
    margin-bottom: 5%;
    padding: 2% 4%;
}

.one {
    transform: translateY(-40%);
    background-color: #fafaf9;
    border: 1px solid rgb(230, 230, 230);
    border-radius: 10px;
    margin-bottom: 0;
}

.big-box {
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
}

.items {
    display: flex;
    column-gap: 15px;
    position: relative;
}

.items .img-box {
    width: 18%;
    border-radius: 8px;
    overflow: hidden;
    transition: transform .5s;
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid #f0f0f0;
}


.items .img-box::before {
    padding-top: 100%;
}

.items .text-box {
    padding-left: calc(18% + 15px);
    max-width: calc((100% - 18%) - 15px);
    display: flex;
    flex-direction: column;
    color: #000;
    row-gap: 3px;
}

.items .text-box h5 {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 16px;
    font-weight: normal;
    transition: color .5s;
}

.items .text-box .information {
    display: flex;
    color: #56524e;
    display: flex;
    column-gap: 2px;
    align-items: center;
}

.items .text-box .information .dot {
    transform: scale(2);
    margin: 0 3px;
}

.items .iconfont {
    width: 12px;
    font-size: 12px;
    color: rgb(27, 127, 62);
}

.items .text-box .developers {
    color: #78726d;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.items:hover .img-box {
    transform: scale(1.05);
}

.items:hover h5 {
    color: #6366f1;
}

@media screen and (min-width:770px) {
    .items {
        width: calc((100% - 45px)/4);
        margin-right: 15px;
    }

    .items:nth-of-type(4n) {
        margin-right: 0;
    }
}

@media screen and (max-width:769px) {
    .items {
        width: 100%;
    }

    .items .text-box .developers {
        font-size: 13px;
    }

    .items .text-box .information {
        font-size: 13px;
    }

    .one {
        transform: translateY(0);
    }
}