/* ============================================================
   Real-life Application — centered heading, then a photo on the
   left and a subheading + bulleted use-case list on the right.
   ============================================================ */

.huc-reallife-title {
    margin-bottom: 2rem;
    text-align: center;
    font-size: clamp(1.35rem, 1.1rem + 1vw, 1.85rem);
    font-weight: 800;
    color: var(--huc-darkGray-clr);
}

.huc-reallife-media {
    border-radius: 16px;
    overflow: hidden;
    /* box-shadow: 0 16px 40px rgba(var(--huc-blue-rgb), 0.12); */
}

.huc-reallife-media img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.huc-reallife-subtitle {
    margin: 0 0 1.25rem;
    font-size: clamp(1.25rem, 1.05rem + 0.8vw, 1.6rem);
    font-weight: 800;
    line-height: 1.3;
    color: var(--huc-darkGray-clr);
}

.huc-reallife-list {
    margin: 0;
    padding-left: 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.huc-reallife-list li {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--huc-gray-clr);
}

.huc-reallife-list li strong {
    color: var(--huc-darkGray-clr);
    font-weight: 700;
}

.huc-reallife-list li::marker {
    color: var(--huc-orange-clr);
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
    .huc-reallife-media img {
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 575.98px) {
    .huc-reallife-title {
        margin-bottom: 1.5rem;
    }

    .huc-reallife-subtitle {
        margin-bottom: 1rem;
    }

    .huc-reallife-list {
        gap: 0.7rem;
    }

    .huc-reallife-list li {
        font-size: 0.8125rem;
    }
}
