*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}:root {
    --baize: #1a5c35;
    --baize-d: #0f3d22;
    --baize-l: #236b3e;
    --wood: #1c1008;
    --wood-d: #110a04;
    --wood-l: #2e1a0a;
    --brass: #c49a3c;
    --brass-l: #d4aa52;
    --almond: #efe7da;
    --cream: #f5f0e8;
    --ivory: #faf6ee;
    --white: #fff;
    --text: #1c1008;
    --muted: #8a7c68;
    --border: #e0d8ca;
    --surface-hover: #faf7f2;

    --shadow-soft: rgba(28, 16, 8, 0.06);
    --shadow-modal: rgba(28, 16, 8, 0.25);
    --overlay-dark: rgba(28, 16, 8, 0.55);
    --baize-shadow: rgba(26, 92, 53, 0.25);
    --baize-soft: rgba(26, 92, 53, 0.1);
    --brass-soft: rgba(196, 154, 60, 0.12);
    --cream-muted: rgba(245, 240, 232, 0.5);

    --admin-brass-border: rgba(196, 154, 60, 0.2);
    --admin-brass-border-soft: rgba(196, 154, 60, 0.18);
    --admin-brass-border-strong: rgba(196, 154, 60, 0.35);
    --admin-text-muted: rgba(245, 240, 232, 0.4);
    --admin-text: rgba(245, 240, 232, 0.5);
    --admin-text-strong: rgba(245, 240, 232, 0.85);
    --admin-hover: rgba(255, 255, 255, 0.04);
    --admin-hover-strong: rgba(255, 255, 255, 0.05);

    --danger: #7b1e12;
    --danger-l: #9b2516;
    --danger-soft: #b03020;
    --danger-hover: #c0392b;
    --danger-soft-bg: rgba(176, 48, 32, 0.1);
    --danger-shadow: rgba(123, 30, 18, 0.3);
    --success-bg: #eef7ef;
    --success-border: #b8d7be;
    --success-text: #1d5b2b;
    --success-accent: #2f7d3c;
    --success-shadow: rgba(26, 92, 53, 0.12);
    --warning-bg: #fff7e6;
    --warning-border: #e2c274;
    --warning-text: #6f4c10;
    --warning-accent: #b7791f;
    --warning-shadow: rgba(183, 121, 31, 0.12);
    --error-bg: #fbefed;
    --error-border: #e4beb8;
    --error-text: #6b2118;
    --error-accent: #9b2516;
    --error-shadow: rgba(123, 30, 18, 0.12);

    --admin-bar-height: 34px;
    --page-width: 1160px;
    --page-padding: 40px;
    --content-xs: 440px;
    --content-sm: 640px;
    --content-md: 840px;

    --padding-card-horizontal: 2.5rem;
    --padding-card-vertical: 2.3rem;

    --surface-gradient-soft: radial-gradient(
            circle at 15% 20%,
            rgba(255, 255, 255, 0.03),
            transparent 18%
        ),
        radial-gradient(
            circle at 85% 25%,
            rgba(255, 255, 255, 0.03),
            transparent 18%
        ),
        linear-gradient(180deg, var(--white) 0%, var(--ivory) 100%);
}

@media (max-width: 1024px) {
    :root {
        --padding-card-horizontal: 1.2rem;
        --padding-card-vertical: 1.5rem;
    }
}
html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    color: var(--text);
    font-size: 15px;
    line-height: 1.65;
}
main {
    background: radial-gradient(
            circle at top,
            var(--brass-soft),
            transparent 30%
        ),
        linear-gradient(180deg, var(--cream) 0%, var(--almond) 100%);
}

.page,
.container {
    max-width: var(--page-width);
    margin: 0 auto;
    width: 100%;
}

.page {
    min-height: calc(100vh - 146px);
    padding-top: 3rem;
}

.page--centered {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
}

.aside-layout {
    display: grid;
    grid-template-columns: 1.15fr 1.6fr;
}

.js-clickable-row {
    cursor: pointer;
}

@media (max-width: 900px) {
    .aside-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1240px) {
    .page,
    .container {
        padding-left: var(--page-padding);
        padding-right: var(--page-padding);
    }
}

@media (max-width: 900px) {
    .page {
        min-height: calc(100vh - 120px);
        padding-top: 2.25rem;
    }
}

@media (max-width: 640px) {
    .page,
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .page {
        padding-top: 1.5rem;
    }
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.65rem;
    font-family: "DM Sans", sans-serif;
    font-size: 0.77rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 3px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn--brass {
    background: var(--brass);
    color: var(--wood);
}

.btn--brass:hover {
    background: var(--brass-l);
    box-shadow: 0 6px 24px rgba(196, 154, 60, 0.4);
    transform: translateY(-1px);
}

.btn--ghost {
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(245, 240, 232, 0.25);
}

.btn--ghost:hover {
    border-color: var(--cream);
    background: rgba(245, 240, 232, 0.06);
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--baize);
    margin-bottom: 1.5rem;
    transition: color 0.2s;
}

.back-button::before {
    content: "\2190";
    font-size: 0.85rem;
    transition: transform 0.2s;
}

.back-button:hover {
    color: var(--baize-l);
}

.back-button:hover::before {
    transform: translateX(-3px);
}
.table {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(28, 16, 8, 0.06);
    border-collapse: collapse;
    width: 100%;
}

.table__header {
    background: var(--ivory);
    border-bottom: 2px solid var(--border);
}

.table__row {
    transition: background 0.15s;
}

.table__body .table__row:hover {
    background: var(--ivory);
}

.table th {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    padding: 0.75rem 1.25rem;
    text-align: center;
    word-wrap: break-word;
}

.table td {
    padding: 0.75rem 1.1rem;
    font-size: 0.88rem;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    text-align: center;
}

/* Needs .table because else table td is a stronger selector */
.table .table__cell--nowrap {
    white-space: nowrap;
}

.table .table__cell--small {
    width: 1%;
}

.table .table__cell--left {
    text-align: left;
}

.table .table__cell--muted {
    color: var(--muted);
}

.table a {
    color: var(--text);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.15s;
}

.table a:hover {
    color: var(--baize);
}

.table--standings th,
.table--standings td {
    padding-left: 0.65rem;
    padding-right: 0.65rem;
}

.table--standings th {
    letter-spacing: 1.2px;
}

@media (max-width: 900px) {
    .table__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .table th,
    .table td {
        padding: 0.75rem 0.85rem;
    }

    .table--standings th,
    .table--standings td {
        padding-left: 0.55rem;
        padding-right: 0.55rem;
    }
}

@media (max-width: 640px) {
    .table th,
    .table td {
        padding: 8px 6px;
        font-size: 0.78rem;
    }

    .table__cell--left {
        white-space: normal;
        min-width: 100px;
    }
}
/* Form */
.form {
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
}

.form__grid {
    display: grid;
    gap: 1.25rem;
}

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

.form__grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.form__grid--mobile-1 {
    min-width: 0;
}

.form__section {
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
}

.form__group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.form__fieldset {
    min-width: 0;
    border: 0;
}

.form__fieldset > .form__label {
    margin-bottom: 0.45rem;
}

.form__label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
}

.form__input {
    width: 100%;
    padding: 0.7rem 1rem;
    font-family: "DM Sans", sans-serif;
    font-size: 0.88rem;
    color: var(--text);
    background: var(--ivory);
    border: 1px solid var(--border);
    border-radius: 4px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form__input:focus {
    border-color: var(--baize);
    box-shadow: 0 0 0 3px rgba(26, 92, 53, 0.1);
    background: #fff;
}

.form__input--textarea {
    resize: vertical;
    min-height: 180px;
    line-height: 1.7;
}

.form__input--error {
    border-color: #c0392b;
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.08);
}

.form__hint {
    margin: 0;
    font-size: 0.9rem;
    color: var(--muted);
}

.form__help {
    margin: 0.35rem 0 0;
    font-size: 0.82rem;
    line-height: 1.45;
    color: var(--muted);
}

.form__error {
    font-size: 0.75rem;
    color: #c0392b;
    margin: 0;
}

.form__options {
    display: flex;
    align-items: center;
}

.form__checks {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.form__check {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.82rem;
    color: var(--muted);
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
}

.form__check input[type="checkbox"] {
    -moz-appearance: none;
         appearance: none;
    -webkit-appearance: none;
    width: 15px;
    height: 15px;
    margin: 0;
    border: 1px solid var(--border);
    border-radius: 3px;
    background: var(--ivory);
    cursor: pointer;
    display: inline-grid;
    place-content: center;
}

.form__check input[type="checkbox"]::before {
    content: "";
    width: 9px;
    height: 9px;
    transform: scale(0);
    transition: transform 0.12s ease-in-out;
    background: var(--baize);
    border-radius: 2px;
}

.form__check input[type="checkbox"]:checked::before {
    transform: scale(1);
}

.form__radio-group {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    background: var(--ivory);
    border: 1px solid var(--border);
    border-radius: 6px;
}

.form__radio {
    position: relative;
    display: flex;
    min-width: 0;
    cursor: pointer;
}

.form__radio input[type="radio"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: pointer;
}

.form__radio-label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 42px;
    padding: 0.62rem 0.75rem;
    border: 1px solid transparent;
    border-radius: 4px;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 500;
    line-height: 1.25;
    text-align: center;
    transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s,
        color 0.2s;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
}

.form__radio:hover .form__radio-label {
    background: var(--surface-hover);
    color: var(--text);
}

.form__radio input[type="radio"]:checked + .form__radio-label {
    background: var(--baize);
    border-color: var(--baize);
    box-shadow: 0 4px 14px var(--baize-soft);
    color: var(--cream);
}

.form__radio input[type="radio"]:checked:hover + .form__radio-label {
    background: var(--baize-l);
    border-color: var(--baize-l);
    color: var(--cream);
}

.form__radio input[type="radio"]:focus-visible + .form__radio-label {
    outline: 2px solid var(--brass);
    outline-offset: 2px;
}

.form__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border);
}

.form__submit {
    display: inline-flex;
    align-items: center;
    padding: 0.7rem 1.65rem;
    font-family: "DM Sans", sans-serif;
    font-size: 0.77rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.2s;
    background: var(--baize);
    color: var(--cream);
}

.form__submit:hover {
    background: var(--baize-l);
    box-shadow: 0 4px 16px rgba(26, 92, 53, 0.25);
    transform: translateY(-1px);
}

.form__forgot {
    font-size: 0.75rem;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.form__forgot:hover {
    color: var(--baize);
}

.form__cancel {
    display: inline-flex;
    align-items: center;
    padding: 0.7rem 1.65rem;
    font-family: "DM Sans", sans-serif;
    font-size: 0.77rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 3px;
    border: 1px solid var(--border);
    color: var(--muted);
    background: transparent;
    transition: all 0.2s;
}

.form__cancel:hover {
    border-color: var(--muted);
    color: var(--text);
}

@media (max-width: 720px) {
    .form__grid--mobile-1 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .form__radio-group {
        grid-template-columns: 1fr;
    }
}
.img-full {
    display: block;
    width: 100%;
    height: auto;
}

.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-inline: 0;
}

.hidden {
    display: none !important;
}
.site-nav {
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--wood);
    border-bottom: 2px solid var(--brass);
}

.site-nav--admin-space {
    top: var(--admin-bar-height);
}

.site-nav__inner {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.site-nav__brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.site-nav__brand-ball {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #3a8c55, var(--baize-d));
    box-shadow: inset -3px -3px 5px rgba(0, 0, 0, 0.5);
    flex-shrink: 0;
}

.site-nav__brand-text {
    font-family: "Playfair Display", serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--cream);
    line-height: 1.1;
}

.site-nav__menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    min-width: 0;
}

.site-nav__toggle {
    display: none;
    align-items: center;
    gap: 0.75rem;
    margin-left: auto;
    padding: 0.65rem 0.9rem;
    border: 1px solid rgba(245, 240, 232, 0.2);
    border-radius: 999px;
    background: rgba(245, 240, 232, 0.05);
    color: var(--cream);
    font: inherit;
    cursor: pointer;
}

.site-nav__toggle-label {
    font-size: 0.72rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.site-nav__toggle-lines {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
}

.site-nav__toggle-line {
    width: 18px;
    height: 1px;
    background: currentColor;
}

.site-nav__list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
}

.site-nav__item {
    position: relative;
}

.site-nav__dropdown-item--nested {
    position: relative;
}

.site-nav__link,
.site-nav__dropdown-link,
.site-nav__submenu-link,
.site-nav__dropdown-button {
    text-decoration: none;
    font: inherit;
}

.site-nav__link {
    color: rgba(245, 240, 232, 0.7);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.2s;
    padding: 1rem 0;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.35rem;
    background: none;
    border: 0;
    cursor: pointer;
}

.site-nav__link:hover {
    color: var(--brass);
}

.site-nav__link--parent::after {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    opacity: 0.5;
    margin-left: 0.1rem;
}

.site-nav__dropdown,
.site-nav__submenu {
    display: none;
    position: absolute;
    z-index: 210;
    top: 100%;
    left: 0;
    min-width: 220px;
    padding: 0.5rem 0;
    margin: 0;
    list-style: none;
    background: var(--ivory);
    border: 1px solid var(--border);
    border-radius: 6px;
    box-shadow: 0 12px 32px rgba(28, 16, 8, 0.12);
}

.site-nav__dropdown--right {
    right: 0;
    left: auto;
}

.site-nav__submenu {
    top: 0;
    left: 100%;
}

.site-nav__item--open > .site-nav__dropdown,
.site-nav__dropdown-item--open > .site-nav__submenu {
    display: block;
}

.site-nav__dropdown-link,
.site-nav__submenu-link,
.site-nav__dropdown-button {
    display: block;
    padding: 0.7rem 1rem;
    color: var(--text);
    font-size: 0.8rem;
    white-space: nowrap;
    text-decoration: none;
    background: none;
    border: 0;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font: inherit;
}

.site-nav__dropdown-link--parent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    width: 100%;
}

.site-nav__dropdown-link--parent::after {
    content: "";
    flex: 0 0 auto;
    width: 5px;
    height: 5px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(-45deg);
    opacity: 0.5;
}

.site-nav__link--parent[aria-expanded="true"]::after {
    transform: rotate(225deg) translateY(-1px);
}

.site-nav__dropdown-link--parent[aria-expanded="true"]::after {
    transform: rotate(45deg);
}

.site-nav__dropdown-link:hover,
.site-nav__submenu-link:hover,
.site-nav__dropdown-button:hover {
    background: var(--cream);
    color: var(--baize);
}

.site-nav__logout-form {
    display: block;
    margin: 0;
}

@media (min-width: 1025px) and (max-width: 1200px) {
    .site-nav__submenu {
        left: auto;
        right: 100%;
    }
}

@media (min-width: 1025px) {
    .site-nav__item--dropdown:hover > .site-nav__dropdown,
    .site-nav__dropdown-item--nested:hover > .site-nav__submenu {
        display: block;
    }
}

@media (max-width: 1024px) {
    .site-nav__inner {
        min-height: 0;
        flex-wrap: wrap;
        gap: 1rem;
        padding-top: 0.9rem;
        padding-bottom: 0.9rem;
    }

    .site-nav__brand-text {
        font-size: 1.1rem;
    }

    .site-nav__toggle {
        display: inline-flex;
    }

    .site-nav__menu {
        display: none;
        width: 100%;
        flex-basis: 100%;
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
        border-top: 1px solid rgba(245, 240, 232, 0.12);
        max-height: calc(100vh - 68px - var(--admin-bar-height, 0px));
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .site-nav--open .site-nav__menu {
        display: flex;
    }

    .site-nav__list {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .site-nav__item {
        width: 100%;
        min-width: 0;
        border-bottom: 1px solid rgba(245, 240, 232, 0.08);
    }

    .site-nav__item:last-child {
        border-bottom: 0;
    }

    .site-nav__link {
        display: flex;
        width: 100%;
        justify-content: space-between;
        padding: 0.9rem 0.2rem 0.9rem 0;
        font-size: 0.76rem;
        text-align: left;
    }

    .site-nav__dropdown,
    .site-nav__submenu {
        display: none;
        position: static;
        min-width: 0;
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0 0 0.9rem;
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .site-nav__dropdown {
        margin-left: 0.85rem;
        width: calc(100% - 0.85rem);
    }

    .site-nav__submenu {
        margin-top: 0.45rem;
        margin-left: 0.85rem;
        width: calc(100% - 0.85rem);
        padding-left: 0.7rem;
        border-left: 1px solid rgba(245, 240, 232, 0.12);
    }

    .site-nav__item--open > .site-nav__dropdown,
    .site-nav__dropdown-item--open > .site-nav__submenu {
        display: block;
    }

    .site-nav__dropdown-link,
    .site-nav__submenu-link,
    .site-nav__dropdown-button {
        padding: 0.55rem 0.2rem 0.55rem 0;
        color: rgba(245, 240, 232, 0.76);
        font-size: 0.8rem;
        white-space: normal;
        background: none;
        border: 0;
        text-align: left;
    }

    .site-nav__link--parent::after,
    .site-nav__dropdown-link--parent::after {
        margin-right: 0.1rem;
    }

    .site-nav__dropdown-link:hover,
    .site-nav__submenu-link:hover,
    .site-nav__dropdown-button:hover {
        background: none;
        color: var(--brass);
    }

    .site-nav__dropdown-link--parent::after {
        transform: rotate(45deg) translateY(-1px);
        opacity: 0.6;
    }

    .site-nav__dropdown-link--parent[aria-expanded="true"]::after {
        transform: rotate(225deg) translateY(-1px);
    }
}

@media (max-width: 560px) {
    .site-nav__brand {
        gap: 0.75rem;
    }

    .site-nav__brand-ball {
        width: 30px;
        height: 30px;
    }

    .site-nav__toggle {
        padding: 0.55rem 0.75rem;
    }
}
.hero {
    position: relative;
    background: var(--wood);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(
            ellipse 80% 60% at 70% 50%,
            rgba(26, 92, 53, 0.6) 0%,
            transparent 70%
        ),
        radial-gradient(
            ellipse 55% 80% at 5% 85%,
            rgba(26, 92, 53, 0.4) 0%,
            transparent 60%
        ),
        var(--wood);
}

.hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.012) 0 1px,
            transparent 1px 40px
        ),
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.012) 0 1px,
            transparent 1px 40px
        );
}

.hero__orb {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 580px;
    height: 580px;
    border-radius: 50%;
    background: radial-gradient(
        circle at 38% 38%,
        #2e7d48,
        var(--baize-d) 55%,
        #081d10
    );
    box-shadow: inset -20px -20px 60px rgba(0, 0, 0, 0.7),
        0 0 100px rgba(26, 92, 53, 0.3);
    opacity: 0.4;
}

.hero__orb::after {
    content: "";
    position: absolute;
    top: 12%;
    left: 14%;
    width: 32%;
    height: 18%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(14px);
    transform: rotate(-20deg);
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 660px;
}

.hero__eyebrow {
    font-size: 0.68rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--brass);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero__eyebrow::before,
.hero__eyebrow::after {
    content: "";
    display: inline-block;
    width: 30px;
    height: 1px;
    background: var(--brass);
}

.hero__title {
    font-family: "Playfair Display", serif;
    font-size: clamp(3rem, 6vw, 5.2rem);
    font-weight: 900;
    line-height: 1;
    color: var(--cream);
    margin-bottom: 1.25rem;
}

.hero__title em {
    color: var(--brass);
    font-style: italic;
}

.hero__desc {
    font-size: 0.93rem;
    color: rgba(245, 240, 232, 0.5);
    max-width: 380px;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero__ctas {
    display: flex;
    gap: 0.9rem;
}

.hero__ball-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(
        90deg,
        #c0392b 0 14.3%,
        #d4aa52 14.3% 28.6%,
        #1a5c35 28.6% 42.9%,
        #7b4b2a 42.9% 57.1%,
        #2255aa 57.1% 71.4%,
        #c8607a 71.4% 85.7%,
        #111 85.7% 100%
    );
}

@media (max-width: 900px) {
    .hero {
        min-height: 0;
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .hero__orb {
        right: -140px;
        width: 420px;
        height: 420px;
        opacity: 0.32;
    }

    .hero__content {
        max-width: 100%;
    }

    .hero__ctas {
        flex-wrap: wrap;
    }
}

@media (max-width: 640px) {
    .hero {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .hero__eyebrow {
        letter-spacing: 2.5px;
        gap: 0.5rem;
    }

    .hero__eyebrow::before,
    .hero__eyebrow::after {
        width: 18px;
    }

    .hero__desc {
        max-width: none;
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .hero__ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .hero__ctas .btn {
        justify-content: center;
    }

    .hero__orb {
        width: 300px;
        height: 300px;
        right: -120px;
        top: 18%;
        transform: none;
    }
}
footer {
    background: var(--wood);
    border-top: 2px solid var(--brass);
    padding: 1.5rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__brand {
    font-family: "Playfair Display", serif;
    font-size: 1rem;
    font-style: italic;
    color: rgba(245, 240, 232, 0.5);
}

.footer__copy {
    font-size: 0.68rem;
    letter-spacing: 1px;
    color: rgba(245, 240, 232, 0.25);
}

@media (max-width: 700px) {
    footer {
        padding: 1.25rem 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .footer__copy {
        letter-spacing: 0.6px;
    }
}
.section {
    padding-bottom: 5rem;
}

.section__header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.section__title {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--wood);
    letter-spacing: 0.01em;
}

.section__title::after {
    content: "";
    display: block;
    height: 2px;
    width: 55px;
    background: linear-gradient(90deg, var(--brass), transparent);
    margin-top: 5px;
}

.section__title em {
    font-family: "Playfair Display", serif;
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--baize);
    line-height: 0.8;
    margin: 0.05em 0.12em 0 0;
    font-style: italic;
}

.section__meta-title {
    font-family: "Playfair Display", serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--muted);
}

.section__cta {
    margin-left: auto;
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--baize);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.section__cta:hover {
    color: var(--brass);
}

@media (max-width: 900px) {
    .section {
        padding-bottom: 3.5rem;
    }

    .section__header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 1.25rem;
    }

    .section__title {
        font-size: 1.6rem;
    }

    .section__title em {
        font-size: 2.4rem;
    }

    .section__cta {
        margin-left: 0;
    }
}

@media (max-width: 560px) {
    .section__title {
        font-size: 1.35rem;
    }

    .section__title em {
        font-size: 2rem;
    }

    .section__meta-title {
        font-size: 0.95rem;
    }
}
.admin-bar {
    background: var(--wood-d);
    border-bottom: 1px solid var(--admin-brass-border);
    height: var(--admin-bar-height);
    display: flex;
    align-items: center;
    gap: 2rem;
    position: sticky;
    top: 0;
    z-index: 201;
}

.admin-bar__badge {
    font-size: 0.58rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--brass);
    opacity: 0.6;
    white-space: nowrap;
    padding-right: 1.25rem;
    border-right: 1px solid var(--admin-brass-border);
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
}

.admin-bar__nav {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    list-style: none;
    height: 100%;
}

.admin-bar__item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.admin-bar__link {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    height: 100%;
    padding: 0 0.75rem;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--admin-text-muted);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.15s, background 0.15s;
    border-radius: 2px;
}

.admin-bar__link:hover,
.admin-bar__item:hover > .admin-bar__link {
    color: var(--admin-text-strong);
    background: var(--admin-hover);
}

.admin-bar__link--parent::after {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    opacity: 0.5;
    margin-left: 0.2rem;
}

.admin-bar__dropdown,
.admin-bar__submenu {
    display: none;
    position: absolute;
    min-width: 190px;
    background: var(--wood-d);
    border: 1px solid var(--admin-brass-border-soft);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    list-style: none;
    padding: 0.35rem 0;
}

.admin-bar__dropdown {
    top: 100%;
    left: 0;
    border-top: 1px solid var(--admin-brass-border-strong);
    border-radius: 0 0 5px 5px;
    z-index: 300;
}

.admin-bar__submenu {
    top: 0;
    left: 100%;
    min-width: 160px;
    border-radius: 0 5px 5px 5px;
    z-index: 301;
}

.admin-bar__item:hover > .admin-bar__dropdown {
    display: block;
}

.admin-bar__dropdown-item {
    position: relative;
}

.admin-bar__dropdown-item:hover > .admin-bar__submenu {
    display: block;
}

.admin-bar__dropdown-link,
.admin-bar__submenu-link {
    display: block;
    padding: 0.45rem 1rem;
    font-size: 0.72rem;
    color: var(--admin-text);
    text-decoration: none;
    transition: color 0.15s, background 0.15s, padding-left 0.15s;
    white-space: nowrap;
}

.admin-bar__dropdown-link {
    letter-spacing: 0.3px;
}

.admin-bar__dropdown-link:hover,
.admin-bar__submenu-link:hover {
    color: var(--cream);
    background: var(--admin-hover-strong);
    padding-left: 1.25rem;
}

.admin-bar__dropdown-link--parent::after {
    content: " \203A";
    float: right;
    opacity: 0.4;
}
.alert {
    margin-bottom: 1.5rem;
    --alert-bg: var(--success-bg);
    --alert-border: var(--success-border);
    --alert-text: var(--success-text);
    --alert-accent: var(--success-accent);
    --alert-shadow: var(--success-shadow);
}

.alert--success {
    --alert-bg: var(--success-bg);
    --alert-border: var(--success-border);
    --alert-text: var(--success-text);
    --alert-accent: var(--success-accent);
    --alert-shadow: var(--success-shadow);
}

.alert--error {
    --alert-bg: var(--error-bg);
    --alert-border: var(--error-border);
    --alert-text: var(--error-text);
    --alert-accent: var(--error-accent);
    --alert-shadow: var(--error-shadow);
}

.alert--warning {
    --alert-bg: var(--warning-bg);
    --alert-border: var(--warning-border);
    --alert-text: var(--warning-text);
    --alert-accent: var(--warning-accent);
    --alert-shadow: var(--warning-shadow);
}

.alert__card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1rem 1.2rem;
    background: var(--alert-bg);
    border: 1px solid var(--alert-border);
    border-left: 4px solid var(--alert-accent);
    border-radius: 8px;
    box-shadow: 0 10px 24px var(--alert-shadow);
}

.alert__icon {
    flex-shrink: 0;
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--alert-accent);
    color: var(--cream);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1;
}

.alert__content {
    min-width: 0;
}

.alert__label {
    display: block;
    margin-bottom: 0.2rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--alert-accent);
}

.alert__message {
    margin: 0;
    color: var(--alert-text);
    font-size: 0.94rem;
    line-height: 1.5;
}
.card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 13px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(28, 16, 8, 0.06);
    -webkit-border-radius: 13px;
    -moz-border-radius: 13px;
    -ms-border-radius: 13px;
    -o-border-radius: 13px;
}

.card--xs,
.card--sm,
.card--md {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.card--xs {
    max-width: var(--content-xs);
}
.card--sm {
    max-width: var(--content-sm);
}
.card--md {
    max-width: var(--content-md);
}

.card__header {
    background: var(--baize);
    padding: var(--padding-card-vertical) var(--padding-card-horizontal);
    border-bottom: 2px solid var(--brass);
    position: relative;
    overflow: hidden;
}

.card__header--dark {
    background: var(--wood);
}

/* Subtle wood-grain texture overlay */
.card__header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        100deg,
        rgba(255, 255, 255, 0.012) 0 1px,
        transparent 1px 6px
    );
    pointer-events: none;
}

.card__header-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.card__eyebrow {
    margin: 0 0 0.45rem;
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--brass);
    font-weight: 400;
}

.card__heading {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--cream);
    line-height: 1.15;
    position: relative;
    display: inline-block;
}

.card__heading--accent::after {
    content: "";
    display: block;
    height: 2px;
    width: 55px;
    background: linear-gradient(90deg, var(--brass), transparent);
    margin-top: 7px;
}

.card__subheading {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(245, 240, 232, 0.82);
}

.card__subtitle {
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--brass);
    font-weight: 400;
    margin-top: 0.6rem;
}

.card__action {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.9rem;
    font-family: "DM Sans", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--wood);
    background: var(--brass);
    border-radius: 999px;
    transition: all 0.2s;
    flex-shrink: 0;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
}

.card__action:hover {
    background: var(--brass-l);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(196, 154, 60, 0.3);
}

.card__action--subtle {
    color: var(--baize);
    background: var(--brass-soft);
    border: 1px solid var(--brass);
}

.card__action--subtle:hover {
    background: var(--cream-muted);
}

.card__notice {
    margin-top: 0.25rem;
    color: var(--muted);
    font-size: 0.8rem;
    transform: translateY(0.75rem);
    -webkit-transform: translateY(0.75rem);
    -moz-transform: translateY(0.75rem);
    -ms-transform: translateY(0.75rem);
    -o-transform: translateY(0.75rem);
}

.card__body {
    padding: var(--padding-card-vertical) var(--padding-card-horizontal);
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
    font-size: 0.93rem;
    line-height: 1.85;
    color: var(--text);
    font-weight: 300;
    position: relative;
    background: var(--surface-gradient-soft);
}

.card__body--table {
    padding: 0;
}

.card__body--spaced {
    gap: 2.5rem;
}

.card__panel {
    padding: var(--padding-card-vertical) var(--padding-card-horizontal);
    background: linear-gradient(180deg, #fcfaf7 0%, #f6f0e7 100%);
}

.card__section {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.card__section--spaced {
    gap: 1.5rem;
}

.card__section-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.1rem;
}

.card__section-title {
    font-family: "Playfair Display", serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--baize);
}
.card__section-title--line-top {
    margin-top: 0.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}
.card__section-title--line-bottom {
    padding-bottom: 0.75rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.card__lead::first-letter {
    font-family: "Playfair Display", serif;
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--baize);
    float: left;
    line-height: 0.8;
    margin: 0.05em 0.12em 0 0;
    font-style: italic;
}

.card__empty-text {
    color: var(--muted);
    font-style: italic;
}

.card__footer {
    padding: 1.25rem var(--padding-card-horizontal);
    background: #f9f8f3;
    color: var(--text);
    font-size: 0.875rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem 1.5rem;
    flex-wrap: wrap;
}

.card__footer-right {
    color: var(--muted);
}
.card__table {
    width: 100%;
    border-collapse: collapse;
}

.card__table--spacious th:not(:last-child),
.card__table--spacious td:not(:last-child) {
    padding-right: 3rem;
}

.card__table tr > :first-child {
    padding-left: var(--padding-card-horizontal);
}

.card__table tr > :last-child {
    padding-right: var(--padding-card-horizontal);
}

.card__table thead {
    background: var(--cream);
    border-bottom: 2px solid var(--border);
}

.card__row {
    border-bottom: 1px solid var(--border);
    transition: background 0.15s;
}

.card__row:hover {
    background: var(--cream);
}

.card__table-heading {
    font-family: "DM Sans", sans-serif;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    padding: 0.9rem;
    text-align: center;
}

.card__cell {
    padding: 0.9rem;
    font-size: 0.9rem;
    color: var(--text);
    vertical-align: middle;
    text-align: center;
}

.card__cell--left {
    text-align: left;
}

.card__cell--actions {
    width: 110px;
    min-width: 110px;
}

.card__cell--shrink {
    width: 1%;
    white-space: nowrap;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.card__link {
    color: var(--baize);
    text-decoration: underline;
    -webkit-text-decoration-color: rgba(26, 92, 53, 0.25);
            text-decoration-color: rgba(26, 92, 53, 0.25);
    text-underline-offset: 0.16em;
    font-weight: 500;
    transition: color 0.15s, -webkit-text-decoration-color 0.15s;
    transition: color 0.15s, text-decoration-color 0.15s;
    transition: color 0.15s, text-decoration-color 0.15s, -webkit-text-decoration-color 0.15s;
}

.card__link:hover {
    color: var(--baize-l);
    -webkit-text-decoration-color: currentColor;
            text-decoration-color: currentColor;
}

.card__cell--meta {
    font-family: "Playfair Display", serif;
    font-style: italic;
    color: var(--muted);
    white-space: nowrap;
    width: 1%;
}

@media (max-width: 1024px) {
    .card__heading {
        font-size: 1.6rem;
    }

    .card__section-title {
        font-size: 1.05rem;
    }

    .card__footer {
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .card {
        border-radius: 10px;
    }

    .card__heading {
        font-size: 1.35rem;
    }

    .card__subtitle,
    .card__eyebrow {
        letter-spacing: 2px;
    }

    .card__lead::first-letter {
        font-size: 2.4rem;
    }

    .card__body--table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}
/* ════════════════════════════════
   CONFIRM MODAL
   ════════════════════════════════ */
.confirm-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 500;
    align-items: center;
    justify-content: center;
}

.confirm-modal.is-open {
    display: flex;
}

.confirm-modal__backdrop {
    position: absolute;
    inset: 0;
    background: var(--overlay-dark);
    backdrop-filter: blur(2px);
}

.confirm-modal__dialog {
    position: relative;
    width: 100%;
    max-width: 420px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 16px 48px var(--shadow-modal);
    z-index: 1;
}

.confirm-modal__header {
    background: var(--danger);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.confirm-modal__title {
    font-family: "Playfair Display", serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cream);
    margin: 0;
}

.confirm-modal__close {
    background: none;
    border: none;
    color: var(--cream-muted);
    font-size: 1.2rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.15s;
}

.confirm-modal__close:hover {
    color: var(--cream);
}

.confirm-modal__body {
    padding: 1.75rem 1.5rem;
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.6;
}

.confirm-modal__body strong {
    color: var(--danger);
}

.confirm-modal__hint {
    margin-top: 0.35rem;
    font-size: 0.82rem;
    color: var(--muted);
}

.confirm-modal__footer {
    display: flex;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border);
    background: var(--ivory);
}

.confirm-modal__btn {
    flex: 1;
    padding: 0.65rem 1rem;
    font-family: "DM Sans", sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.2s;
}

.confirm-modal__btn--cancel {
    background: var(--ivory);
    color: var(--muted);
    border: 1px solid var(--border);
}

.confirm-modal__btn--cancel:hover {
    background: var(--cream);
    color: var(--text);
}

.confirm-modal__btn--confirm {
    background: var(--danger);
    color: var(--cream);
}

.confirm-modal__btn--confirm:hover {
    background: var(--danger-l);
    box-shadow: 0 4px 12px var(--danger-shadow);
}
.crud__actions {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.crud__actions-form {
    margin: 0;
    display: flex;
    justify-content: center;
}

.crud__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    background: transparent;
    font-size: 0.78rem;
    transition: background 0.15s, color 0.15s;
    -webkit-transition: background 0.15s, color 0.15s;
    -moz-transition: background 0.15s, color 0.15s;
    -ms-transition: background 0.15s, color 0.15s;
    -o-transition: background 0.15s, color 0.15s;
}

.crud__action--disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.crud__action--edit {
    color: var(--brass);
}

.crud__action--edit:hover {
    background: var(--brass-soft);
    color: var(--brass-l);
}

.crud__action--add {
    width: 34px;
    height: 34px;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
    color: var(--baize);
    border: 1px solid var(--baize-soft);
    background: var(--white);
}

.crud__action--add:hover {
    background: var(--baize-soft);
    color: var(--baize-l);
}

.crud__action--delete {
    color: var(--danger-soft);
}

.crud__action--delete:hover {
    background: var(--danger-soft-bg);
    color: var(--danger-hover);
}
.date-group {
    margin-bottom: 2.25rem;
}

.date-group__date {
    font-family: "Playfair Display", serif;
    font-size: 1.05rem;
    font-style: italic;
    font-weight: 700;
    color: var(--wood);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.date-group__date::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--border);
}

@media (max-width: 640px) {
    .date-group__date {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.35rem;
    }

    .date-group__date::after {
        width: 100%;
    }
}
.divisions__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.divisions__card {
    background: var(--ivory);
    text-decoration: none;
    padding: 1.75rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    transition: background 0.2s;
    position: relative;
}

.divisions__card::after {
    content: "";
    position: absolute;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 0;
    height: 2px;
    background: var(--baize);
    transform: scaleX(0);
    transition: transform 0.25s;
}

.divisions__card:hover {
    background: var(--cream);
}

.divisions__card:hover::after {
    transform: scaleX(1);
}

.divisions__letter {
    font-family: "Playfair Display", serif;
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1;
    color: var(--baize);
    font-style: italic;
}

.divisions__word {
    font-size: 0.68rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
}

.divisions__links {
    display: flex;
    gap: 0.85rem;
    margin-top: 0.7rem;
    font-size: 0.7rem;
    color: var(--muted);
    letter-spacing: 0.5px;
}

.divisions__links span {
    cursor: pointer;
    transition: color 0.2s;
}

.divisions__links span::before {
    content: "\2197     ";
    font-size: 0.7rem;
}

.divisions__links span:hover {
    color: var(--baize);
}

.divisions__card--cup .divisions__letter {
    color: var(--brass);
}

.divisions__card--cup::after {
    background: var(--brass);
}

.divisions__cup-icon {
    display: block;
    color: var(--brass);
    width: 52px;
    height: 52px;
}.match-table__scroller {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.match-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}

.match-table th,
.match-table td {
    padding: 0.85rem 1rem;
    text-align: left;
    vertical-align: middle;
    border-bottom: 1px solid var(--border);
}

.match-table th {
    background: color-mix(in srgb, var(--cream) 78%, white);
    color: var(--muted);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    white-space: nowrap;
}

.match-table tbody tr:last-child td {
    border-bottom: 0;
}

.match-table__opponent {
    width: 32%;
    min-width: 8rem;
}

.match-table__opponent .card__link {
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: bottom;
    white-space: nowrap;
}

.match-table__row--competition {
    background: color-mix(in srgb, var(--brass-l) 13%, var(--ivory));
}

.match-table__row--competition:hover {
    background: color-mix(in srgb, var(--brass-l) 20%, var(--ivory));
}

.match-table__row--casual {
    background: var(--ivory);
}

.match-type-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 999px;
    padding: 0.22rem 0.58rem;
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.055em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.match-type-badge--competition {
    background: var(--brass-l);
    color: var(--text);
    box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--brass) 34%, transparent);
}

.match-type-badge--casual {
    background: var(--cream);
    color: var(--muted);
    box-shadow: inset 0 0 0 1px var(--border);
}

@media (max-width: 720px) {
    .match-table {
        font-size: 0.86rem;
    }

    .match-table__opponent {
        width: 28%;
        min-width: 6.5rem;
    }

    .match-table th,
    .match-table td {
        padding: 0.72rem 0.78rem;
    }
}
.news__cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.1rem;
}

.news__card {
    background: var(--surface-gradient-soft);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s;
}

.news__card:hover {
    box-shadow: 0 4px 20px rgba(28, 16, 8, 0.08);
}

.news__stripe {
    height: 3px;
    background: linear-gradient(90deg, var(--baize), var(--brass));
}

.news__body {
    padding: 1.25rem 1.5rem;
    flex: 1;
}

.news__title {
    font-family: "Playfair Display", serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--wood);
    margin-bottom: 0.45rem;
    line-height: 1.35;
}

.news__text {
    font-size: 0.84rem;
    color: var(--muted);
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news__foot {
    padding: 0.7rem 1.5rem;
    font-size: 0.7rem;
    color: var(--muted);
    letter-spacing: 0.5px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
}

.news-page__list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-bottom: 5rem;
}

@media (max-width: 640px) {
    .news__body {
        padding: 1rem;
    }

    .news__foot {
        padding: 0.7rem 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .news-page__list {
        gap: 1.25rem;
        padding-bottom: 3rem;
    }
}

@media (min-width: 700px) {
    .news__cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1100px) {
    .news__cards {
        grid-template-columns: repeat(3, 1fr);
    }
}
.rank {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: transparent;
    color: var(--muted);
    font-family: "Playfair Display", serif;
    font-size: 0.85rem;
    font-weight: 700;
}

.rank--first {
    background: var(--brass);
    color: var(--wood);
}

.rank--second {
    background: var(--wood);
    color: var(--cream);
}

.rank--third {
    background: var(--baize);
    color: var(--cream);
}

@media (max-width: 640px) {
    .rank {
        width: 22px;
        height: 22px;
        font-size: 0.72rem;
    }
}
.schedule {
}

.schedule__week {
    margin-bottom: 2.75rem;
}

.schedule__week-title {
    font-family: "Playfair Display", serif;
    font-size: 1.05rem;
    font-style: italic;
    color: var(--muted);
    margin-bottom: 1rem;
    padding-left: 0.2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.schedule__week-title strong {
    font-style: normal;
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--wood);
}

.schedule__week-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--border);
}

.schedule__days {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.schedule__day-card {
    border-radius: 6px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
}

.schedule__day-card:hover {
    box-shadow: 0 6px 28px rgba(28, 16, 8, 0.1);
    transform: translateY(-2px);
}

.schedule__day-head {
    background: var(--baize);
    padding: 0.6rem 0.85rem;
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.schedule__day-num {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.schedule__day-info {
    text-align: right;
}

.schedule__day-name {
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.8;
    display: block;
}

.schedule__day-month {
    font-size: 0.65rem;
    opacity: 0.5;
    display: block;
}

.schedule__empty-day {
    padding: 1rem 0.85rem;
    font-size: 0.75rem;
    color: var(--muted);
    font-style: italic;
    text-align: center;
}

.schedule__match-list {
    background: var(--surface-gradient-soft);
    padding: 0.3rem 0;
    flex: 1;
}

.schedule__match-row {
    display: flex;
    align-items: center;
    padding: 0.48rem 0.85rem;
    gap: 0.45rem;
    border-bottom: 1px solid var(--border);
    transition: background 0.15s;
    color: inherit;
    text-decoration: none;
}

.schedule__match-row:last-child {
    border-bottom: none;
}

.schedule__match-row:hover {
    background: var(--surface-hover);
}

.schedule__player {
    flex: 1;
    font-size: 0.81rem;
}

.schedule__player:last-child {
    text-align: right;
}

.schedule__match-divider {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    min-width: 22px;
    height: 22px;
    flex-shrink: 0;
    border-radius: 50%;
    font-family: "DM Sans", sans-serif;
    line-height: 1;
}

.schedule__match-divider--competition {
    background: var(--baize);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.42rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.schedule__match-divider--friendly {
    background: rgba(185, 139, 74, 0.14);
    color: var(--brass);
    font-size: 0.78rem;
}

@media (max-width: 1100px) {
    .schedule__days {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 780px) {
    .schedule__days {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .schedule__week-title {
        flex-wrap: wrap;
        gap: 0.35rem 0.75rem;
    }

    .schedule__days {
        grid-template-columns: 1fr;
    }
}
.friendly-series-window {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.85rem 1rem;
    background: var(--ivory);
    border: 1px solid var(--border);
    border-radius: 4px;
}

.friendly-series-window__until {
    margin: 0;
    font-weight: 500;
    color: var(--text);
}

.friendly-series-window__source {
    font-size: 0.78rem;
}

.friendly-series-preview {
    gap: 0.8rem;
}

.friendly-series-preview__table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.friendly-series-preview__table th,
.friendly-series-preview__table td {
    padding-left: 0.7rem;
    padding-right: 0.7rem;
}

.friendly-series-preview__competition-note {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}
.content-editor {
    display: grid;
    gap: 1.35rem;
    padding-top: 0.35rem;
}

.content-editor__heading {
    margin: 0;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
    font-family: "Playfair Display", serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--baize);
}

.content-editor__block {
    display: grid;
    gap: 1rem;
    padding: 1.25rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--ivory);
}

.content-editor__block-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.content-editor__block-status {
    display: grid;
    justify-items: end;
    gap: 0.45rem;
}

.content-editor__block-title {
    margin: 0;
    font-size: 1rem;
    color: var(--text);
}

.content-editor__block-meta {
    margin: 0.25rem 0 0;
    font-size: 0.8rem;
    color: var(--muted);
}

.content-editor__textarea {
    min-height: 180px;
    font-family: monospace;
    line-height: 1.5;
    resize: vertical;
}

@media (max-width: 640px) {
    .content-editor__block-header {
        display: grid;
    }

    .content-editor__block-status {
        justify-items: start;
    }
}
/* ── Info blocks ── */

.member__identity {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    min-width: 0;
}

.member-profile > .card + .card {
    margin-top: 1.5rem;
}

.member__header-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.45rem 0.85rem;
}

.member__account-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.32rem 0.62rem;
    border: 1px solid rgba(245, 240, 232, 0.22);
    border-radius: 999px;
    background: rgba(245, 240, 232, 0.09);
    color: rgba(245, 240, 232, 0.72);
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    white-space: nowrap;
}

.member__account-badge::before {
    content: "";
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: currentColor;
}

.member__account-badge--active {
    border-color: rgba(196, 154, 60, 0.6);
    background: rgba(196, 154, 60, 0.16);
    color: var(--cream);
}

.member__account-badge--active::before {
    background: #58b96d;
    box-shadow: 0 0 0 3px rgba(88, 185, 109, 0.16);
}


.member__cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.member__row {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f4f0ea;
    font-size: 0.88rem;
}

.member__row:last-child {
    border-bottom: none;
}

.member__key {
    flex: 0 0 55%;
    color: var(--muted);
    font-size: 0.8rem;
    letter-spacing: 0.3px;
}

.member__value {
    flex: 1;
    color: var(--text);
    font-weight: 500;
    text-align: right;
}

/* Stat value emphasis */
.member__value--stat {
    font-family: "Playfair Display", serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--baize);
}

.member__value--break {
    font-family: "Playfair Display", serif;
    font-style: italic;
    color: var(--brass);
    font-weight: 700;
}

/* ── Available days ── */
.member__days {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.member__day {
    font-size: 0.85rem;
    color: var(--text);
}

.member__day--unavailable {
    color: var(--border);
}

/* ── Textarea / note ── */
.member__note {
    width: 100%;
    padding: 0.85rem 1rem;
    font-family: "DM Sans", sans-serif;
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--text);
    background: var(--ivory);
    border: 1px solid var(--border);
    border-radius: 4px;
    resize: none;
}

@media (max-width: 700px) {
    .member__cols {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .member__row {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.2rem;
    }

    .member__key,
    .member__value {
        text-align: left;
    }

    .member__cols--stats .member__row {
        align-items: baseline;
        flex-direction: row;
        gap: 0.75rem;
    }

    .member__cols--stats .member__key {
        flex: 1 1 auto;
        min-width: 0;
    }

    .member__cols--stats .member__value {
        flex: 0 0 auto;
        margin-left: auto;
        text-align: right;
    }
}
.match-detail__matchup {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    align-items: center;
}

.match-detail__side {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.match-detail__side--away {
    align-items: flex-end;
    text-align: right;
}

.match-detail__role {
    display: inline-flex;
    align-self: flex-start;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: rgba(26, 92, 53, 0.08);
    color: var(--baize);
    font: 700 0.66rem/1 Arial, sans-serif;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.match-detail__side--away .match-detail__role {
    align-self: flex-end;
}

.match-detail__name {
    color: var(--wood);
    text-decoration: none;
    font-size: 1.6rem;
    line-height: 1.1;
    font-weight: 700;
    font-family: Georgia, serif;
}

.match-detail__score-shell {
    display: flex;
    justify-content: center;
}

.match-detail__score-orb {
    width: 124px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: radial-gradient(
            circle at 35% 30%,
            rgba(255, 255, 255, 0.08),
            transparent 28%
        ),
        linear-gradient(180deg, var(--baize) 0%, var(--baize-d) 100%);
    border: 3px solid rgba(196, 154, 60, 0.45);
    box-shadow: inset 0 -12px 18px rgba(0, 0, 0, 0.18),
        0 18px 30px rgba(0, 0, 0, 0.12);
    position: relative;
}

.match-detail__score-orb::before {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.match-detail__score {
    font-family: Georgia, serif;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.42rem;
    font-size: 2.8rem;
    line-height: 1;
    font-weight: 700;
    color: var(--cream);
}

.match-detail__score-separator {
    color: var(--brass);
    position: relative;
    top: -0.05em;
}

.match-detail__meta {
    border-right: 1px solid var(--border);
    border-top: 1px solid var(--border);
}

.match-detail__meta-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.match-detail__meta-item {
    padding: 0.95rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
}

.match-detail__meta-label {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--muted);
    font: 600 0.68rem/1.2 Arial, sans-serif;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.match-detail__meta-value {
    display: block;
    color: var(--wood);
    font-size: 1rem;
    line-height: 1.35;
    font-weight: 700;
}

.match-detail__result {
    border-top: 1px solid var(--border);
}

.match-detail__result-title {
    margin: 0;
    color: var(--baize);
    font-size: 1.2rem;
    line-height: 1.2;
}

.match-detail__breakdown {
    display: grid;
    gap: 0.8rem;
}

.match-detail__breakdown-head {
    display: flex;
    justify-content: space-between;
}

.match-detail__breakdown-player {
    font-family: "DM Sans", sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.4px;
    text-align: left;
}

.match-detail__breakdown-player--right {
    text-align: right;
}

.match-detail__breakdown-row {
    display: grid;
    grid-template-columns: minmax(140px, 1fr) minmax(90px, auto) minmax(
            140px,
            1fr
        );
    align-items: center;
    gap: 0.9rem;
    padding: 0.95rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(28, 16, 8, 0.03);
}

.match-detail__stat-name {
    color: var(--muted);
    font-family: "DM Sans", sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 1.7px;
    text-transform: uppercase;
    text-align: center;
}

.match-detail__stat-value {
    color: var(--baize);
    font-family: "Playfair Display", serif;
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1;
    text-align: left;
}

.match-detail__stat-value--right {
    text-align: right;
}

@media (max-width: 760px) {
    .card__header-row,
    .match-detail__result-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .match-detail__matchup {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .match-detail__side--away {
        align-items: flex-start;
        text-align: left;
    }

    .match-detail__side--away .match-detail__role {
        align-self: flex-start;
    }

    .match-detail__score-shell {
        justify-content: flex-start;
    }

    .match-detail__score-orb {
        width: 96px;
    }

    .match-detail__score {
        font-size: 2.4rem;
    }

    .match-detail__breakdown-head {
        display: none;
    }

    .match-detail__stat-value {
        justify-content: flex-start;
        padding: 0 1rem;
    }

    .match-detail__breakdown-head {
        gap: 0.35rem;
        margin-bottom: 0.3rem;
    }
}

@media (max-width: 900px) {
    .match-detail__meta {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }
}
.grid--stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.stat-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1rem 1.1rem;
    box-shadow: 0 2px 10px rgba(28, 16, 8, 0.04);
}

.stat-card__label {
    margin: 0 0 0.35rem;
    font-size: 0.78rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
}

.stat-card__value {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    color: var(--wood);
}

.stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stack--lg {
    gap: 2rem;
}

.section-heading__title {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--baize);
}

.empty-state {
    margin: 0;
    padding: 1rem 1.15rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
    color: var(--muted);
    font-style: italic;
}

@media (max-width: 768px) {
    .grid--stats {
        grid-template-columns: 1fr;
    }

    .stat-card__value {
        font-size: 1.7rem;
    }
}
/* ==========================================================================
   membership.css — SC de Meent lidmaatschapspagina
   ========================================================================== */

.membership {
    padding-bottom: 4rem;
}

/* Intro
   ========================================================================== */

.membership__intro {
    color: var(--muted);
    font-size: 0.975rem;
    line-height: 1.7;
    margin-top: -0.5rem;
    margin-bottom: 2.5rem;
    max-width: 680px;
}

/* Membership cards grid
   ========================================================================== */

.membership__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 3.5rem;
}

.membership__grid .empty-state {
    grid-column: 1 / -1;
}

@media (max-width: 900px) {
    .membership__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .membership__grid {
        grid-template-columns: 1fr;
    }
}

/* Individual card
   ========================================================================== */

.membership__card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    border-radius: 3px;
    overflow: hidden;
    background: var(--ivory);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.membership__card:hover {
    box-shadow: 0 6px 24px var(--shadow-soft), 0 0 0 1px var(--brass-soft);
    transform: translateY(-2px);
}

/* Card header — dark wood band */

.membership__card-header {
    background: var(--wood);
    padding: 1.4rem 1.5rem 1.2rem;
    border-bottom: 2px solid var(--brass);
    position: relative;
}

.membership__card-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(196, 154, 60, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.membership__card-type {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--brass);
    letter-spacing: 0.01em;
    margin-bottom: 0.3rem;
}

.membership__card-tagline {
    font-size: 0.8rem;
    color: rgba(245, 240, 232, 0.6);
    line-height: 1.4;
    font-style: italic;
}

/* Card body */

.membership__card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.25rem 1.5rem 1.5rem;
}

/* Features list */

.membership__card-features {
    list-style: none;
    margin: 0 0 auto;
    padding: 0;
    flex: 1;
}

.membership__card-features li {
    font-size: 0.85rem;
    color: var(--text);
    line-height: 1.5;
    padding: 0.45rem 0;
    border-bottom: 1px solid var(--border);
    padding-left: 1.1rem;
    position: relative;
}

.membership__card-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--baize);
    margin-top: 0.4px;
}

.membership__card-features li:last-child {
    border-bottom: none;
}

/* Price */

.membership__card-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.membership__card-amount {
    font-family: 'Playfair Display', serif;
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--baize);
    line-height: 1;
}

.membership__card-period {
    font-size: 0.8rem;
    color: var(--muted);
}

/* Info sections grid
   ========================================================================== */

.membership__info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    align-items: start;
}

@media (max-width: 900px) {
    .membership__info-grid {
        grid-template-columns: 1fr;
    }
}

.membership__info-section {
    background: var(--ivory);
    border: 1px solid var(--border);
    border-radius: 3px;
    overflow: hidden;
}

.membership__info-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--cream);
    background: var(--wood);
    padding: 0.85rem 1.25rem;
    border-bottom: 2px solid var(--brass);
    letter-spacing: 0.01em;
}

.membership__info-body {
    padding: 1.25rem 1.25rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.membership__info-body p {
    font-size: 0.875rem;
    color: var(--text);
    line-height: 1.7;
}

.membership__info-body strong {
    color: var(--wood);
    font-weight: 600;
}

/* Opening hours list */

.membership__info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.membership__info-list li {
    font-size: 0.875rem;
    color: var(--text);
    line-height: 1.65;
    padding: 0.55rem 0 0.55rem 1.1rem;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.membership__info-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.95rem;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--baize);
}

.membership__info-list li:last-child {
    border-bottom: none;
}

.membership__info-list em {
    color: var(--muted);
    font-style: italic;
}
/* Base */

/* Layout */

/* Components */

/* Pages */
