/* =========================================================
   HERO UNITÀ ORGANIZZATIVA
========================================================= */

.secal-uo-hero {
    padding: 52px 0 60px;
    background:
        radial-gradient(
            circle at 84% 18%,
            rgba(0, 166, 180, .14),
            transparent 30%
        ),
        linear-gradient(135deg, #f5f9fd, #fff);
    border-bottom: 1px solid #e1e9f2;
}

.secal-uo-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    align-items: start;
    gap: 48px;
    margin-top: 36px;
}

.secal-uo-hero__content {
    max-width: 920px;
}

.secal-uo-hero__type {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 13px;
    border-radius: 999px;
    background: #eaf4ff;
    color: #0058b0;
    font-size: 12px;
    line-height: 1;
    font-weight: 850;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.secal-uo-hero__type .material-symbols-outlined {
    font-size: 18px;
}

.secal-uo-hero h1 {
    max-width: 950px;
    margin: 0 0 20px;
    color: #15324b;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.04;
    font-weight: 850;
    letter-spacing: -.04em;
}

.secal-uo-hero__description {
    max-width: 800px;
    color: #5d7183;
    font-size: 19px;
    line-height: 1.65;
}

.secal-uo-hero__description p:last-child {
    margin-bottom: 0;
}

.secal-uo-hero__quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.secal-uo-hero__button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border: 2px solid #bcd2e8;
    border-radius: 11px;
    background: #fff;
    color: #0058b0;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: .2s ease;
}

.secal-uo-hero__button:hover {
    border-color: #0058b0;
    color: #0058b0;
    text-decoration: none;
    transform: translateY(-2px);
}

.secal-uo-hero__button--primary {
    border-color: #0058b0;
    background: #0058b0;
    color: #fff;
}

.secal-uo-hero__button--primary:hover {
    border-color: #00478e;
    background: #00478e;
    color: #fff;
}

.secal-uo-hero__button .material-symbols-outlined {
    font-size: 21px;
}

.secal-uo-hero__actions {
    padding-top: 12px;
}

.secal-uo-hero__topics {
    margin-top: 26px;
}

.secal-uo-hero__topics > span {
    display: block;
    margin-bottom: 9px;
    color: #5d7183;
    font-size: 13px;
    font-weight: 800;
}

@media (max-width: 991px) {
    .secal-uo-hero {
        padding: 36px 0 44px;
    }

    .secal-uo-hero__grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 28px;
    }

    .secal-uo-hero__actions {
        padding-top: 0;
    }
}

@media (max-width: 575px) {
    .secal-uo-hero h1 {
        font-size: clamp(36px, 10vw, 48px);
    }

    .secal-uo-hero__description {
        font-size: 17px;
    }

    .secal-uo-hero__quick-links {
        display: grid;
        grid-template-columns: 1fr;
    }

    .secal-uo-hero__button {
        width: 100%;
    }
}
/* =========================================================
   CARD UNITÀ ORGANIZZATIVA
========================================================= */

.secal-uo-card-column {
    display: flex;
}

.secal-uo-card {
    width: 100%;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    padding: 24px;
    border: 1px solid #dfe8f2;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(21, 50, 75, .08);
    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease;
}

.secal-uo-card:hover {
    transform: translateY(-5px);
    border-color: #b8d0e7;
    box-shadow: 0 24px 56px rgba(21, 50, 75, .13);
}

.secal-uo-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 20px;
}

.secal-uo-card__icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
    border-radius: 13px;
    background: #eaf4ff;
    color: #0058b0;
    font-size: 26px;
}

.secal-uo-card__type {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: #eef3f7;
    color: #37546c;
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.secal-uo-card__content {
    flex: 1;
}

.secal-uo-card__title {
    margin: 0 0 13px;
    font-size: 23px;
    line-height: 1.22;
    font-weight: 850;
    letter-spacing: -.025em;
}

.secal-uo-card__title a {
    color: #15324b;
    text-decoration: none;
}

.secal-uo-card__title a:hover {
    color: #0058b0;
    text-decoration: none;
}

.secal-uo-card__description {
    color: #5d7183;
    font-size: 15px;
    line-height: 1.6;
}

.secal-uo-card__description p:last-child {
    margin-bottom: 0;
}

.secal-uo-card__link {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 22px;
    padding-top: 16px;
    border-top: 1px solid #e5edf4;
    color: #0058b0;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.secal-uo-card__link:hover {
    color: #00478e;
    text-decoration: none;
}

.secal-uo-card__link .material-symbols-outlined {
    font-size: 21px;
    transition: transform .2s ease;
}

.secal-uo-card:hover
.secal-uo-card__link
.material-symbols-outlined {
    transform: translateX(4px);
}

@media (max-width: 767px) {
    .secal-uo-card {
        min-height: 0;
        padding: 20px;
    }

    .secal-uo-card__title {
        font-size: 21px;
    }
}