.projects-section {
    background-color: var(--background-card);
    padding-top: 36px;
    padding-bottom: 45px;
    margin-bottom: 64px;
}

.projects-section .section-title {
    font-family: var(--base-font);
    font-size: 40px;
    color: #6B2B06;
    text-align: center;
}

.projects-section .card-list .card {
    border-radius: 16px;
    overflow: hidden;
    background-color: #fff;
    max-width: 421px;
    box-shadow: 0px 4px 11.2px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.projects-section .card-list .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.projects-section .card-list .card .article-info {
    padding: 20px;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    justify-content: space-between;
}

.projects-section .card-list .card .article-info .article-title, .projects-section .card-list .card .article-info .article-text {
    font-family: var(--base-font);
    color: var(--color-primary);
}


.projects-section .card-list .card .article-img {
    width: 100%;
    height: 254px;
    overflow: hidden;
    background-color: var(--color-primary);
}

.projects-section .card-list .card:hover .article-img img {
    transform: scale(1.05);
}

.projects-section .card-list .card .article-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.projects-section .see-all {
    display: flex;
    margin-top: 30px;
    width: fit-content;
    margin-left: auto;
}

.projects-section .see-all a {
    background-color: #fff;
    color: var(--color-primary);
    padding: 10px;
    border-radius: 10px;
    border: 1px solid var(--color-primary);
    transition: all 400ms ease;
    font-family: var(--base-font);
}

.projects-section .see-all a:hover {
    background-color: var(--color-primary);
    color: #fff;
}

.projects-section .card-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 20px;
}

.projects-section .card-list.projects-section-mobile-slider {
    position: relative;
}

.projects-section .card-list.projects-section-mobile-slider .card {
    max-width: unset;
}

.projects-section .card-list.projects-section-mobile-slider .swiper-pagination {
    position: absolute;
    bottom: -30px;
}

.projects-section .read-more {
    display: block;
    padding: 10px;
    border-radius: 10px;
    background-color: var(--color-primary);
    color: #fff;
    transition: all 400ms ease;
    width: fit-content;
    border: 1px solid var(--color-primary);
    font-family: var(--base-font);
}

.projects-section .read-more:hover {
    background-color: #fff;
    color: var(--color-primary);
}

@media(max-width: 1024px) {
    .projects-section .section-title {
        font-size: 24px;
    }
}