.stst-updates-section {
    width: min(var(--stst-max-width, 1200px), 100%);
    margin: 0 auto 24px;
    padding: 0;
    border-radius: 22px;
    background: color-mix(in srgb, var(--stst-section-bg, #5f8249) 90%, rgba(0, 0, 0, .08));
    border: 1px solid rgba(255, 255, 255, .1);
    box-shadow: 0 14px 28px rgba(0, 0, 0, .1);
    overflow: hidden
}

.stst-updates-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .12)
}

.stst-updates-head h2 {
    margin: 0;
    color: inherit;
    font-size: 1.25rem
}

.stst-updates-head p {
    margin: 0 0 3px;
    color: inherit;
    opacity: .72;
    font-size: .72rem;
    letter-spacing: .1em
}

.stst-updates-scroll {
    max-height: 360px;
    overflow: auto;
    padding: 12px
}

.stst-update-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
    width: 100%;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 14px;
    background: rgba(0, 0, 0, .12);
    color: inherit;
    padding: 13px 14px;
    cursor: pointer
}

.stst-update-card+.stst-update-card {
    margin-top: 10px
}

.stst-update-card:hover {
    background: rgba(0, 0, 0, .2)
}

.stst-update-copy {
    min-width: 0
}

.stst-update-title {
    display: block;
    font-weight: 800;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.stst-update-body {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 4px;
    opacity: .88;
    font-size: .9rem;
    line-height: 1.6
}

.stst-update-meta {
    white-space: nowrap;
    opacity: .72;
    font-size: .78rem
}

.stst-update-empty {
    margin: 0;
    padding: 16px;
    text-align: center;
    opacity: .8
}

.stst-update-modal[hidden] {
    display: none !important
}

.stst-update-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 20px
}

.stst-update-modal-bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .7);
    backdrop-filter: blur(6px)
}

.stst-update-modal-card {
    position: relative;
    z-index: 1;
    width: min(680px, 100%);
    max-height: min(780px, calc(100vh - 40px));
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    background: #fff;
    color: #25282e;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .35);
    overflow: hidden
}

.stst-update-modal-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    border-bottom: 1px solid #e5e7ea
}

.stst-update-modal-head h3 {
    margin: 0;
    font-size: 1.15rem
}

.stst-update-modal-head p {
    margin: 5px 0 0;
    color: #68707b;
    font-size: .82rem
}

.stst-update-close {
    border: 0;
    background: transparent;
    color: #2b3038;
    font-size: 1.7rem;
    line-height: 1;
    cursor: pointer
}

.stst-update-modal-body {
    overflow: auto;
    padding: 20px
}

.stst-update-full-body {
    white-space: pre-wrap;
    line-height: 1.8;
    color: #353942
}

.stst-update-images {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px
}

.stst-update-images img {
    display: block;
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 12px;
    background: #eceff2
}

.stst-update-modal-foot {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 13px 20px;
    border-top: 1px solid #e5e7ea
}

.stst-update-nav {
    border: 1px solid #cbd1d8;
    border-radius: 999px;
    background: #fff;
    color: #28303a;
    padding: 8px 13px;
    cursor: pointer
}

.stst-update-nav:disabled {
    opacity: .4;
    cursor: default
}

@media(max-width:640px) {
    .stst-updates-head {
        padding: 16px
    }

    .stst-update-card {
        padding: 12px
    }

    .stst-update-meta {
        font-size: .72rem
    }

    .stst-update-modal {
        padding: 10px
    }

    .stst-update-modal-card {
        max-height: calc(100vh - 20px)
    }

    .stst-update-images {
        grid-template-columns: 1fr
    }
}