.projects-list h3 {
    margin-top: 30px;
    font-weight: 400;
    line-height: 1;
}

.projects-list-items {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.projects-list__item {
    position: relative;
    flex: 0 0 calc(33.333% - 11px);
    max-width: calc(33.333% - 11px);
    cursor: pointer;
}


.projects-list__item p {
    margin-bottom: 0;
    font-weight: 700;
    line-height: 1;
    color: hsla(0, 0%, 100%, 1);
}

.project-list__img {
    width: 100%;
    filter: brightness(0.5);
    transition: filter 400ms;
}

.project-list__img:hover {
    filter: brightness(0.6);
}

.project-list__img-two-cards {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 13px;
    pointer-events: none;
}

.project-list__text-number {
    position: absolute;
    top: 18px;
    right: 32px;
    font-size: 13px;
    pointer-events: none;
}

.project-list__text-title {
    position: absolute;
    left: 18px;
    bottom: 44px;
    font-size: 13px;
    pointer-events: none;
}

.project-list__text-date {
    position: absolute;
    left: 18px;
    bottom: 22px;
    font-size: 10px;
    pointer-events: none;
}

@media (max-width: 1000px) {
    .projects-list__item {
        flex: 0 0 calc(50% - 8px); /* 2 колонки */
        max-width: calc(50% - 8px);
    }
}

@media (max-width: 576px) {
    .projects-list__item {
        flex: 0 0 100%; /* 1 колонка */
        max-width: 100%;
    }
}
