/* Contenedor de la imagen */
.bg-img-summercamps {
    overflow: hidden;
    border-radius: 0.5rem; /* opcional */
}

/* Imagen responsive */
.bg-img-summercamps img {
    width: 100%;
    height: auto;
    display: block;
}

/* Capa oscura sobre la imagen */
.bg-img-summercamps::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0, 0, 0, 0.15),
        rgba(0, 0, 0, 0.55)
    );
    z-index: 1;
}

/* Contenedor del texto */
.texto-img-summercamps {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 2;
    max-width: 85%;
}

/* Título */
.texto-img-summercamps h1 {
    margin: 0;
    line-height: 1.2;
    font-size: clamp(1.5rem, 3.5vw, 2.75rem);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

@media (max-width: 575px) {
    .texto-img-summercamps {
        bottom: 1rem;
        left: 1rem;
        max-width: 90%;
    }
}

h2 {
	font-size: 1.5rem !important;
}