/**
 * RSHOF Journey 2026.08.30
 *
 * Shared presentation layer for the Top-100 special, profile journey,
 * community status and batch voting.  It intentionally reuses the
 * Sommerhaus 2026 palette and panel geometry without touching ranking data.
 */
:root {
    --rshof-journey-ink: #18252d;
    --rshof-journey-navy: #152a34;
    --rshof-journey-navy-deep: #0f2028;
    --rshof-journey-cream: #faf4e9;
    --rshof-journey-paper: #ffffff;
    --rshof-journey-gold: #d7a84f;
    --rshof-journey-gold-deep: #aa7628;
    --rshof-journey-line: #e4d5bb;
    --rshof-journey-muted: #66737a;
    --rshof-journey-shadow: 0 16px 38px rgba(21, 42, 52, .11);
}

/* Profile journey: continue browsing the canonical ranking without a new search. */
.rshof-profile-journey {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px 24px;
    margin: 22px 0 30px;
    padding: 20px;
    color: var(--rshof-journey-ink);
    background: var(--rshof-journey-cream);
    border: 1px solid var(--rshof-journey-line);
    border-radius: 22px;
    box-shadow: var(--rshof-journey-shadow);
}

.rshof-profile-journey__copy {
    align-self: center;
}

.rshof-profile-journey__copy p,
.rshof-profile-journey__copy strong {
    display: block;
    margin: 0;
}

.rshof-profile-journey__copy p {
    color: var(--rshof-journey-muted);
    font-size: .79rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.rshof-profile-journey__copy strong {
    margin-top: 4px;
    color: var(--rshof-journey-ink);
    font-size: 1.02rem;
}

.rshof-profile-journey__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.rshof-profile-journey__link,
.rshof-profile-journey__link:visited {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 9px 14px;
    color: #fff;
    background: var(--rshof-journey-navy);
    border: 1px solid var(--rshof-journey-navy);
    border-radius: 999px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
}

.rshof-profile-journey__link:hover,
.rshof-profile-journey__link:focus-visible {
    color: var(--rshof-journey-navy);
    background: var(--rshof-journey-gold);
    border-color: var(--rshof-journey-gold);
}

.rshof-profile-journey__link--next {
    background: var(--rshof-journey-gold-deep);
    border-color: var(--rshof-journey-gold-deep);
}

.rshof-profile-directory-search {
    margin: 0 0 30px;
    padding: 22px;
    color: #fff;
    background: linear-gradient(135deg, var(--rshof-journey-navy) 0%, #203d4a 100%);
    border: 1px solid rgba(228, 213, 187, .55);
    border-radius: 22px;
    box-shadow: var(--rshof-journey-shadow);
}

.rshof-profile-directory-search label {
    display: block;
    margin: 0 0 10px;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 800;
}

.rshof-profile-directory-search div {
    display: flex;
    gap: 10px;
}

.rshof-profile-directory-search input {
    min-width: 0;
    flex: 1 1 16rem;
    min-height: 46px;
    padding: 10px 14px;
    color: var(--rshof-journey-ink);
    background: #fff;
    border: 1px solid transparent;
    border-radius: 12px;
}

.rshof-profile-directory-search button {
    min-height: 46px;
    padding: 10px 16px;
    color: var(--rshof-journey-navy);
    background: var(--rshof-journey-gold);
    border: 1px solid var(--rshof-journey-gold);
    border-radius: 12px;
    font-weight: 800;
}

/* Directory voting: one deliberate submit for all selected or adjusted profiles. */
.rshof-vote-batch-notice {
    margin: 0 0 22px;
    padding: 14px 16px;
    color: #17433a;
    background: #eaf6ef;
    border: 1px solid #a6d8bd;
    border-radius: 14px;
    font-weight: 700;
}

.rshof-voting-batch-form {
    margin: 0;
}

.rshof-voting-directory--batch {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.rshof-vote-card--batch {
    display: flex;
    flex-direction: column;
    min-height: 172px;
    padding: 18px;
    color: var(--rshof-journey-ink);
    background: #fff;
    border: 1px solid var(--rshof-journey-line);
    border-radius: 18px;
    box-shadow: 0 8px 22px rgba(21, 42, 52, .07);
}

.rshof-vote-card--batch > header {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    align-items: start;
}

.rshof-vote-card--batch > header > span {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    color: var(--rshof-journey-navy);
    background: var(--rshof-journey-cream);
    border: 1px solid var(--rshof-journey-line);
    border-radius: 50%;
    font-weight: 800;
}

.rshof-vote-card--batch h3 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.2;
}

.rshof-vote-card--batch h3 a {
    color: inherit;
    text-decoration: none;
}

.rshof-vote-card--batch header p {
    margin: 4px 0 0;
    color: var(--rshof-journey-muted);
    font-size: .86rem;
}

.rshof-vote-card--batch .rshof-vote-select {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: auto 0 0;
    padding-top: 16px;
    border-top: 1px solid var(--rshof-journey-line);
    color: var(--rshof-journey-muted);
    font-size: .86rem;
    font-weight: 700;
}

.rshof-vote-card--batch select {
    min-height: 40px;
    min-width: 76px;
    padding: 7px 9px;
    color: var(--rshof-journey-ink);
    background: #fff;
    border: 1px solid #b8a783;
    border-radius: 10px;
    font-weight: 800;
}

.rshof-voting-batch-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 22px;
    padding: 18px 20px;
    color: #fff;
    background: var(--rshof-journey-navy);
    border: 1px solid var(--rshof-journey-navy);
    border-radius: 18px;
    box-shadow: var(--rshof-journey-shadow);
}

.rshof-voting-batch-actions p {
    margin: 0;
    font-size: .92rem;
    line-height: 1.45;
}

.rshof-voting-batch-actions .rshof-button {
    flex: 0 0 auto;
    color: var(--rshof-journey-navy);
    background: var(--rshof-journey-gold);
    border-color: var(--rshof-journey-gold);
}

/* Passport: every title is based on distinct, verifiable activity in 100-step ranges. */
.rshof-community-status {
    margin: 0 0 18px;
    padding: 24px;
    color: var(--rshof-journey-ink);
    background: var(--rshof-journey-cream);
    border: 1px solid var(--rshof-journey-line);
    border-radius: 22px;
    box-shadow: var(--rshof-journey-shadow);
}

.rshof-community-status__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
}

.rshof-community-status__head h4,
.rshof-community-status__head p {
    margin: 0;
}

.rshof-community-status__head h4 {
    margin-top: 4px;
    font-size: clamp(1.35rem, 2.4vw, 1.9rem);
    line-height: 1.05;
}

.rshof-community-status__head p {
    color: var(--rshof-journey-muted);
    font-size: .9rem;
}

.rshof-community-status__total {
    color: var(--rshof-journey-navy);
    font-size: 1.05rem;
    font-weight: 800;
    text-align: right;
}

.rshof-community-status__progress {
    display: block;
    height: 11px;
    margin: 18px 0 10px;
    overflow: hidden;
    background: #e7dcc7;
    border-radius: 999px;
}

.rshof-community-status__progress b {
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--rshof-journey-gold-deep), var(--rshof-journey-gold));
    border-radius: inherit;
}

.rshof-community-status__next {
    margin: 0;
    color: var(--rshof-journey-muted);
    font-size: .9rem;
}

.rshof-passport__activity-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.rshof-passport-activity {
    padding: 16px;
    color: var(--rshof-journey-ink);
    background: #fff;
    border: 1px solid var(--rshof-journey-line);
    border-radius: 16px;
}

.rshof-passport-activity strong,
.rshof-passport-activity span,
.rshof-passport-activity small {
    display: block;
}

.rshof-passport-activity strong {
    font-size: 1.45rem;
    line-height: 1;
}

.rshof-passport-activity span {
    margin-top: 7px;
    color: var(--rshof-journey-muted);
    font-size: .83rem;
    line-height: 1.3;
}

.rshof-passport-activity i {
    display: block;
    height: 7px;
    margin-top: 12px;
    overflow: hidden;
    background: #ebe1ce;
    border-radius: 999px;
}

.rshof-passport-activity i b {
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--rshof-journey-gold-deep), var(--rshof-journey-gold));
    border-radius: inherit;
}

.rshof-passport-activity small {
    margin-top: 8px;
    color: var(--rshof-journey-ink);
    font-size: .76rem;
    font-weight: 700;
    line-height: 1.25;
}

.rshof-announcement__button--checkin {
    color: var(--rshof-journey-navy) !important;
    background: var(--rshof-journey-gold) !important;
    border-color: var(--rshof-journey-gold) !important;
    font-weight: 800 !important;
}

.rshof-mobile-menu-extra__checkin {
    color: var(--rshof-journey-navy) !important;
    background: var(--rshof-journey-gold) !important;
    border-color: var(--rshof-journey-gold) !important;
    font-weight: 800 !important;
}

.rshof-passport__activity-note {
    margin: -6px 0 20px;
    color: var(--rshof-journey-muted);
    font-size: .83rem;
    line-height: 1.45;
}

/* News images: preserve the complete subject inside a consistent editorial frame. */
.rshof-news-card__media > img.rshof-media-image--news {
    min-width: 0 !important;
    min-height: 0 !important;
    max-width: 100% !important;
    max-height: 100% !important;
}

.rshof-news-single__image {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    aspect-ratio: 16 / 9;
    background:
        radial-gradient(circle at 50% 20%, rgba(215, 168, 79, .16), transparent 46%),
        var(--rshof-journey-navy);
}

.rshof-news-single__image > img {
    display: block;
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    object-fit: contain;
    object-position: var(--rshof-media-focus, 50% 18%);
}

.rshof-news-single__image .rshof-media-credit {
    margin: 0;
    padding: 8px 12px;
    color: rgba(255, 255, 255, .82);
    background: rgba(15, 32, 40, .88);
    font-size: .78rem;
    line-height: 1.3;
}

.rshof-news-single__image .rshof-media-credit a {
    color: var(--rshof-journey-gold);
}

/* Top 100 in the Sommerhaus 2026 visual language: dark editorial lead and warm panels. */
.rshof-ranking--hall {
    max-width: 1180px;
    margin-inline: auto;
    padding: clamp(18px, 3vw, 34px);
    color: var(--rshof-journey-ink);
    background: var(--rshof-journey-cream);
    border: 1px solid var(--rshof-journey-line);
    border-radius: 30px;
    box-shadow: var(--rshof-journey-shadow);
}

.rshof-ranking--hall .rshof-hall-heading {
    margin: 0 0 24px;
    padding: clamp(30px, 6vw, 64px);
    color: #fff;
    background:
        radial-gradient(circle at 90% 8%, rgba(215, 168, 79, .34), transparent 31%),
        linear-gradient(135deg, var(--rshof-journey-navy-deep), #274958);
    border: 1px solid rgba(228, 213, 187, .35);
    border-radius: 30px;
}

.rshof-ranking--hall .rshof-hall-heading .rshof-eyebrow,
.rshof-ranking--hall .rshof-hall-heading h2,
.rshof-ranking--hall .rshof-hall-heading p {
    color: #fff;
}

.rshof-ranking--hall .rshof-hall-heading h2 {
    max-width: 15ch;
    margin: 6px 0 16px;
    font-family: "Iowan Old Style", Baskerville, "Times New Roman", serif;
    font-size: clamp(2.15rem, 5vw, 4.4rem);
    font-weight: 600;
    letter-spacing: -.045em;
    line-height: .95;
}

.rshof-ranking--hall .rshof-hall-heading > p:not(.rshof-eyebrow) {
    max-width: 62ch;
    color: rgba(255, 255, 255, .86);
}

.rshof-ranking--hall .rshof-ranking__profile-request {
    display: inline-flex;
    margin-top: 12px;
    padding: 10px 14px;
    color: var(--rshof-journey-navy);
    background: var(--rshof-journey-gold);
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
}

.rshof-ranking--hall .rshof-hall-champion,
.rshof-ranking--hall .rshof-hall-podium,
.rshof-ranking--hall .rshof-hall-tier,
.rshof-ranking--hall .rshof-hall-register {
    margin-top: 20px;
    padding: clamp(22px, 3vw, 34px);
    color: var(--rshof-journey-ink);
    background: #fff;
    border: 1px solid var(--rshof-journey-line);
    border-radius: 22px;
    box-shadow: 0 10px 28px rgba(21, 42, 52, .06);
}

.rshof-ranking--hall .rshof-hall-champion {
    padding: 0;
    overflow: hidden;
    background: var(--rshof-journey-navy);
    border-color: var(--rshof-journey-navy);
}

.rshof-ranking--hall .rshof-hall-champion__heading {
    padding: 26px 30px 0;
}

.rshof-ranking--hall .rshof-hall-champion__heading h3,
.rshof-ranking--hall .rshof-hall-champion__heading .rshof-eyebrow {
    color: #fff;
}

.rshof-ranking--hall .rshof-hall-champion .rshof-champion {
    margin: 0;
    border-radius: 0;
    box-shadow: none;
}

.rshof-ranking--hall .rshof-hall-podium__heading,
.rshof-ranking--hall .rshof-hall-tier__heading {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 16px 38px;
    align-items: end;
    margin-bottom: 20px;
}

.rshof-ranking--hall .rshof-hall-podium__heading h3,
.rshof-ranking--hall .rshof-hall-tier__heading h3 {
    margin: 4px 0 0;
    color: var(--rshof-journey-ink);
    font-family: "Iowan Old Style", Baskerville, "Times New Roman", serif;
    font-size: clamp(1.65rem, 3vw, 2.5rem);
    line-height: 1;
}

.rshof-ranking--hall .rshof-hall-podium__heading > p,
.rshof-ranking--hall .rshof-hall-tier__heading > p {
    margin: 0;
    color: var(--rshof-journey-muted);
    line-height: 1.5;
}

.rshof-ranking--hall .rshof-hall-podium__grid {
    gap: 18px;
}

.rshof-ranking--hall .rshof-hall-podium .rshof-star-card,
.rshof-ranking--hall .rshof-hall-tier__list {
    background: #fff;
    border-color: var(--rshof-journey-line);
}

.rshof-ranking--hall .rshof-ranking-list {
    overflow: hidden;
    border: 1px solid var(--rshof-journey-line);
    border-radius: 16px;
}

.rshof-ranking--hall .rshof-ranking-row {
    color: var(--rshof-journey-ink);
    background: #fff;
    border-color: var(--rshof-journey-line);
}

.rshof-ranking--hall .rshof-ranking-row:nth-child(even) {
    background: #fdf9f1;
}

.rshof-ranking--hall .rshof-ranking-row:hover {
    background: #f8edd8;
}

.rshof-ranking--hall .rshof-ranking-row__rank strong,
.rshof-ranking--hall .rshof-ranking-row__identity strong,
.rshof-ranking--hall .rshof-ranking-row__points strong {
    color: var(--rshof-journey-ink);
}

.rshof-ranking--hall .rshof-ranking-row__identity small,
.rshof-ranking--hall .rshof-ranking-row__points span {
    color: var(--rshof-journey-muted);
}

.rshof-ranking--hall .rshof-hall-register {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    background: linear-gradient(135deg, #fff 0%, #f7ead5 100%);
}

.rshof-ranking--hall .rshof-hall-register__number {
    color: var(--rshof-journey-gold-deep);
    font-family: "Iowan Old Style", Baskerville, "Times New Roman", serif;
    font-size: clamp(4rem, 10vw, 7rem);
    font-weight: 700;
    letter-spacing: -.06em;
    line-height: .75;
}

.rshof-ranking--hall .rshof-hall-register h3 {
    margin: 4px 0 10px;
    color: var(--rshof-journey-ink);
    font-family: "Iowan Old Style", Baskerville, "Times New Roman", serif;
    font-size: clamp(1.5rem, 3vw, 2.35rem);
    line-height: 1.04;
}

.rshof-ranking--hall .rshof-hall-register p {
    color: var(--rshof-journey-muted);
}

.rshof-ranking--hall .rshof-hall-register__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.rshof-ranking--hall .rshof-hall-register__actions .rshof-button--primary {
    color: var(--rshof-journey-navy);
    background: var(--rshof-journey-gold);
    border-color: var(--rshof-journey-gold);
}

@media (max-width: 760px) {
    .rshof-profile-journey,
    .rshof-community-status__head,
    .rshof-voting-batch-actions,
    .rshof-ranking--hall .rshof-hall-register {
        grid-template-columns: 1fr;
    }

    .rshof-profile-journey__links,
    .rshof-community-status__head,
    .rshof-voting-batch-actions {
        align-items: stretch;
        justify-content: stretch;
    }

    .rshof-profile-journey__link,
    .rshof-voting-batch-actions .rshof-button {
        justify-content: center;
        width: 100%;
    }

    .rshof-profile-directory-search div,
    .rshof-voting-batch-actions {
        flex-direction: column;
    }

    .rshof-passport__activity-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rshof-ranking--hall {
        padding: 12px;
        border-radius: 22px;
    }

    .rshof-ranking--hall .rshof-hall-heading {
        padding: 30px 24px;
        border-radius: 22px;
    }

    .rshof-ranking--hall .rshof-hall-podium__heading,
    .rshof-ranking--hall .rshof-hall-tier__heading {
        grid-template-columns: 1fr;
    }

    .rshof-ranking--hall .rshof-hall-champion__heading {
        padding: 22px 22px 0;
    }
}

@media (max-width: 460px) {
    .rshof-voting-directory--batch,
    .rshof-passport__activity-grid {
        grid-template-columns: 1fr;
    }
}
