.home-hero {
    padding-top: 3rem;
    border-radius: 0 0 4.16667rem 4.16667rem;
    background: linear-gradient(0deg, rgba(38, 76, 153, 0.40) 7.94%, rgba(146, 165, 204, 0.40) 55.57%, rgba(255, 255, 255, 0.40) 100%);
}

.home-hero__head {
    text-align: center;
    margin: 0 auto 2.5rem;
}

.home-hero__title {
    font-family: Roboto;
    font-size: 44px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #5188F5 0%, #0E46B5 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-hero__subtitle {
    color: #FF5100;
    font-family: Quicksand;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 1rem;
}

.home-hero__desc {
   color: #2854AB;
    font-family: Quicksand;
    font-size: 1.38889rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 1.5rem;
}

.home-hero__cta {
    margin: 0 auto;
}

.home-hero__gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 18.75rem));
    gap: 2.08rem;
    align-items: center;
    margin: 0 auto;
    width: 100%;
    max-width: 81.25rem;
}

.home-hero__item {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    background: #e7eef6;
}

.home-hero__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-hero__item--1 {
    overflow: unset;
}
/* 
.home-hero__item--2 {
    aspect-ratio: 3 / 4;
    align-self: center;
}

.home-hero__item--3 {
    aspect-ratio: 3 / 4;
}

.home-hero__item--4 {
    aspect-ratio: 3 / 4;
    align-self: start;
} */

.home-hero__badge {
    position: absolute;
    left: -4.17rem;
    bottom: -2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 8.33333rem;
    height: 8.33333rem;
    border-radius: 50%;
    /* background: var(--home-orange); */
    color: #fff;
    box-shadow: var(--shadow-3, 0 4px 8px rgba(0, 0, 0, 0.15));
}
.home-hero__badge svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.home-hero__badge strong {
   color: #FFF;
    text-align: center;
    font-family: Quicksand;
    font-size: 1.66667rem;
    font-style: normal;
    font-weight: 500;
    line-height: 2.5rem; /* 150% */
    z-index: 1;
}

.home-hero__badge em {
    color: #FFF;
    text-align: center;
    font-family: Quicksand;
    font-size: 1.11111rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.66667rem; /* 150% */
    z-index: 1;
}

@media (max-width: 1024px) {
    .home-hero__gallery {
        grid-template-columns: repeat(4, 1fr);
    }

    .home-hero__title {
        font-size: 1.875rem;
    }

    /* Badge tròn nhô ra ngoài item--1 (-4.17rem) dễ bị tràn ngang khi cột ảnh
       hẹp lại trên tablet, nên thu nhỏ & kéo vào gần mép hơn. */
    .home-hero__badge {
        width: 5.5rem;
        height: 5.5rem;
        left: -1.5rem;
        bottom: -1rem;
    }

    .home-hero__badge strong {
        font-size: 1.125rem;
        line-height: 1.5rem;
    }

    .home-hero__badge em {
        font-size: 0.75rem;
        line-height: 1rem;
    }
}

@media (max-width: 767px) {
    .home-hero {
        padding-top: 2rem;
    }

    .home-hero__gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .home-hero__item--1,
    .home-hero__item--2,
    .home-hero__item--3,
    .home-hero__item--4 {
        aspect-ratio: 1 / 1;
        align-self: stretch;
    }

    .home-hero__title {
        font-size: 1.5rem;
    }

    .home-hero__subtitle {
        font-size: 1.0625rem;
    }

    .home-hero__badge {
        width: 3.5rem;
        height: 3.5rem;
        left: -0.5rem;
        bottom: 0.75rem;
    }

    .home-hero__badge strong {
        font-size: 0.9375rem;
    }
}
