.home-intro__wrap {
    display: flex;
    align-items: center;
}

.home-intro__media {
    /* flex: 0 0 48%;
    max-width: 48%; */
    width: 38.88889rem;
    height: 36.11111rem;
    flex-shrink: 0;
    margin-right: -6%;
    border-radius: var(--home-radius);
    overflow: hidden;
    aspect-ratio: 560 / 520;
    box-shadow: 0 12px 32px rgba(11, 58, 115, 0.18);
    position: relative;
    z-index: 10;
}

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

.home-intro__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1 1 auto;
    height: 45.34722rem;
    background: var(--home-blue);
    border-radius: var(--home-radius);
    padding: 3.5rem;
    padding-left: 8rem;
    padding-right: 4.5rem;
    color: #fff;
    position: relative;
    z-index: 2;
}

.home-intro__title {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.home-intro__desc {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 1.75rem;
}

.home-intro__desc p {
    margin-bottom: 0.75rem;
}

.home-intro__desc p:last-child {
    margin-bottom: 0;
}

.home-intro__checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.home-intro__checklist li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
}

.home-intro__checklist svg {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
}
.home-btn {
    width: fit-content;
}
/* Dưới 1201px, ảnh cố định 38.88889rem + content cao cố định 45.34722rem không còn
   đủ chỗ trong hàng flex (ảnh có flex-shrink:0 nên không tự co) → tràn ngang trên tablet.
   Chuyển sang xếp chồng dọc, ảnh full-width theo aspect-ratio, content cao tự nhiên. */
@media (max-width: 1200px) {
    .home-intro__wrap {
        flex-direction: column;
    }

    .home-intro__media {
        width: 100%;
        height: auto;
        max-width: 100%;
        flex-shrink: 1;
        margin-right: 0;
        margin-bottom: -2.5rem;
        aspect-ratio: 16 / 10;
    }

    .home-intro__content {
        height: auto;
        padding: 3.5rem 2.5rem 2rem;
    }

    .home-intro__title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .home-intro__content {
        padding: 3.5rem 1.5rem 1.75rem;
    }

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

    .home-intro__desc {
        font-size: 1rem;
    }
}
