/* ==========================================================================
   ======================= SECTION 7: INSTAGRAM =============================
   ========================================================================== */
.bohoo-instagram-section {
    background-color: #ffffff;
    overflow: hidden; /* Evita que el carousel genere un scroll horizontal en la página */
}

/* --- Textos --- */
.bohoo-ig-title {
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: #4a4a4a;
}

.bohoo-ig-handle {
    font-size: 1.05rem;
    letter-spacing: 1px;
    color: #888888;
    text-decoration: none;
}

.bohoo-ig-handle:hover {
    color: #000000;
}

/* --- Imágenes del Grid/Carousel --- */
.bohoo-ig-img {
    aspect-ratio: 1 / 1; /* Obliga a que todas las fotos sean 100% cuadradas */
    object-fit: cover;
}

/* --- Efecto Hover (Capa Oscura y Logo) --- */
.bohoo-ig-overlay {
    background-color: rgba(0, 0, 0, 0.4); /* Capa negra semitransparente */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bohoo-ig-link:hover .bohoo-ig-overlay {
    opacity: 1; /* Se muestra al pasar el ratón */
}

/* ==========================================================
   ================ RESPONSIVE: INSTAGRAM ===================
   ========================================================== */
@media (max-width: 991px) {
    .bohoo-ig-title {
        font-size: 1.3rem;
    }
    
    .bohoo-ig-handle {
        font-size: 0.95rem;
    }
}