.updates-highlights-section {
    padding: 4.5rem 0;
    background: linear-gradient(180deg, #fffaf5, #fdf2e8)
}

.updates-section-heading {
    max-width: 760px;
    margin: 0 auto 2.25rem;
    text-align: center
}

.updates-section-heading .section-subtitle {
    display: block;
    margin-bottom: .3rem;
    color: var(--orange);
    font-size: 1.25rem;
    line-height: 1.2
}

.updates-section-heading h2 {
    margin: 0 0 .65rem;
    color: var(--ink);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.2
}

.updates-section-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.65
}

.updates-highlights-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
    gap: 1.5rem
}

.latest-updates-panel,
.lost-found-panel {
    min-width: 0;
    min-height: 430px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 16px 38px rgba(83, 39, 15, .11)
}

.latest-updates-panel {
    padding: 1.6rem;
    border: 1px solid #ead6c6;
    background: rgba(255, 255, 255, .9)
}

.lost-found-panel {
    padding: 1.6rem;
    border: 1px solid #ead6c6;
    background: rgba(255, 255, 255, .94)
}

.home-priority-updates {
    padding-top: 3.75rem
}

.home-priority-updates>.container {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem
}

.home-priority-updates .updates-section-heading {
    grid-column: 1 / -1;
    width: 100%;
    margin-bottom: .75rem
}

.priority-announcements-panel {
    min-height: 430px;
    order: 2
}

.priority-announcement-list {
    grid-template-columns: 1fr;
    gap: 1rem
}

.priority-announcement-list .announcement-item {
    min-width: 0;
    padding: 1rem;
    border: 1px solid #f0dfd2;
    border-radius: 12px;
    background: #fffaf6
}

.priority-announcement-list .announcement-item:last-child {
    border-bottom: 1px solid #f0dfd2
}

.lost-found-sections {
    display: contents
}

.lost-section-panel {
    order: 1;
    border-top: 4px solid #bd3d2c
}

.found-section-panel {
    order: 3;
    border-top: 4px solid #277655
}

.found-section-panel .updates-panel-heading span,
.found-section-panel .updates-panel-heading>a,
.found-section-panel .found-action {
    color: #277655
}

.lost-found-empty {
    height: 276px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: .75rem;
    padding: 1.25rem;
    color: #8b4a38;
    border: 1px dashed #dcb9a7;
    border-radius: 14px;
    background: #fff9f4;
    text-align: center
}

.lost-found-empty i {
    font-size: 2.6rem
}

.lost-found-empty p {
    margin: 0;
    font-weight: 700
}

.found-empty {
    color: #277655;
    border-color: #9bc9b4;
    background: #f5fbf7
}

.home-highlights-section {
    padding-top: 2rem;
    padding-bottom: 3rem
}

.home-highlights-section .homepage-highlights-wide {
    margin-top: 0
}

.lost-person-showcase {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: .45rem;
    height: 276px;
    padding: .55rem;
    overflow: hidden;
    border: 1px solid #ead8cb;
    border-radius: 14px;
    background: linear-gradient(135deg, #fffaf6, #f7e8dc)
}

.lost-person-tile {
    position: relative;
    min-width: 0;
    min-height: 0;
    margin: 0;
    overflow: hidden;
    padding: 0;
    border: 2px solid #fff;
    border-radius: 9px;
    background: #e7e2df;
    box-shadow: 0 5px 12px rgba(69, 28, 12, .12);
    cursor: pointer;
    appearance: none;
    transition: opacity .58s ease, transform .58s cubic-bezier(.2, .75, .25, 1), filter .58s ease, box-shadow .2s ease
}

.lost-person-tile:hover,
.lost-person-tile:focus-visible {
    z-index: 2;
    outline: 0;
    box-shadow: 0 8px 20px rgba(69, 28, 12, .28);
    transform: translateY(-2px)
}

.lost-person-tile.is-fading {
    opacity: 0;
    filter: blur(3px);
    transform: scale(.82)
}

.lost-person-tile img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #eee
}

.person-tile-name {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    padding: .32rem .35rem;
    color: #fff;
    background: linear-gradient(180deg, transparent, rgba(54, 17, 10, .92));
    font-family: Arial, Helvetica, sans-serif;
    font-size: .58rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap
}

.person-tile-view {
    position: absolute;
    top: .3rem;
    right: .3rem;
    display: grid;
    place-items: center;
    width: 21px;
    height: 21px;
    color: #6a2017;
    border-radius: 50%;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 2px 6px rgba(0, 0, 0, .18);
    font-size: .6rem
}

/* Lost and Found person detail popup. */
.lost-found-detail-modal .modal-dialog {
    max-width: 880px
}

.lost-found-detail-modal .modal-content {
    position: relative;
    overflow: hidden;
    border: 0;
    border-radius: 20px;
    background: #fffaf5;
    box-shadow: 0 28px 90px rgba(40, 14, 7, .3)
}

.lost-found-modal-close {
    position: absolute;
    z-index: 5;
    top: 13px;
    right: 13px;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    padding: 0;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 50%;
    background: rgba(49, 17, 11, .88);
    cursor: pointer;
    pointer-events: auto;
    touch-action: manipulation
}

.lost-found-modal-close:hover,
.lost-found-modal-close:focus-visible {
    background: #d3541d;
    outline: 3px solid rgba(211, 84, 29, .24);
    outline-offset: 2px
}

#lostFoundModalPhone {
    color: #8e2b1d;
    font-weight: 800;
    text-decoration: none
}

#lostFoundModalPhone:hover {
    color: #d3541d;
    text-decoration: underline
}

#lostFoundModalPhone.is-unavailable {
    color: inherit;
    font-weight: inherit;
    pointer-events: none
}

.lost-found-modal-grid {
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    align-items: start
}

.lost-found-modal-photo {
    position: relative;
    width: 286px;
    height: 420px;
    min-height: 0;
    margin: 24px 0 24px 24px;
    overflow: hidden;
    border-radius: 14px;
    background: #e9ddd4;
    box-shadow: 0 12px 28px rgba(55, 24, 15, .16)
}

.lost-found-modal-photo::after {
    content: "";
    position: absolute;
    inset: 55% 0 0;
    background: linear-gradient(180deg, transparent, rgba(54, 17, 10, .58))
}

.lost-found-modal-photo>img {
    width: 100%;
    height: 100%;
    min-height: 0;
    display: block;
    object-fit: cover;
    object-position: center top
}

#lostFoundModalStatus {
    position: absolute;
    z-index: 2;
    left: 18px;
    bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .52rem .7rem;
    color: #fff;
    border-radius: 6px;
    background: #a72d25;
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase
}

#lostFoundModalStatus.found {
    background: #247454
}

.lost-found-modal-content {
    padding: 1.6rem 2rem
}

.lost-found-modal-kicker {
    display: block;
    margin-bottom: .35rem;
    color: #d3541d;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase
}

.lost-found-modal-content h2 {
    margin: 0;
    padding-right: 2.5rem;
    color: #5c1b17;
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1.15
}

.lost-found-modal-content>p {
    margin: .4rem 0 .9rem;
    color: #7c6b62;
    font-size: .8rem
}

.lost-found-detail-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .55rem;
    margin: 0
}

.lost-found-detail-list>div {
    min-width: 0;
    padding: .6rem .7rem;
    border: 1px solid #eadbd0;
    border-radius: 9px;
    background: #fff
}

.lost-found-detail-list .full {
    grid-column: 1 / -1
}

.lost-found-detail-list dt {
    margin-bottom: .25rem;
    color: #b84a1d;
    font-size: .64rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase
}

.lost-found-detail-list dd {
    margin: 0;
    color: #392720;
    font-size: .84rem;
    font-weight: 700;
    line-height: 1.45
}

.lost-found-detail-list .details-note dd {
    font-weight: 500
}

.lost-found-modal-action {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin-top: 1rem;
    padding: .65rem .85rem;
    color: #fff;
    border-radius: 6px;
    background: #9e301f;
    font-size: .75rem;
    font-weight: 800
}

.lost-found-modal-action:hover {
    color: #fff;
    background: #742019
}

.lost-found-action {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin-top: .9rem;
    color: var(--orange);
    font-size: .8rem;
    font-weight: 700
}

.updates-panel-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ecdace
}

.updates-panel-heading span,
.highlights-panel-heading>span {
    display: block;
    margin-bottom: .2rem;
    color: var(--orange);
    font-family: Arial, Helvetica, sans-serif;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase
}

.updates-panel-heading h3,
.highlights-panel-heading h3 {
    margin: 0;
    font-size: 1.35rem;
    line-height: 1.25
}

.updates-panel-heading>a {
    flex: 0 0 auto;
    color: var(--orange);
    font-family: Arial, Helvetica, sans-serif;
    font-size: .875rem;
    font-weight: 700
}

.announcement-list {
    display: grid
}

.announcement-item {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    padding: .85rem 0;
    color: var(--ink);
    border-bottom: 1px solid #f0e2d8;
    transition: transform .25s ease, background-color .25s ease
}

.announcement-item:last-child {
    border-bottom: 0
}

.announcement-item:hover,
.announcement-item:focus-visible {
    color: var(--ink);
    transform: translateX(6px)
}

.announcement-item time {
    display: grid;
    place-items: center;
    width: 58px;
    height: 62px;
    color: var(--orange);
    border: 1px solid #e8a579;
    border-radius: 9px;
    background: #fff8f2;
    line-height: 1
}

.announcement-item time strong {
    align-self: end;
    font-family: var(--font-heading);
    font-size: 1.1rem
}

.announcement-item time span {
    align-self: start;
    margin-top: .15rem;
    font-family: Arial, Helvetica, sans-serif;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase
}

.announcement-copy {
    min-width: 0
}

.announcement-copy small,
.announcement-copy strong,
.announcement-copy em {
    display: block
}

.announcement-copy small {
    margin-bottom: .15rem;
    color: var(--orange);
    font-family: Arial, Helvetica, sans-serif;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase
}

.announcement-copy strong {
    overflow: hidden;
    font-family: var(--font-heading);
    font-size: .92rem;
    line-height: 1.4;
    text-overflow: ellipsis
}

.announcement-copy em {
    margin-top: .2rem;
    color: var(--muted);
    font-family: Arial, Helvetica, sans-serif;
    font-size: .75rem;
    font-style: normal
}

.announcement-item>i {
    color: #bc6c42
}

.announcement-item-text-only {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 94px;
    padding-inline: .25rem
}

.announcement-item-text-only .announcement-copy strong {
    overflow: visible;
    font-size: 1rem;
    text-overflow: clip
}

.homepage-highlights-panel {
    position: relative;
    min-width: 0;
    overflow: hidden;
    padding: 1.7rem;
    color: #fff;
    border-radius: 16px;
    box-shadow: 0 16px 38px rgba(83, 39, 15, .11);
    background: linear-gradient(145deg, rgba(84, 15, 12, .98), rgba(161, 35, 17, .96))
}

.homepage-highlights-wide {
    display: grid;
    grid-template-columns: minmax(220px, .72fr) minmax(0, 1.8fr);
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    margin-top: 1.5rem
}

.homepage-highlights-panel::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -120px;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(255, 190, 135, .14);
    border-radius: 50%;
    box-shadow: 0 0 0 40px rgba(255, 190, 135, .05), 0 0 0 80px rgba(255, 190, 135, .035)
}

.highlights-panel-heading {
    position: relative;
    z-index: 1;
    margin-bottom: 0
}

.highlights-panel-heading>span {
    color: #ffad70
}

.highlights-panel-heading h3 {
    color: #fff
}

.highlights-panel-heading p {
    max-width: 480px;
    margin: .55rem 0 0;
    color: rgba(255, 255, 255, .78);
    font-size: .9rem;
    line-height: 1.55
}

.homepage-highlight-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: .8rem
}

.highlight-stat {
    min-height: 118px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 12px;
    background: rgba(255, 255, 255, .07);
    transition: transform .25s ease, background-color .25s ease
}

.highlight-stat:hover {
    background: rgba(255, 255, 255, .12);
    transform: translateY(-5px)
}

.highlight-stat i {
    color: #ffad70;
    font-size: 1.55rem
}

.highlight-stat strong,
.highlight-stat span {
    display: block
}

.highlight-stat strong {
    margin-top: .45rem;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    line-height: 1.2
}

.highlight-stat span {
    margin-top: .25rem;
    color: rgba(255, 255, 255, .75);
    font-family: Arial, Helvetica, sans-serif;
    font-size: .78rem;
    line-height: 1.4
}

.scroll-motion-ready.updates-highlights-section .updates-section-heading,
.scroll-motion-ready.updates-highlights-section .latest-updates-panel,
.scroll-motion-ready.updates-highlights-section .lost-found-panel,
.scroll-motion-ready.updates-highlights-section .homepage-highlights-panel {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .65s ease, transform .65s cubic-bezier(.2, .75, .25, 1)
}

.scroll-motion-ready.is-visible.updates-highlights-section .updates-section-heading,
.scroll-motion-ready.is-visible.updates-highlights-section .latest-updates-panel,
.scroll-motion-ready.is-visible.updates-highlights-section .lost-found-panel,
.scroll-motion-ready.is-visible.updates-highlights-section .homepage-highlights-panel {
    opacity: 1;
    transform: translateY(0)
}

.scroll-motion-ready.is-visible.updates-highlights-section .latest-updates-panel {
    transition-delay: .12s
}

.scroll-motion-ready.is-visible.updates-highlights-section .lost-found-panel {
    transition-delay: .24s
}

.scroll-motion-ready.is-visible.updates-highlights-section .homepage-highlights-panel {
    transition-delay: .32s
}

.scroll-motion-ready.motion-complete.updates-highlights-section .latest-updates-panel,
.scroll-motion-ready.motion-complete.updates-highlights-section .lost-found-panel,
.scroll-motion-ready.motion-complete.updates-highlights-section .homepage-highlights-panel {
    transition-delay: 0s
}

@media(max-width:991.98px) {
    .updates-highlights-grid {
        grid-template-columns: 1fr
    }

    .homepage-highlights-wide {
        grid-template-columns: 1fr
    }

    .homepage-highlight-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .home-priority-updates>.container {
        grid-template-columns: 1fr
    }

    .home-priority-updates .updates-section-heading {
        grid-column: auto
    }
}

@media(max-width:575.98px) {
    .updates-highlights-section {
        padding: 3rem 0
    }

    .latest-updates-panel,
    .lost-found-panel,
    .homepage-highlights-panel {
        min-height: 0;
        padding: 1.15rem
    }

    .updates-panel-heading {
        align-items: flex-start
    }

    .announcement-item {
        grid-template-columns: 50px minmax(0, 1fr);
        gap: .7rem
    }

    .priority-announcement-list .announcement-item {
        padding: .8rem
    }

    .announcement-item time {
        width: 50px;
        height: 56px
    }

    .announcement-copy strong {
        overflow: visible;
        overflow-wrap: anywhere;
        font-size: .84rem;
        text-overflow: clip
    }

    .announcement-item>i {
        display: none
    }

    .homepage-highlight-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .65rem
    }

    .homepage-highlight-grid .highlight-stat:last-child {
        grid-column: 1 / -1
    }

    .highlight-stat {
        min-height: 96px;
        padding: .75rem
    }

    .highlight-stat i {
        font-size: 1.15rem
    }

    .highlight-stat strong {
        margin-top: .3rem;
        font-size: 1.05rem
    }

    .highlight-stat span {
        margin-top: .15rem;
        font-size: .66rem;
        line-height: 1.3
    }

    .lost-person-showcase {
        gap: .32rem;
        height: 250px;
        padding: .4rem
    }

    .lost-found-empty {
        height: 250px
    }

    .lost-found-detail-modal .modal-dialog {
        margin: .75rem
    }

    .lost-found-modal-grid {
        grid-template-columns: 1fr
    }

    .lost-found-modal-photo,
    .lost-found-modal-photo>img {
        width: 100%;
        min-height: 245px;
        height: 245px;
        margin: 0;
        border-radius: 0;
        box-shadow: none
    }

    .lost-found-modal-content {
        padding: 1.25rem
    }

    .lost-found-modal-content h2 {
        font-size: 1.55rem
    }

    .lost-found-detail-list {
        grid-template-columns: 1fr
    }

    .lost-found-detail-list .full {
        grid-column: auto
    }
}

@media(prefers-reduced-motion:reduce) {
    .scroll-motion-ready.updates-highlights-section .updates-section-heading,
    .scroll-motion-ready.updates-highlights-section .latest-updates-panel,
    .scroll-motion-ready.updates-highlights-section .lost-found-panel,
    .scroll-motion-ready.updates-highlights-section .homepage-highlights-panel {
        opacity: 1;
        transform: none;
        transition: none
    }

    .lost-person-tile {
        transition: none
    }
}
