/* CONTENEDOR GENERAL */
.solutions-detail {
    display: block;
    color: #fff;
}

.solutions-media {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.solutions-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* overlay */
.solutions-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

/* TÍTULO CENTRADO */
.solutions-title {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    z-index: 2;
}

/* CONTENIDO */
.solutions-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    color: #111;
}

.solutions-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: #ffffff;
}

/* DESKTOP */
@media (min-width: 1024px) {
    .solutions-media {
        height: 280px;
    }

    .solutions-content {
        padding: 4rem 0;
    }
}
