/* ================================================
   Grilla Orquesta — grilla-orquesta.css
   /wp-content/themes/tu-tema/css/grilla-orquesta.css
   ================================================ */

.go-wrapper {
    max-width: inherit;
    margin: 0 auto;
    padding: 0;
}

/* --- Encabezado de sección --- */
.go-seccion {
    margin-bottom: 3rem;
}

.go-titulo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0 0 1.25rem;
    padding-bottom: 8px;
    border-bottom: 1px solid #999;
    font-family: var(--inter);
}

/* Número de integrantes */
.go-count {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 1;
    letter-spacing: 0;
    text-transform: none;

    display: none;
}

/* --- Grilla responsive --- */
/* --- Grilla base para Desktop (8 columnas) --- */
.go-grilla {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 20px 16px;
}

/* --- Pantallas medianas / Notebooks chicas (Baja a 6 columnas) --- */
@media (max-width: 1200px) {
    .go-grilla {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* --- Tablets en modo horizontal o pantallas de 1024px (Baja a 4 columnas) --- */
@media (max-width: 1024px) {
    .go-grilla {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* --- Tablets en modo vertical / Celulares grandes (Baja a 3 columnas) --- */
@media (max-width: 768px) {
    .go-grilla {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px 10px; /* Reducimos el espacio para aprovechar más la pantalla */
    }
}

/* --- Celulares estándar y chicos (Baja a 2 columnas) --- */
@media (max-width: 480px) {
    .go-grilla {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px 8px;
    }
}

/* --- Tarjeta --- */
.go-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* --- Foto --- */
.go-foto-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 5px;
    background-color: #1e1e1e;
}

.go-foto-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.3s ease;
}

.go-card:hover .go-foto-wrap img {
    transform: scale(1.05);
}

/* Badge TIF */
.go-tif-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    background: rgba(200,80,0,0.85);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 3px;
    letter-spacing: 0.05em;
}

/* --- Nombre --- */
.go-nombre {
    margin: 8px 0 0;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.3;
}

/* ================================================
   Responsive
   ================================================ */
@media (max-width: 768px) {
    .go-grilla {
        gap: 14px 10px;
    }
}

@media (max-width: 480px) {
    .go-grilla {
        grid-template-columns: repeat(3, 1fr);
    }
}
