/* Bloque compartido de noticias y enlaces de interés en la portada V2. */
.home-information-section {
    background: var(--white, #fff);
    padding: 80px 40px;
}

.home-information-container {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(310px, 1fr);
    gap: clamp(32px, 4vw, 64px);
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.home-information-section .news-section {
    padding: 0;
}

.home-information-section .news-container {
    max-width: none;
}

.home-information-section .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.interest-links {
    position: relative;
    overflow: hidden;
    padding: clamp(24px, 3vw, 36px);
    border: 1px solid #dce9f3;
    border-radius: 20px;
    background: linear-gradient(150deg, #f6fbff 0%, #edf6fb 100%);
    box-shadow: 0 18px 45px rgba(0, 51, 102, .08);
}

.interest-links::before {
    position: absolute;
    top: -84px;
    right: -56px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(0, 154, 209, .09);
    content: "";
    pointer-events: none;
}

.interest-links-heading {
    position: relative;
    margin-bottom: 24px;
}

.interest-links-eyebrow {
    display: block;
    margin-bottom: 7px;
    color: #16729d;
    font: 700 12px/1.2 'Montserrat', sans-serif;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.interest-links h2 {
    margin: 0;
    color: #003366;
    font: 700 clamp(26px, 2.1vw, 34px)/1.15 'Montserrat', sans-serif;
}

.interest-links-heading p {
    max-width: 29rem;
    margin: 10px 0 0;
    color: #4d6475;
    font-size: 14px;
    line-height: 1.55;
}

.interest-links-list {
    position: relative;
    display: grid;
    gap: 11px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.interest-link-card {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 20px;
    gap: 13px;
    align-items: center;
    min-height: 72px;
    padding: 12px 14px;
    border: 1px solid rgba(0, 73, 122, .1);
    border-radius: 12px;
    background: rgba(255, 255, 255, .86);
    color: #123a5a;
    text-decoration: none;
    box-shadow: 0 3px 9px rgba(0, 51, 102, .04);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background-color .2s ease;
}

.interest-link-card:hover {
    transform: translateX(5px);
    border-color: rgba(0, 113, 170, .35);
    background: #fff;
    box-shadow: 0 9px 22px rgba(0, 51, 102, .12);
}

.interest-link-card:focus-visible {
    outline: 3px solid #f7b733;
    outline-offset: 3px;
}

.interest-link-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 10px;
    color: #fff;
}

.interest-link-card--survey .interest-link-icon { background: #176e9e; }
.interest-link-card--events .interest-link-icon { background: #008b9e; }
.interest-link-card--service .interest-link-icon { background: #2864a7; }
.interest-link-card--community .interest-link-icon { background: #427b54; }

.interest-link-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.interest-link-copy {
    min-width: 0;
}

.interest-link-copy strong,
.interest-link-copy small {
    display: block;
}

.interest-link-copy strong {
    color: #073b63;
    font: 700 15px/1.25 'Montserrat', sans-serif;
}

.interest-link-copy small {
    margin-top: 3px;
    overflow: hidden;
    color: #617483;
    font-size: 12px;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.interest-link-arrow {
    color: #1d6d9c;
    font-size: 21px;
    line-height: 1;
    transition: transform .2s ease;
}

.interest-link-card:hover .interest-link-arrow {
    transform: translateX(3px);
}

@media (max-width: 1024px) {
    .home-information-section {
        padding: 60px 30px;
    }

    .home-information-container {
        grid-template-columns: 1fr;
    }

    .interest-links-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .home-information-section {
        padding: 40px 15px;
    }

    .home-information-section .news-grid,
    .interest-links-list {
        grid-template-columns: 1fr;
    }

    .interest-links {
        padding: 24px 18px;
        border-radius: 16px;
    }

    .interest-link-card:hover {
        transform: translateY(-2px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .interest-link-card,
    .interest-link-arrow {
        transition: none;
    }
}
