/* Start custom CSS for html, class: .elementor-element-f92473a */:root {
    --empo-primary: #0a6fb5;
    --empo-text-dark: #2c3e50;
    --empo-text-light: #555555;
    --empo-border: #dcdde1;
    --empo-bg-hover: #f4f8fb;
}

/* Contenedor Principal */
.entidades-wrapper {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    max-width: 950px;
    margin: 40px auto;
    color: var(--empo-text-dark);
}

/* Encabezado */
.entidades-header {
    margin-bottom: 40px;
    border-bottom: 3px solid var(--empo-primary);
    padding-bottom: 20px;
}

.entidades-header h2 {
    color: var(--empo-primary);
    font-size: 30px; 
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.entidades-header p {
    font-size: 17px; 
    color: var(--empo-text-light);
    line-height: 1.6;
    margin: 0;
    text-align: justify;
}

/* Cuadrícula de Entidades a 2 columnas */
.entidades-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

/* Tarjeta individual de entidad */
.entidad-card {
    display: flex;
    background-color: #ffffff;
    border: 1px solid var(--empo-border);
    border-radius: 8px;
    padding: 25px 20px;
    transition: all 0.3s ease;
}

.entidad-card:hover {
    box-shadow: 0 6px 15px rgba(0,0,0,0.06);
    border-color: #cce0f0;
    transform: translateY(-3px);
}

.entidad-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    color: var(--empo-primary);
    margin-right: 20px;
    background-color: var(--empo-bg-hover);
    padding: 10px;
    border-radius: 50%;
}

.entidad-info {
    flex-grow: 1;
}

.entidad-info h4 {
    margin: 0 0 8px 0;
    font-size: 19px;
    color: var(--empo-text-dark);
    line-height: 1.3;
}

.entidad-info p {
    margin: 0 0 12px 0;
    font-size: 15px;
    color: var(--empo-text-light);
    line-height: 1.5;
}

.entidad-link {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    color: var(--empo-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.entidad-link:hover {
    color: #085a94;
    text-decoration: underline;
}

/* Responsividad para móviles */
@media (max-width: 768px) {
    .entidades-grid {
        grid-template-columns: 1fr; /* Pasa a 1 sola columna en móviles */
    }
    
    .entidad-card {
        padding: 20px 15px;
    }
}/* End custom CSS */