/* 
   Estilos Institucionales para el Banner de Reglamentos 
   Integrado con la paleta de colores original del sitio
*/

.banner-reglamento {
    background: #852241; /* Color guinda institucional sólido */
    color: #ffffff;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #6b1b34; /* Un tono más oscuro del mismo guinda */
}

.banner-reglamento h2 {
    font-weight: 600;
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.banner-reglamento .reglamento-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 0.8rem 1.2rem;
    margin-bottom: 0.6rem;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: background 0.2s ease;
    font-size: 1rem;
}

.banner-reglamento .reglamento-item:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    text-decoration: none;
}

.banner-reglamento .reglamento-item i {
    margin-right: 12px;
    font-size: 1.1rem;
    color: #ffd7e3; /* Un rosa muy sutil para el icono */
}

.reglamento-empty {
    font-style: italic;
    opacity: 0.8;
}

/* Ajuste de responsividad básica */
@media (max-width: 768px) {
    .banner-reglamento {
        padding: 1rem;
    }
    .banner-reglamento h2 {
        font-size: 1.3rem;
    }
}
