.section-project.s-padding {
    background-image: url(../../img/project.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.project-wrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: clamp(16px, 2vw, 24px);
}
.project-hr-item {
    display: flex;
    gap: clamp(16px, 2vw, 24px);
    background: white;
    border: 1px solid #D7D7D7;
    border-radius: 1rem;
    padding: clamp(16px, 2vw, 24px);
}
.project-image {
    min-height: clamp(120px, 10vw, 150px);
    min-width: clamp(120px, 10vw, 150px);
}
.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.body-project {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}
.project-title a {
    min-height: 32px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    font-size: clamp(16px, 2vw, 20px);
    color: #1A1A1A;
}
.body-project p {
    font-size: clamp(14px, 2vw, 16px);
    color: #424242;
}
@media only screen and (min-width: 992px) {
    .project-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}