/* =========================================================
   PROJECTS HOME
========================================================= */

.projects-home {

    padding: 60px 80px;

    background: linear-gradient(
        180deg,
        #07194b 0%,
        #0d2a78 100%
    );

}

/* =========================================================
   TOP
========================================================= */

.projects-home__top {

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 35px;

}

/* =========================================================
   TITLE
========================================================= */

.projects-home__title {

    font-size: 42px;

    font-weight: 700;

    color: #ffffff;

}

/* =========================================================
   LINK ALL
========================================================= */

.projects-home__all {

    display: inline-flex;
    align-items: center;

    gap: 10px;

    color: #ffffff;

    font-size: 17px;
    font-weight: 500;

    text-decoration: none;

    transition: var(--transition-fast);

}

.projects-home__all:hover {

    gap: 15px;

}

/* =========================================================
   GRID
========================================================= */

.projects-home__grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

}

/* =========================================================
   CARD
========================================================= */

.project-card {

    display: flex;
    flex-direction: column;

}

/* =========================================================
   IMAGE
========================================================= */

.project-card__image {

    position: relative;

    overflow: hidden;

    border-radius: 8px;

    aspect-ratio: 16/7;

}

.project-card__image img {

    width: 100%;
    height: 100%;

    object-fit: contain;

    transition: 0.5s ease;

}

.project-card:hover .project-card__image img {

    transform: scale(1.05);

}

/* =========================================================
   NAME
========================================================= */

.project-card__name {

    margin-top: 14px;

    font-size: 16px;
    font-weight: 500;

    color: #fff;

}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .projects-home {

        padding: 60px 30px;

    }

}

@media (max-width: 768px) {

    .projects-home__top {

        flex-direction: column;
        align-items: flex-start;

    }

    .projects-home__title {

        font-size: 32px;

    }

    .projects-home__grid {

        grid-template-columns: 1fr;

    }

}