.home-about {
    background: #f7fbfd;
}

.home-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.home-about__image {
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 24px 70px rgba(5,33,48,0.12);
}

.home-about__image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.home-about__label {
    display: inline-flex;
    margin-bottom: 16px;
    font-size: 15px;
    font-weight: 800;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.home-about__content p {
    max-width: 560px;
    margin-bottom: 28px;
    font-size: 18px;
    line-height: 1.75;
    color: #5c6b74;
}

@media (max-width: 992px) {
    .home-about__grid {
        grid-template-columns: 1fr;
    }

    .home-about__image img {
        height: 420px;
    }
}

@media (max-width: 576px) {
    .home-about__image {
        border-radius: 22px;
    }

    .home-about__image img {
        height: 260px;
    }

    .home-about__content p {
        font-size: 15px;
        line-height: 1.65;
    }
}