/* Encabezado */
.masthead {
	background: #002F6C; /* azul institucional aproximado */
}
.masthead .logo img { max-height: 52px; }

/* Botones principales */
.btn-primary, .btn-primary:focus {
	background: #C8102E; /* rojo institucional aprox */
	border-color: #C8102E;
}
.btn-primary:hover { filter: brightness(0.92); }

/* Cuadro de búsqueda en el home (hacerlo más discreto) */
.homepage .module-search .module-content .search-input input[type="text"] {
	height: 42px;
	font-size: 14px;
	padding: 8px 12px;
}
.homepage .module-search h1, 
.homepage .module-search .heading {
	font-size: 20px;
	margin-bottom: 8px;
}

/* Grilla de Departamentos en home */
/*
.ficen-orgs-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 14px;
	margin-top: 18px;
}
.ficen-org-card {
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	padding: 14px;
	background: #fff;
}
.ficen-org-card h3 {
	margin: 0 0 6px 0;
	font-size: 16px;
}
.ficen-org-card p {
	margin: 0;
	color: #555;
	font-size: 13px;
}
*/

/*ESTO LO AGREGO YO*/

/* =========================
 *    HOME FICEN (layout pro)
 * ========================= */

.ficen-home__container {
	max-width: 980px;
	padding-top: 44px;
	padding-bottom: 220px; /* empuja el footer hacia abajo */
}

.ficen-home__title {
        margin: 0 0 30px 0;
        text-align: center;
	/*font-size: 30px;*/
	font-weight: 700;
	line-height: 1.1;

        /* 1 sola línea (si no cabe, recorta con ...) */
        /*white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	*/

	/*Permitir que baje a otra linea si es necesario*/
	font-size: clamp(22px, 3.2vw,30px)
	white-space: normal;
	overflow-wrap: anywhere;
}

.ficen-home__search {
        display: flex;
	gap: 12px;
	align-items: stretch;
	margin: 0 auto 34px auto; /* espacio abajo hacia tarjetas */
}

.ficen-home__search input[type="text"] {
	  min-width: 0;
	    width: 100%;
}

@media (max-width: 520px) {
	.ficen-home__search { flex-direction: column; }
	.ficen-home__search-btn { width: 100%; }
}

/*
 * .ficen-home__search-input {
        flex: 1;
}
*/

.ficen-home__search-btn {
        min-width: 140px;
}

.ficen-home__orgs {
        display: grid;
        grid-template-columns: 1fr; /* vertical */
        gap: 18px;
}

/* Tarjetas de organizaciones */
.ficen-org-card {
/*	display: block;
	padding: 18px 18px;
	border: 1px solid rgba(0,0,0,.10);
	border-radius: 12px;
	text-decoration: none;
	background: #fff;
*/
	display: flex;
  	align-items: center;
	justify-content: center;
  	min-height: 110px; /* súbele a 140 si quieres más alto */
  	padding: 18px;
  	border: 1px solid rgba(0,0,0,.10);
  	border-radius: 12px;
  	text-decoration: none;
  	background: #fff;  
}

.ficen-org-card:hover {
        text-decoration: none;
        border-color: rgba(0,0,0,.18);
}

.ficen-org-card__title {
/*        display: block;
        font-size: 20px;
        font-weight: 700;
        line-height: 1.2;
*/	
}
