:root {
    --navy: #071422;
    --navy-2: #0d2032;
    --olive: #617f22;
    --olive-dark: #4f6819;
    --olive-soft: #eef2df;
    --gold: #efc340;
    --paper: #fffdfa;
    --surface: #f4f1e9;
    --ink: #071422;
    --muted: #66717a;
    --line: #dcd8ce;
    --shadow: 0 18px 46px rgba(20, 24, 24, .14);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--surface);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

.site-hero {
    position: relative;
    min-height: 238px;
    padding: 28px 22px 42px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background-image: url('/_shared/header.webp');
    background-repeat: no-repeat;
    background-position: 53% center;
    background-size: cover;
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(3, 12, 18, .18) 0%, rgba(3, 12, 18, .2) 42%, rgba(3, 12, 18, .78) 100%),
        linear-gradient(90deg, rgba(3, 12, 18, .28), transparent 70%);
}

.brand {
    position: relative;
    z-index: 1;
    width: 168px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .28));
}

.brand img {
    width: 100%;
    height: auto;
}

.page-shell {
    padding: 0 12px 28px;
    background:
        linear-gradient(180deg, var(--navy) 0, var(--navy) 36px, var(--surface) 36px, var(--surface) 100%);
}

.route-layout {
    width: min(100%, 1180px);
    margin: 0 auto;
}

.route-card,
.community-card,
.comment-card,
.simple-message {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.route-card {
    position: relative;
    z-index: 2;
    margin: 0 auto 18px;
    padding: 20px;
    overflow: hidden;
    background: var(--paper);
    transform: translateY(-32px);
}

.route-heading {
    margin-bottom: 18px;
}

.sector {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    margin: 0 0 13px;
    padding: 7px 12px 6px;
    border-radius: 7px;
    background: var(--olive);
    color: #fff;
    font-size: .83rem;
    font-weight: 800;
    letter-spacing: .03em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.route-title-row {
    --grade-size: 82px;
    --title-gap: 12px;
    display: grid;
    grid-template-columns: minmax(0, calc(100% - var(--grade-size) - var(--title-gap))) var(--grade-size);
    gap: var(--title-gap);
    align-items: center;
}

.route-title-row > h1 {
    min-width: 0;
}

h1,
h2,
p {
    margin-top: 0;
}

.route-title-row h1 {
    margin: 0;
    overflow-wrap: normal;
    word-break: normal;
    color: var(--navy);
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-size: clamp(2.75rem, 13vw, 4.8rem);
    font-weight: 900;
    letter-spacing: .015em;
    line-height: .88;
    text-transform: uppercase;
    white-space: normal;
}

.grade-badge {
    display: grid;
    place-items: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: .02em;
    box-shadow: 0 8px 18px rgba(7, 20, 34, .18);
}

.route-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
    margin: 0 0 18px;
    padding: 2px 0 0;
}

.route-fact {
    min-width: 0;
    margin: 0;
    padding: 8px 4px;
    text-align: center;
}

.fact-icon {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    margin: 0 auto 6px;
    color: var(--olive);
}

.fact-icon svg {
    width: 100%;
    height: 100%;
}

.route-fact dd {
    margin: 0;
    color: var(--navy);
    font-size: 1rem;
    font-weight: 850;
    line-height: 1.16;
}

.route-fact dt {
    margin-top: 3px;
    color: var(--muted);
    font-size: .72rem;
    line-height: 1.2;
}

.route-gallery {
    margin: 0 0 20px;
}

.main-photo {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 16px;
    background: transparent;
}

.main-photo img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 78vh;
    margin: 0 auto;
    object-fit: contain;
}

.thumbs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin-top: 10px;
}

.thumb {
    padding: 0;
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 10px;
    background: none;
    cursor: pointer;
    opacity: .76;
    transition: opacity .18s ease, border-color .18s ease, transform .18s ease;
}

.thumb:hover,
.thumb:focus-visible,
.thumb.is-active {
    border-color: var(--olive);
    opacity: 1;
    outline: none;
    transform: translateY(-1px);
}

.thumb img {
    width: 100%;
    aspect-ratio: 1.1;
    object-fit: cover;
}

.no-photo {
    display: grid;
    place-items: center;
    gap: 8px;
    min-height: 210px;
    margin-bottom: 20px;
    padding: 24px;
    border: 2px dashed #c7c3b9;
    border-radius: 16px;
    background: #f8f6ef;
    color: var(--muted);
    text-align: center;
}

.no-photo span {
    width: 42px;
    color: var(--olive);
}

.no-photo p {
    margin: 0;
}

.warning {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 11px;
    align-items: start;
    margin: 0 0 24px;
    padding: 14px;
    border: 1px solid #e0a94f;
    border-radius: 14px;
    background: #fff4d9;
    color: #34270f;
}

.warning-icon {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    color: #b77c18;
}

.warning p {
    margin: 0;
    font-size: .92rem;
}

.warning strong {
    display: block;
    margin-bottom: 2px;
    color: var(--navy);
}

.content-section {
    margin-top: 24px;
}

.content-section h2,
.tip-card h2,
.community-card h2,
.community-card h3,
.comment-card h2 {
    margin: 0;
    color: var(--navy);
    font-size: 1.04rem;
    font-weight: 850;
    letter-spacing: .01em;
    line-height: 1.2;
    text-transform: uppercase;
}

.content-section h2,
.community-card h2,
.community-card h3 {
    display: flex;
    gap: 9px;
    align-items: center;
}

.content-section h2 > span,
.community-card h2 > span,
.community-card h3 > span {
    flex: 0 0 auto;
    width: 25px;
    color: var(--olive);
}

.description-section p {
    margin: 12px 0 0;
    color: #20282f;
    font-size: .97rem;
    line-height: 1.62;
}

.tip-card {
    display: grid;
    grid-template-columns: 35px 1fr;
    gap: 12px;
    margin-top: 24px;
    padding: 16px;
    border: 1px solid #cdd9aa;
    border-radius: 15px;
    background: linear-gradient(135deg, #f8f9ee, #eff3df);
}

.tip-icon {
    width: 31px;
    color: var(--olive);
}

.tip-card h2 {
    color: var(--olive-dark);
}

.tip-card p {
    margin: 8px 0 0;
    color: #2e352b;
    font-size: .93rem;
    line-height: 1.55;
}

.facts-section ul {
    display: grid;
    gap: 9px;
    margin: 13px 0 0;
    padding: 0;
    list-style: none;
}

.facts-section li {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 8px;
    align-items: start;
    color: #30393f;
    font-size: .92rem;
}

.facts-section li span {
    width: 18px;
    color: var(--olive);
}

.route-sidebar {
    display: grid;
    gap: 18px;
    margin-top: -12px;
}

.community-card,
.comment-card {
    padding: 21px 20px;
}

.community-card {
    background:
        radial-gradient(circle at 85% 15%, rgba(97, 127, 34, .14), transparent 34%),
        linear-gradient(145deg, #06111d, #0a1d2e);
    color: #fff;
}

.community-card h2,
.community-card h3 {
    color: #fff;
}

.empty-rating {
    display: grid;
    gap: 7px;
    margin-top: 20px;
}

.empty-stars {
    display: flex;
    gap: 6px;
    color: var(--gold);
}

.empty-stars svg {
    width: 27px;
    height: 27px;
}

.score-stars {
    position: relative;
    width: max-content;
    color: var(--gold);
    font-family: Arial, sans-serif;
    font-size: 2.35rem;
    letter-spacing: .12em;
    line-height: 1;
}

.score-stars-base {
    color: rgba(255, 205, 60, .35);
}

.score-stars-fill {
    position: absolute;
    inset: 0 auto 0 0;
    overflow: hidden;
    white-space: nowrap;
}

.empty-rating strong {
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-size: 2.55rem;
    font-weight: 800;
    letter-spacing: .02em;
    line-height: 1;
}

.empty-rating p {
    margin: 0;
    color: #bdc7d0;
    font-size: .88rem;
}

.community-grade-block {
    display: grid;
    gap: 5px;
    margin-top: 14px;
}

.community-card h3 > span {
    color: var(--olive);
}

.empty-rating .community-grade-range {
    color: var(--gold);
    font-size: 1.9rem;
}

.comment-card {
    background: var(--paper);
}

.comment-heading {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 10px;
    align-items: start;
    margin-bottom: 18px;
}

.comment-heading > span {
    width: 30px;
    color: var(--olive);
}

.comment-heading p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: .88rem;
}

.comment-card form {
    display: grid;
    gap: 15px;
}

.comment-card label,
.rating-field {
    display: grid;
    gap: 7px;
    margin: 0;
    padding: 0;
    border: 0;
    color: var(--navy);
    font-size: .9rem;
    font-weight: 700;
}

.comment-card label span,
.rating-field legend {
    padding: 0;
}

.comment-card small {
    color: var(--muted);
    font-size: .78rem;
    font-weight: 500;
}

.comment-card input,
.comment-card select,
.comment-card textarea {
    width: 100%;
    border: 1px solid #d5d0c7;
    border-radius: 10px;
    background: #fff;
    color: var(--ink);
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.comment-card input,
.comment-card select {
    min-height: 46px;
    padding: 10px 12px;
}

.comment-card textarea {
    min-height: 76px;
    padding: 10px 12px;
    resize: vertical;
}

.comment-card input:focus,
.comment-card select:focus,
.comment-card textarea:focus {
    border-color: var(--olive);
    box-shadow: 0 0 0 3px rgba(97, 127, 34, .13);
}

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}

.star-rating input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.star-rating label {
    display: block;
    color: #b6bcc1;
    font-size: 2.45rem;
    font-weight: 400;
    line-height: 1;
    cursor: pointer;
    transition: color .15s ease, transform .15s ease;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
    color: var(--gold);
    transform: translateY(-1px);
}

.comment-card button {
    min-height: 48px;
    border: 0;
    border-radius: 9px;
    background: linear-gradient(180deg, #6a8b27, #58751f);
    color: #fff;
    font-weight: 850;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.comment-card button:disabled {
    cursor: not-allowed;
    opacity: .82;
}

.form-notice {
    margin: -3px 0 0;
    color: var(--muted);
    font-size: .78rem;
    line-height: 1.45;
    text-align: center;
}

.form-notice.is-error,
.form-notice.is-success {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 9px;
    align-items: center;
    padding: 11px 12px;
    border-radius: 10px;
    font-weight: 800;
    text-align: left;
}

.form-notice.is-error {
    border: 1px solid #d55a4a;
    background: #fff0ed;
    color: #9b2b1f;
}

.form-notice.is-success {
    border: 1px solid #9fbc5c;
    background: #eef6df;
    color: #31450f;
}

.form-notice.is-error::before,
.form-notice.is-success::before {
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    color: #fff;
    font-weight: 900;
    line-height: 1;
}

.form-notice.is-error::before {
    content: "!";
    background: #b52b1d;
}

.form-notice.is-success::before {
    content: "✓";
    background: #58751f;
}

.form-notice.is-flashing {
    animation: form-notice-flash .72s ease-out;
}

@keyframes form-notice-flash {
    0%, 100% {
        transform: translateY(0);
        box-shadow: none;
    }

    28% {
        transform: translateY(-1px);
        box-shadow: 0 0 0 4px rgba(213, 90, 74, .2);
    }
}

.site-footer {
    padding: 30px 18px 34px;
    background: var(--navy);
    color: #dce5ed;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(100%, 720px);
    margin: 0 auto;
}

.footer-item {
    min-width: 0;
    min-height: 72px;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: #eef4f8;
    font-size: .68rem;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
}

.footer-item + .footer-item {
    border-left: 1px solid rgba(255, 255, 255, .14);
}

.rumia-link img {
    width: 90px;
    height: auto;
}

.footer-icon {
    width: 25px;
    color: #8eac35;
}

.rules-link strong {
    font-size: .7rem;
}

.footer-copy {
    max-width: 520px;
    margin: 18px auto 0;
    color: #aebbc6;
    font-size: .72rem;
    text-align: center;
}

.simple-page .page-shell {
    min-height: 420px;
    padding-bottom: 58px;
}

.simple-message {
    width: min(100%, 680px);
    margin: 0 auto;
    padding: 32px 24px;
    background: var(--paper);
    text-align: center;
    transform: translateY(-32px);
}

.simple-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: var(--olive-soft);
    color: var(--olive);
}

.simple-icon svg {
    width: 30px;
}

.simple-message .eyebrow {
    margin-bottom: 5px;
    color: var(--olive);
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.simple-message h1 {
    margin: 0;
    color: var(--navy);
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-size: clamp(2.3rem, 11vw, 4.6rem);
    letter-spacing: .015em;
    line-height: .95;
    text-transform: uppercase;
}

.simple-message p:last-child {
    max-width: 520px;
    margin: 18px auto 0;
    color: #3a454d;
}

@media (min-width: 560px) {
    .site-hero {
        min-height: 300px;
        padding: 38px calc(50% - 260px) 54px;
        background-position: center 48%;
    }

    .brand {
        width: 205px;
    }

    .page-shell {
        padding-left: 20px;
        padding-right: 20px;
    }

    .route-card {
        max-width: 720px;
        padding: 28px;
    }

    .grade-badge {
        width: 84px;
        height: 84px;
        font-size: 2.3rem;
    }

    .main-photo img {
        max-height: 76vh;
    }

    .community-card,
    .comment-card {
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
        padding: 26px;
    }
}

@media (min-width: 900px) {
    .site-hero {
        min-height: 350px;
        padding-left: max(36px, calc(50% - 560px));
    }

    .brand {
        width: 225px;
    }

    .page-shell {
        padding: 0 28px 46px;
        background: linear-gradient(180deg, var(--navy) 0, var(--navy) 48px, var(--surface) 48px, var(--surface) 100%);
    }

    .route-layout {
        display: grid;
        grid-template-columns: minmax(0, 720px) minmax(310px, 390px);
        gap: 22px;
        align-items: start;
    }

    .route-card {
        max-width: none;
        margin-bottom: 0;
        padding: 30px;
        transform: translateY(-42px);
    }

    .route-sidebar {
        position: sticky;
        top: 18px;
        margin-top: 0;
        transform: translateY(-42px);
    }

    .community-card,
    .comment-card {
        max-width: none;
        margin: 0;
    }

    .main-photo img {
        max-height: 72vh;
    }

    .route-facts {
        gap: 14px;
    }

    .route-fact {
        padding: 10px;
    }

    .site-footer {
        padding-top: 34px;
    }
}

@media (max-width: 350px) {
    .route-card {
        padding-left: 16px;
        padding-right: 16px;
    }

    .route-title-row {
        --grade-size: 58px;
        --title-gap: 7px;
    }

    .route-title-row h1 {
        font-size: 2.48rem;
        letter-spacing: 0;
    }

    .grade-badge {
        width: 58px;
        height: 58px;
        font-size: 1.7rem;
    }

    .route-fact dd {
        font-size: .9rem;
    }

    .route-fact dt {
        font-size: .66rem;
    }
}

/* Refinements for the route header */
.site-hero::after {
    content: "";
    position: absolute;
    z-index: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 92px;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(244, 241, 233, 0) 0%,
        rgba(244, 241, 233, .08) 22%,
        rgba(244, 241, 233, .38) 58%,
        rgba(244, 241, 233, .86) 86%,
        var(--surface) 100%
    );
}

.page-shell {
    background: var(--surface);
}

.sector {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    box-shadow: inset 0 1px rgba(255, 255, 255, .18), 0 5px 12px rgba(79, 104, 25, .12);
    background-color: var(--olive);
    background-image:
        linear-gradient(115deg, rgba(255,255,255,.09), transparent 38%, rgba(20,42,10,.08) 72%, transparent),
        repeating-linear-gradient(165deg, rgba(255,255,255,.045) 0 1px, transparent 1px 5px),
        radial-gradient(circle at 18% 28%, rgba(255,255,255,.11) 0 1px, transparent 1.6px),
        radial-gradient(circle at 78% 72%, rgba(15,39,6,.12) 0 1px, transparent 1.8px);
    background-size: auto, auto, 16px 14px, 21px 19px;
}

.sector::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: .32;
    background: linear-gradient(95deg, transparent 0 20%, rgba(255,255,255,.13) 34%, transparent 47% 100%);
    transform: translateX(-55%);
}

.route-title-row h1 {
    font-size: clamp(2.55rem, 12.1vw, 4.7rem);
}

.route-title-row.title-single-word h1 {
    white-space: nowrap;
}

.route-title-row.title-multi-word h1 {
    overflow-wrap: break-word;
    text-wrap: balance;
}


.route-title-row.title-word-long h1 {
    font-size: clamp(2.18rem, 10.3vw, 4rem);
}

.route-title-row.title-single-word.title-word-long h1 {
    font-size: clamp(1.92rem, 8.8vw, 3.45rem);
}

.route-title-row.title-long h1 {
    font-size: clamp(2.12rem, 9.4vw, 3.85rem);
    line-height: .92;
    white-space: normal;
}

.route-title-row.title-word-xlong h1,
.route-title-row.title-long.title-word-long h1 {
    font-size: clamp(1.9rem, 8.4vw, 3.42rem);
    line-height: .94;
}

.route-title-row.title-single-word.title-word-xlong h1 {
    font-size: clamp(1.38rem, 6.4vw, 2.5rem);
}

.route-title-row.title-xlong h1 {
    font-size: clamp(1.78rem, 7.7vw, 3.15rem);
    line-height: .96;
    white-space: normal;
}

.route-title-row.title-word-xxlong h1 {
    overflow-wrap: anywhere;
    white-space: normal;
    font-size: clamp(1.08rem, 5.2vw, 2rem);
    line-height: 1;
}

.grade-badge {
    width: var(--grade-size);
    height: var(--grade-size);
    padding: 0 5px;
    font-size: 2.12rem;
    line-height: .9;
    white-space: nowrap;
    box-shadow: 0 11px 24px rgba(7, 20, 34, .22), inset 0 1px rgba(255, 255, 255, .08);
}

.fact-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 4px;
    filter: drop-shadow(0 3px 4px rgba(79, 104, 25, .18));
}

.fact-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 559px) {
    .site-hero {
        min-height: 252px;
        padding-bottom: 58px;
        background-position: 36% center;
    }

    .hero-shade {
        background:
            linear-gradient(180deg, rgba(3, 12, 18, .13) 0%, rgba(3, 12, 18, .17) 48%, rgba(3, 12, 18, .45) 76%, rgba(3, 12, 18, .14) 100%),
            linear-gradient(90deg, rgba(3, 12, 18, .38), rgba(3, 12, 18, .04) 74%);
    }

    .route-card {
        transform: translateY(-42px);
    }
}

@media (min-width: 560px) {
    .site-hero {
        background-position: 61% 48%;
    }

    .route-title-row {
        --grade-size: 94px;
    }

    .grade-badge {
        width: var(--grade-size);
        height: var(--grade-size);
        font-size: 2.48rem;
    }
}

@media (min-width: 900px) {
    .site-hero {
        background-position: 58% 47%;
    }

    .page-shell {
        background: var(--surface);
    }
}

@media (max-width: 350px) {
    .route-title-row {
        --grade-size: 68px;
    }

    .route-title-row h1 {
        font-size: 2.22rem;
    }

    .route-title-row.title-long h1 {
        font-size: 1.88rem;
    }

    .route-title-row.title-word-long h1,
    .route-title-row.title-word-xlong h1,
    .route-title-row.title-long.title-word-long h1 {
        font-size: 1.68rem;
    }

    .route-title-row.title-single-word.title-word-long h1 {
        font-size: 1.44rem;
    }

    .route-title-row.title-single-word.title-word-xlong h1 {
        font-size: 1.06rem;
    }

    .route-title-row.title-word-xxlong h1 {
        font-size: .88rem;
    }

    .route-title-row.title-xlong h1 {
        font-size: 1.58rem;
    }

    .grade-badge {
        width: var(--grade-size);
        height: var(--grade-size);
        font-size: 1.72rem;
    }
}

@media (max-width: 350px) {
    .fact-icon {
        width: 36px;
        height: 36px;
    }
}


/* Optional route author shown below the title. */
.route-author {
    margin: 8px 0 0;
    color: #334253;
    font-size: clamp(.82rem, 3.2vw, .96rem);
    font-weight: 650;
    line-height: 1.3;
}

.route-author span {
    color: #718092;
    font-weight: 500;
}

.rules-message {
    text-align: left;
}

.rules-message h1 {
    text-align: center;
}

.rules-content {
    display: grid;
    gap: 18px;
    max-width: 560px;
    margin: 24px auto 0;
    color: #2f3a42;
    font-size: 1.05rem;
    line-height: 1.65;
}

.rules-content p {
    margin: 0;
}

.rules-content a {
    color: var(--olive-dark);
    font-weight: 850;
    text-decoration-color: rgba(79, 104, 25, .38);
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.rules-content a:hover,
.rules-content a:focus-visible {
    color: var(--navy);
    text-decoration-color: var(--gold);
}

.form-success,
.form-error,
.field-error {
    margin: 0;
    font-size: .84rem;
    line-height: 1.45;
}

.form-success {
    padding: 10px 12px;
    border-radius: 10px;
    background: #eef6df;
    color: #31450f;
    font-weight: 750;
}

.form-error,
.field-error {
    color: #9b2b1f;
    font-weight: 700;
}

.form-error {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 9px;
    align-items: start;
    padding: 11px 12px;
    border: 1px solid #d55a4a;
    border-radius: 10px;
    background: #fff0ed;
}

.form-error-icon {
    display: grid;
    place-items: center;
    width: 22px;
    color: #b52b1d;
}

.hp-field {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.comments-list {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.comments-list h3 {
    margin: 0;
    color: var(--navy);
    font-size: .98rem;
    font-weight: 850;
    text-transform: uppercase;
}

.comment-item {
    display: grid;
    gap: 7px;
    padding: 13px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
}

.comment-item header {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 10px;
    justify-content: space-between;
    color: var(--navy);
}

.comment-item time,
.comment-meta {
    color: var(--muted);
    font-size: .8rem;
}

.comment-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.comment-meta span {
    padding: 3px 7px;
    border-radius: 999px;
    background: var(--olive-soft);
    color: var(--olive-dark);
    font-weight: 800;
}

.comment-item p {
    margin: 0;
    color: #263039;
    font-size: .9rem;
}
