/* IEU Portal - Departamentos Nacionales */

.ieu-departments { margin-top: 3rem; }
.ieu-departments-list,
.ieu-departments { display: grid; gap: 2.5rem; }

.ieu-department-card {
    overflow: hidden;
    padding: 2rem;
    border: 1px solid rgba(11, 45, 94, .12);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(11, 45, 94, .08);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.ieu-department-card:hover { transform: translateY(-6px); border-color: rgba(11, 45, 94, .22); box-shadow: 0 20px 45px rgba(11, 45, 94, .18); }
.ieu-department-card__header { display: block; }
.ieu-department-card__hero { position: relative; overflow: hidden; width: 100%; height: 340px; margin-bottom: 1.5rem; border-radius: 12px; }
.ieu-department-card__hero img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; filter: brightness(.85); transition: transform .5s ease, filter .5s ease; }
.ieu-department-card:hover .ieu-department-card__hero img { transform: scale(1.05); filter: brightness(1); }
.ieu-department-card__overlay { position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 2rem; background: linear-gradient(to top, rgba(11, 45, 94, .80) 0%, rgba(11, 45, 94, .35) 45%, rgba(11, 45, 94, 0) 75%); }
.ieu-department-card__overlay .ieu-department-card__title { margin: 0; color: #fff; font-size: 2rem; font-weight: 700; line-height: 1.2; text-shadow: 0 3px 10px rgba(0, 0, 0, .6); }
.ieu-department-card__title { font-size: 1.5rem; }
.ieu-department-card__title--without-image { margin-bottom: 1rem; color: var(--ieu-blue, #0b2d5e); text-shadow: none; }
.ieu-department-card__description { color: #52627a; line-height: 1.7; }
.ieu-department-card__description > :first-child { margin-top: 0; }
.ieu-department-card__description > :last-child { margin-bottom: 0; }
.ieu-department-card__authorities { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(11, 45, 94, .12); }
