.gsh-page {
    --gsh-forest: #123932;
    --gsh-gold: #dbad49;
    --gsh-mint: #9bd8c2;
    --gsh-ink: #122824;
    --gsh-muted: #5c706b;
    --gsh-line: #dce6e2;
    --gsh-surface: #f2f7f4;
    max-width: 1240px;
    margin: 0 auto;
    padding: clamp(22px, 4vw, 46px) 20px 72px;
    color: var(--gsh-ink);
}

.gsh-page * {
    box-sizing: border-box;
}

.gsh-hero {
    padding: clamp(34px, 5vw, 58px);
    border-radius: 24px;
    background: var(--gsh-forest);
    color: #fff;
}

.gsh-eyebrow,
.gsh-meta {
    margin: 0 0 8px;
    color: #28705f;
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.gsh-hero .gsh-eyebrow {
    color: var(--gsh-mint);
}

.gsh-hero h1 {
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(2.25rem, 4.5vw, 3.6rem);
    line-height: 1.06;
}

.gsh-hero p:last-child {
    max-width: 760px;
    margin: 0;
    color: #d5e7e1;
    font-size: 1.08rem;
}

.gsh-search,
.gsh-single {
    margin-top: 18px;
    padding: clamp(20px, 3vw, 28px);
    border: 1px solid var(--gsh-line);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(18,40,36,.05);
}

.gsh-search form {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) 180px 180px auto;
    gap: 12px;
    align-items: end;
}

.gsh-search label {
    display: grid;
    gap: 6px;
    color: var(--gsh-ink);
    font-weight: 800;
}

.gsh-search input,
.gsh-search select {
    min-height: 44px;
    padding: 0 12px;
    border: 1px solid var(--gsh-line);
    border-radius: 12px;
    color: var(--gsh-ink);
    font: inherit;
}

.gsh-search button,
.gsh-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border: 0;
    border-radius: 12px;
    background: var(--gsh-forest);
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.gsh-osm {
    color: var(--gsh-muted);
}

.gsh-list {
    margin-top: 18px;
    display: grid;
    overflow: hidden;
    border: 1px solid var(--gsh-line);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(18,40,36,.05);
}

.gsh-list-summary {
    padding: 14px 18px;
    border-bottom: 1px solid var(--gsh-line);
    color: var(--gsh-muted);
    font-size: .94rem;
}

.gsh-list-summary strong {
    color: var(--gsh-ink);
}

.gsh-list article {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 340px);
    gap: 14px;
    align-items: center;
    padding: 13px 18px;
    border-bottom: 1px solid var(--gsh-line);
}

.gsh-list article:last-child {
    border-bottom: 0;
}

.gsh-list h2,
.gsh-single h1 {
    margin: 0;
}

.gsh-list h2 a {
    color: var(--gsh-ink);
    text-decoration: none;
    font-size: clamp(1rem, 2vw, 1.18rem);
}

.gsh-list p {
    margin: 0;
    color: var(--gsh-muted);
    font-size: .92rem;
}

.gsh-list .gsh-meta {
    margin-bottom: 4px;
    color: #5a716b;
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.gsh-list article > div > p:not(.gsh-meta) {
    display: none;
}

.gsh-list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 7px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.gsh-list li,
.gsh-facts p {
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--gsh-surface);
    color: var(--gsh-muted);
    font-size: .86rem;
    font-weight: 700;
}

.gsh-list li.is-complete {
    background: #e4f7ed;
    color: #116b3d;
}

.gsh-list li.is-almost {
    background: #fff6dd;
    color: #8b6418;
}

.gsh-list li.is-missing {
    background: #eef5f1;
    color: #214f46;
}

.gsh-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.gsh-pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border: 1px solid var(--gsh-line);
    border-radius: 999px;
    background: #fff;
    color: var(--gsh-forest);
    font-weight: 800;
    text-decoration: none;
}

.gsh-pagination a.is-active {
    background: var(--gsh-forest);
    color: #fff;
}

.gsh-single-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 24px;
}

.gsh-content {
    line-height: 1.72;
}

.gsh-shelter-photo {
    margin: 0 0 22px;
    overflow: hidden;
    border-radius: 18px;
    background: var(--gsh-surface);
}

.gsh-shelter-photo img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.gsh-facts {
    display: grid;
    gap: 10px;
    align-self: start;
}

.gsh-facts p {
    margin: 0;
}

.gsh-facts strong,
.gsh-facts span {
    display: block;
}

.gsh-source {
    color: var(--gsh-muted);
    font-size: .9rem;
}

.gsh-empty {
    padding: 24px;
    border-radius: 18px;
    background: var(--gsh-surface);
}

@media (max-width: 800px) {
    .gsh-search form,
    .gsh-list article,
    .gsh-single-grid {
        grid-template-columns: 1fr;
    }

    .gsh-list ul {
        justify-content: flex-start;
    }
}
