.wcms-page {
    --wcms-ink: var(--kr-color-navy, #071736);
    --wcms-accent: var(--kr-color-accent, #c7f000);
    --wcms-border: #dce2e9;
    --wcms-muted: #687386;
    min-width: 0;
    padding: 0 24px 32px;
    color: var(--wcms-ink);
}

.wcms-setup-page {
    display: grid;
    min-height: 620px;
    place-items: center;
    background:
        radial-gradient(circle at 12% 12%, rgba(199, 240, 0, .2), transparent 28%),
        linear-gradient(145deg, #f5f7f3, #edf1f6);
}

.wcms-setup-card {
    width: min(620px, calc(100% - 32px));
    box-sizing: border-box;
    border: 1px solid rgba(7, 23, 54, .1);
    border-radius: 22px;
    padding: 42px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(7, 23, 54, .13);
    text-align: center;
}

.wcms-setup-mark {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    margin: 0 auto 18px;
    border-radius: 15px;
    background: var(--wcms-ink);
    color: var(--wcms-accent);
    font-size: 25px;
}

.wcms-setup-card > small {
    color: #718000;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .14em;
}

.wcms-setup-card h2 {
    margin: 8px 0 10px;
    font-size: clamp(25px, 4vw, 36px);
}

.wcms-setup-card > p {
    max-width: 510px;
    margin: 0 auto 28px;
    color: var(--wcms-muted);
    font-size: 14px;
    line-height: 1.65;
}

.wcms-domain-field {
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 2px solid var(--wcms-ink);
    border-radius: 12px;
    background: #f7f9fb;
    color: #6c7685;
    font-size: 13px;
    font-weight: 700;
}

.wcms-domain-field span {
    padding: 0 10px;
    white-space: nowrap;
}

.wcms-domain-field input {
    width: 100%;
    min-width: 90px;
    border: 0;
    border-right: 1px solid #d8dee5;
    border-left: 1px solid #d8dee5;
    padding: 15px 10px;
    background: #fff;
    color: var(--wcms-ink);
    font: inherit;
    font-size: 15px;
    font-weight: 800;
    outline: 0;
    text-align: center;
}

.wcms-generate {
    width: 100%;
    min-height: 48px;
    margin-top: 14px;
}

.wcms-setup-includes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 16px;
    margin-top: 24px;
    color: #5d6878;
    font-size: 11px;
    font-weight: 700;
}

.wcms-toolbar,
.wcms-section-tabs,
.wcms-workspace,
.wcms-publish-actions,
.wcms-device-toggle,
.wcms-section-actions,
.wcms-color-control,
.wcms-preview-header,
.wcms-section-footer {
    display: flex;
    align-items: center;
}

.wcms-toolbar {
    min-height: 74px;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 18px;
    border: 1px solid var(--wcms-border);
    border-radius: 16px 16px 0 0;
    background: #fff;
}

.wcms-site-meta {
    display: grid;
    grid-template-columns: auto auto;
    gap: 3px 10px;
    min-width: 220px;
}

.wcms-site-meta strong {
    font-size: 14px;
}

.wcms-site-meta small {
    grid-column: 1 / -1;
    color: #b45b20;
    font-size: 11px;
    font-weight: 700;
}

.wcms-status {
    align-self: center;
    padding: 3px 7px;
    border-radius: 999px;
    background: #f0f2f5;
    color: #536075;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.wcms-status.is-published {
    background: #e7f8ea;
    color: #19713b;
}

.wcms-button,
.wcms-section-tabs button,
.wcms-add-menu button {
    border: 1px solid var(--wcms-border);
    border-radius: 9px;
    background: #fff;
    color: var(--wcms-ink);
    cursor: pointer;
    font: inherit;
    font-size: 12px;
    font-weight: 700;
}

.wcms-button {
    min-height: 38px;
    padding: 0 14px;
}

.wcms-button:hover:not(:disabled),
.wcms-button.active {
    border-color: var(--wcms-ink);
    background: #f5f7f9;
}

.wcms-button.primary {
    border-color: var(--wcms-accent);
    background: var(--wcms-accent);
    box-shadow: 0 8px 22px rgba(96, 128, 0, .16);
}

.wcms-button:disabled {
    cursor: not-allowed;
    opacity: .45;
}

.wcms-device-toggle,
.wcms-publish-actions {
    gap: 8px;
}

.wcms-device-toggle {
    padding: 4px;
    border-radius: 11px;
    background: #eef1f5;
}

.wcms-device-toggle .wcms-button {
    min-height: 32px;
    border: 0;
    background: transparent;
}

.wcms-device-toggle .wcms-button.active {
    background: #fff;
    box-shadow: 0 2px 8px rgba(11, 24, 49, .1);
}

.wcms-error {
    padding: 10px 16px;
    border-right: 1px solid #efb6b6;
    border-left: 1px solid #efb6b6;
    background: #fff0f0;
    color: #9f2525;
    font-size: 13px;
    font-weight: 650;
}

.wcms-section-tabs {
    position: relative;
    z-index: 5;
    gap: 7px;
    padding: 10px 14px;
    overflow: visible;
    border: 1px solid var(--wcms-border);
    border-top: 0;
    background: #f8fafb;
}

.wcms-section-tabs > button {
    min-height: 34px;
    padding: 0 12px;
    white-space: nowrap;
}

.wcms-section-tabs > button.active {
    border-color: var(--wcms-ink);
    background: var(--wcms-ink);
    color: #fff;
}

.wcms-section-tabs > button.is-hidden {
    border-style: dashed;
    color: #8c95a2;
}

.wcms-add-wrap {
    position: relative;
    margin-left: auto;
}

.wcms-add-section {
    min-height: 34px;
    border: 1px dashed #8b95a4 !important;
    background: transparent !important;
}

.wcms-add-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 280px;
    padding: 10px;
    border: 1px solid var(--wcms-border);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(7, 23, 54, .18);
}

.wcms-add-menu p {
    margin: 6px;
    color: var(--wcms-muted);
    font-size: 12px;
    line-height: 1.5;
}

.wcms-add-menu button {
    width: 100%;
    min-height: 38px;
    margin: 3px 0;
    text-align: left;
}

.wcms-workspace {
    align-items: stretch;
    min-height: 720px;
    border: 1px solid var(--wcms-border);
    border-top: 0;
    border-radius: 0 0 16px 16px;
    overflow: hidden;
    background: #e9edf1;
}

.wcms-canvas {
    flex: 1 1 auto;
    min-width: 0;
    padding: 26px;
    overflow: auto;
}

.wcms-editor-panel {
    flex: 0 0 360px;
    max-height: 840px;
    overflow-y: auto;
    border-left: 1px solid var(--wcms-border);
    background: #fff;
}

.wcms-panel-body {
    padding: 24px;
}

.wcms-panel-heading {
    padding-bottom: 18px;
    border-bottom: 1px solid #e8ebef;
    margin-bottom: 20px;
}

.wcms-panel-heading small,
.wcms-section-heading small,
.wcms-about-copy > small,
.wcms-preview-hero > small {
    color: #718000;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .15em;
}

.wcms-panel-heading h2 {
    margin: 4px 0 0;
    font-size: 22px;
}

.wcms-help {
    margin: -5px 0 18px;
    color: var(--wcms-muted);
    font-size: 12px;
    line-height: 1.55;
}

.wcms-font-grid,
.wcms-template-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.wcms-font-card,
.wcms-template-card {
    position: relative;
    min-width: 0;
    padding: 13px;
    border: 1px solid var(--wcms-border);
    border-radius: 12px;
    background: #fff;
    color: var(--wcms-ink);
    cursor: pointer;
    text-align: left;
}

.wcms-font-card:hover,
.wcms-template-card:hover,
.wcms-font-card.wcms-selected,
.wcms-template-card.wcms-selected {
    border-color: var(--wcms-ink);
    box-shadow: 0 0 0 2px rgba(7, 23, 54, .08);
}

.wcms-font-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 29px;
    font-weight: 700;
}

.wcms-font-card span {
    display: block;
    overflow: hidden;
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wcms-font-card i {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: var(--wcms-accent);
    font-family: sans-serif;
    font-size: 11px;
    font-style: normal;
    line-height: 19px;
    text-align: center;
}

.wcms-template-card {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.wcms-template-card strong {
    font-size: 12px;
}

.wcms-template-card small {
    color: var(--wcms-muted);
    font-size: 9px;
    line-height: 1.4;
}

.wcms-template-thumb {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    height: 54px;
    padding: 6px;
    border-radius: 7px;
    background: #eef1f4;
}

.wcms-template-thumb i {
    border-radius: 3px;
    background: #9da9b5;
}

.wcms-template-thumb.is-about {
    grid-template-columns: 1.25fr .75fr;
}

.wcms-template-thumb.is-about i:first-child {
    grid-row: span 2;
}

.wcms-template-thumb.is-footer {
    height: 36px;
    background: var(--wcms-ink);
}

.wcms-template-thumb.is-footer i {
    background: #c3cdde;
}

.wcms-control-title {
    margin: 22px 0 10px;
    font-size: 12px;
}

.wcms-field,
.wcms-color-field,
.wcms-range {
    display: grid;
    gap: 7px;
    margin: 14px 0;
    color: #3d4859;
    font-size: 11px;
    font-weight: 800;
}

.wcms-field input,
.wcms-field textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid var(--wcms-border);
    border-radius: 9px;
    padding: 10px 11px;
    color: var(--wcms-ink);
    font: inherit;
    font-size: 12px;
    font-weight: 500;
    outline: none;
    resize: vertical;
}

.wcms-field input:focus,
.wcms-field textarea:focus {
    border-color: var(--wcms-ink);
    box-shadow: 0 0 0 3px rgba(7, 23, 54, .08);
}

.wcms-color-grid {
    display: grid;
    /*
     * PM_CMS_COLOR_GRID_STACK_V2
     * Full-width palette controls prevent swatch collision.
     */
    grid-template-columns: 1fr;
    gap: 0 10px;
}

.wcms-color-control {
    gap: 7px;
    min-height: 40px;
    padding: 4px 8px 4px 5px;
    border: 1px solid var(--wcms-border);
    border-radius: 9px;
}

.wcms-color-control input {
    width: 30px;
    height: 30px;
    padding: 0;
    border: 0;
    border-radius: 6px;
    background: transparent;
    cursor: pointer;
}

.wcms-color-control code {
    font-size: 10px;
}

.wcms-image-picker {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 7px;
    margin: 14px 0;
    overflow: hidden;
    border: 1px dashed #aab3bf;
    border-radius: 10px;
    padding: 8px;
    background: #fafbfc;
}

.wcms-image-picker img {
    grid-column: 1 / -1;
    width: 100%;
    height: 92px;
    border-radius: 7px;
    object-fit: cover;
}

.wcms-upload {
    display: flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: #edf1f5;
    cursor: pointer;
    font-size: 11px;
    font-weight: 800;
    text-align: center;
}

.wcms-upload input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

.wcms-remove {
    min-height: 38px;
    color: #a13737;
}

.wcms-range input {
    width: 100%;
    accent-color: var(--wcms-ink);
}

.wcms-section-actions {
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 18px;
}

.wcms-section-actions .wcms-button {
    min-height: 32px;
    padding: 0 9px;
    font-size: 10px;
}

.wcms-visibility {
    display: flex;
    min-height: 32px;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    font-size: 10px;
    font-weight: 800;
}

.wcms-visibility input {
    accent-color: var(--wcms-ink);
}

.wcms-gallery-uploads {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.wcms-gallery-uploads .wcms-image-picker {
    display: block;
    margin: 0;
}

.wcms-gallery-uploads .wcms-image-picker img {
    height: 70px;
    margin-bottom: 6px;
}

.wcms-gallery-uploads .wcms-remove {
    width: 100%;
    margin-top: 5px;
}

.wcms-preview-frame {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    transition: max-width .2s ease;
}

.wcms-preview-frame.is-mobile {
    max-width: 390px;
}

.wcms-preview-site {
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 60px rgba(7, 23, 54, .18);
    color: #071736;
}

.wcms-preview-site button {
    border: 0;
    border-radius: 6px;
    cursor: default;
    font: inherit;
    font-size: 9px;
    font-weight: 800;
}

.wcms-preview-header {
    min-height: 54px;
    justify-content: space-between;
    gap: 20px;
    padding: 0 4.5%;
}

.wcms-preview-header nav,
.wcms-section-footer nav {
    display: flex;
    gap: 18px;
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
}

/*
 * PM_CMS_CTA_KRAD_CANONICAL_V2
 *
 * Canonical venue website booking CTA.
 *
 * Used by:
 *   Header -> Book now
 *   Krad   -> Book your court
 *   Footer -> Book a Court
 *
 * Colors remain owner controlled.
 * Size is intentionally independent from Header typography.
 */
.wcms-book-cta {
    box-sizing: border-box;
    min-width: 0;
    min-height: 0;
    padding: 11px 16px;
    font-family: inherit;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
    white-space: nowrap;
}

.wcms-preview-logo {
    display: flex;
    align-items: center;
    gap: 5px;
    max-width: 30%;
    font-size: 12px;
}

.wcms-preview-logo img {
    display: block;
    max-width: 128px;
    max-height: 34px;
    object-fit: contain;
}

.wcms-preview-logo b {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wcms-preview-logo i {
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
}

.wcms-preview-hero {
    display: flex;
    min-height: 325px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 5% 8%;
    color: #fff;
}

.wcms-preview-site .wcms-preview-hero h1 {
    max-width: 760px;
    margin: 7px 0;
    color: #ffffff;
    font-size: clamp(28px, 5vw, 58px);
    line-height: .98;
}

.wcms-preview-hero p {
    margin: 0 0 20px;
    font-size: 13px;
}


.wcms-preview-header,
.wcms-preview-hero,
.wcms-site-section {
    position: relative;
    cursor: pointer;
    outline: 0 solid transparent;
    outline-offset: -3px;
    transition: outline-width .12s ease;
}

.wcms-preview-header:hover,
.wcms-preview-hero:hover,
.wcms-site-section:hover,
.wcms-preview-header.wcms-selected,
.wcms-preview-hero.wcms-selected,
.wcms-site-section.wcms-selected {
    outline: 3px solid #36a2ff;
}

.wcms-site-section {
    padding: 54px 7%;
}

.wcms-section-heading {
    margin-bottom: 25px;
    text-align: center;
}

.wcms-section-heading h2,
.wcms-about-copy h2 {
    margin: 4px 0;
    font-size: 25px;
}

.wcms-court-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 13px;
}

.wcms-court-grid article {
    position: relative;
    min-height: 130px;
    overflow: hidden;
    border: 1px solid rgba(7, 23, 54, .09);
    border-radius: 8px;
    padding: 18px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 7px 25px rgba(7, 23, 54, .07);
}

.wcms-court-grid article > span {
    position: absolute;
    top: 5px;
    right: 11px;
    color: #e8ecf0;
    font-size: 41px;
    font-weight: 900;
}

.wcms-court-grid h3 {
    position: relative;
    margin: 18px 0 3px;
    font-size: 16px;
}

.wcms-court-grid small {
    display: block;
    color: #718000;
    font-size: 7px;
    font-weight: 900;
}

.wcms-court-grid button {
    margin-top: 17px;
    padding: 0;
    background: transparent;
    color: #071736;
}

.wcms-empty-preview {
    grid-column: 1 / -1;
    border: 1px dashed #aeb7c0;
    border-radius: 8px;
    padding: 35px;
    color: #6d7785;
    text-align: center;
}

.wcms-gallery-grid {
    display: grid;
    grid-template-columns: 1.3fr .8fr .8fr;
    grid-template-rows: repeat(2, 120px);
    gap: 7px;
}

.wcms-gallery-grid > div {
    display: grid;
    place-items: center;
    border-radius: 7px;
    background: rgba(7, 23, 54, .07);
    background-position: center;
    background-size: cover;
    color: #748094;
}

.wcms-gallery-grid > div:first-child {
    grid-row: 1 / 3;
}

.wcms-gallery-grid span {
    display: grid;
    place-items: center;
}

.wcms-gallery-grid b {
    font-size: 23px;
    font-weight: 300;
}

.wcms-gallery-grid small {
    font-size: 7px;
    font-weight: 800;
}

.wcms-about-grid {
    display: grid;
    grid-template-columns: 1fr .9fr;
    align-items: center;
    gap: 8%;
    color: #fff;
}

.wcms-about-copy p {
    max-width: 520px;
    color: rgba(255, 255, 255, .76);
    font-size: 11px;
    line-height: 1.75;
}

.wcms-about-image {
    display: grid;
    min-height: 230px;
    place-items: center;
    border-radius: 7px;
    background: rgba(255, 255, 255, .12);
    background-position: center;
    background-size: cover;
    color: rgba(255, 255, 255, .65);
    font-size: 9px;
    font-weight: 800;
}

.wcms-section-footer {
    justify-content: space-between;
    gap: 25px;
    padding-top: 35px;
    padding-bottom: 35px;
}

.wcms-section-footer strong {
    display: block;
    font-size: 13px;
}

.wcms-section-footer p {
    max-width: 270px;
    margin: 5px 0 0;
    opacity: .68;
    font-size: 8px;
}


.wcms-preview-frame.is-mobile .wcms-preview-header {
    min-height: 52px;
    padding: 0 17px;
}

.wcms-preview-frame.is-mobile .wcms-preview-header nav {
    display: none;
}

.wcms-preview-frame.is-mobile .wcms-preview-logo {
    max-width: 55%;
}

.wcms-preview-frame.is-mobile .wcms-preview-hero {
    min-height: 410px;
    padding: 40px 28px;
}

.wcms-preview-frame.is-mobile .wcms-preview-hero h1 {
    font-size: 39px;
}

.wcms-preview-frame.is-mobile .wcms-site-section {
    padding: 42px 24px;
}

.wcms-preview-frame.is-mobile .wcms-court-grid,
.wcms-preview-frame.is-mobile .wcms-about-grid {
    grid-template-columns: 1fr;
}

.wcms-preview-frame.is-mobile .wcms-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 100px);
}

.wcms-preview-frame.is-mobile .wcms-gallery-grid > div:first-child {
    grid-row: auto;
}

.wcms-preview-frame.is-mobile .wcms-section-footer {
    align-items: flex-start;
    flex-direction: column;
}

.wcms-preview-frame.is-mobile .wcms-section-footer nav {
    flex-wrap: wrap;
}

.wcms-state {
    display: flex;
    min-height: 360px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0 24px 32px;
    border: 1px solid var(--wcms-border);
    border-radius: 16px;
    background: #fff;
    color: #5f6978;
}

.wcms-state.is-error {
    flex-direction: column;
    color: #9f2525;
}

.wcms-state p {
    margin: 0;
}

.wcms-spinner {
    width: 21px;
    height: 21px;
    border: 3px solid #dbe1e6;
    border-top-color: var(--wcms-ink);
    border-radius: 50%;
    animation: wcms-spin .8s linear infinite;
}

@keyframes wcms-spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 1180px) {
    .wcms-workspace {
        display: block;
    }

    .wcms-editor-panel {
        max-height: none;
        border-top: 1px solid var(--wcms-border);
        border-left: 0;
    }

    .wcms-panel-body {
        max-width: 760px;
        margin: 0 auto;
    }
}

@media (max-width: 760px) {
    .wcms-page {
        padding: 0 12px 24px;
    }

    .wcms-setup-card {
        padding: 28px 18px;
    }

    .wcms-domain-field {
        display: grid;
        grid-template-columns: auto 1fr;
    }

    .wcms-domain-field span:first-child {
        display: none;
    }

    .wcms-domain-field span:last-child {
        grid-column: 1 / -1;
        padding: 8px;
        border-top: 1px solid #d8dee5;
    }

    .wcms-domain-field input {
        grid-column: 1 / -1;
        border: 0;
    }

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

    .wcms-device-toggle,
    .wcms-publish-actions {
        width: 100%;
    }

    .wcms-device-toggle .wcms-button,
    .wcms-publish-actions .wcms-button {
        flex: 1;
    }

    .wcms-section-tabs {
        overflow-x: auto;
    }

    .wcms-add-wrap {
        position: static;
        margin-left: 0;
    }

    .wcms-add-menu {
        top: auto;
        right: 10px;
        left: 10px;
        width: auto;
    }

    .wcms-canvas {
        padding: 15px;
    }

    .wcms-panel-body {
        padding: 20px 16px;
    }

    .wcms-gallery-uploads {
        grid-template-columns: 1fr;
    }
}


/*
 * PM_CMS_COLOR_PALETTE_V1
 * Easy color selection for Website Builder controls.
 */

.wcms-color-picker {
    min-width: 0;
}

.wcms-color-label {
    display: block;
    margin-bottom: 9px;
    color: #32475c;
    font-size: 11px;
    font-weight: 800;
}

.wcms-color-palette {
    display: grid;
    grid-template-columns: repeat(10, 22px);
    gap: 9px 8px;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    padding: 2px 3px 5px;
}

.wcms-color-swatch {
    position: relative;
    width: 22px;
    height: 22px;
    padding: 0;
    border: 1px solid rgba(17, 39, 65, .28);
    border-radius: 50%;
    box-shadow:
        0 1px 1px rgba(17, 39, 65, .08),
        inset 0 0 0 1px rgba(255, 255, 255, .12);
    cursor: pointer;
    transition:
        transform .14s ease,
        box-shadow .14s ease,
        outline-color .14s ease;
}

.wcms-color-swatch:hover {
    transform: scale(1.13);
    box-shadow:
        0 3px 8px rgba(17, 39, 65, .16),
        inset 0 0 0 1px rgba(255, 255, 255, .18);
}

.wcms-color-swatch.wcms-selected {
    outline: 2px solid #0d2e53;
    outline-offset: 2px;
}

.wcms-color-swatch span {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    text-shadow:
        0 1px 3px rgba(0, 0, 0, .75);
}

.wcms-color-swatch[style*="255, 255, 255"] span {
    color: #102c4d;
    text-shadow: none;
}

.wcms-color-custom-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.wcms-color-custom {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 32px;
    padding: 4px 9px 4px 5px;
    border: 1px solid #d9e0e7;
    border-radius: 999px;
    background: #ffffff;
    cursor: pointer;
}

.wcms-color-custom:hover {
    border-color: #aebdca;
    box-shadow: 0 3px 10px rgba(15, 42, 72, .08);
}

.wcms-color-wheel {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    border: 1px solid rgba(17, 39, 65, .18);
    border-radius: 50%;
    background:
        conic-gradient(
            #ff003c,
            #ff8500,
            #ffe600,
            #35c759,
            #00aeea,
            #4355db,
            #a945c7,
            #ff003c
        );
    box-shadow:
        inset 0 0 0 3px rgba(255, 255, 255, .18);
}

.wcms-color-custom-label {
    color: #263d53;
    font-size: 11px;
    font-weight: 800;
}

.wcms-color-custom input[type="color"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    opacity: 0;
    cursor: pointer;
}

.wcms-color-value {
    padding: 5px 8px;
    border-radius: 7px;
    background: #f4f6f8;
    color: #526477;
    font-size: 10px;
    font-weight: 700;
}

@media (max-width: 720px) {

    .wcms-color-palette {
        grid-template-columns: repeat(8, 22px);
    }
}
/* ============================================================
   PM_CMS_TYPOGRAPHY_V1A

   Canonical Website Builder typography controls.
   ============================================================ */

.wcms-typography-control {
    display: grid;
    gap: 12px;
    margin-top: 18px;
    padding: 16px;
    border: 1px solid #dce4ee;
    border-radius: 16px;
    background: #f8fafc;
}

.wcms-typography-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
}

.wcms-typography-head strong {
    color: #172033;
    font-size: 14px;
}

.wcms-typography-head small {
    color: #778399;
    font-size: 11px;
}

.wcms-typography-fields {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 112px;
    gap: 10px;
}

.wcms-typography-fields label {
    display: grid;
    gap: 6px;
}

.wcms-typography-fields label > span {
    color: #657187;
    font-size: 11px;
    font-weight: 700;
}

.wcms-typography-fields select {
    width: 100%;
    min-height: 42px;
    padding: 8px 10px;
    border: 1px solid #ccd6e2;
    border-radius: 10px;
    background: #ffffff;
    color: #172033;
    font: inherit;
    outline: none;
}

.wcms-typography-fields select:focus {
    border-color: #8da5bf;
    box-shadow: 0 0 0 3px rgba(78, 113, 151, .12);
}

.wcms-typography-toolbar,
.wcms-alignment-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.wcms-typography-toolbar button,
.wcms-alignment-toolbar button {
    min-width: 42px;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 7px 10px;
    border: 1px solid #d0d8e4;
    border-radius: 9px;
    background: #ffffff;
    color: #26364c;
    font: inherit;
    cursor: pointer;
}

.wcms-typography-toolbar button:first-child {
    font-weight: 800;
}

.wcms-typography-toolbar button:nth-child(2) {
    font-style: italic;
}

.wcms-typography-toolbar button:nth-child(3) {
    text-decoration: underline;
}

.wcms-typography-toolbar button.wcms-selected,
.wcms-alignment-toolbar button.wcms-selected {
    border-color: #071736;
    background: #071736;
    color: #ffffff;
}

.wcms-alignment-toolbar button small {
    font-size: 10px;
}

@media (max-width: 640px) {
    .wcms-typography-fields {
        grid-template-columns: 1fr;
    }

    .wcms-alignment-toolbar button {
        flex: 1 1 auto;
    }
}

/* PM_CMS_TYPOGRAPHY_V1A_END */


/*
 * PM_CMS_FOOTER_POWEREDBY_POSITION_V1
 *
 * Keep Pickle Mania attribution directly below the
 * footer Book a Court CTA.
 */

.wcms-footer-cta-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: 0;
}

.wcms-footer-poweredby {
    margin: 0;
    font-size: 10px;
    line-height: 1.25;
    text-align: center;
    white-space: nowrap;
}

.wcms-footer-poweredby,
.wcms-footer-poweredby span,
.wcms-footer-poweredby small,
.wcms-footer-poweredby strong,
.wcms-footer-poweredby a {
    font-size: 10px;
}

.wcms-footer-poweredby a {
    color: inherit;
    font-weight: 700;
    text-decoration: none;
}

.wcms-footer-poweredby a {
    color: inherit;
    text-decoration: none;
}


/*
 * PM_BASIC_DEFAULT_WEBSITE_V1A_R2
 *
 * New canonical Basic Website component classes.
 *
 * Existing wcms-book-cta and Krad CSS remain untouched.
 */

.wcms-login-cta {
    box-sizing: border-box;
    min-width: 0;
    min-height: 0;
    padding: 10px 14px;
    border: 1px solid currentColor;
    border-radius: 9px;
    background: transparent;
    font-family: inherit;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
    white-space: nowrap;
}

.wcms-how-grid {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.wcms-how-card {
    box-sizing: border-box;
    min-width: 0;
    min-height: 175px;
    padding: 20px 16px;
    border:
        1px solid rgba(7, 23, 54, .09);
    border-radius: 16px;
    background: #ffffff;
    box-shadow:
        0 8px 24px rgba(7, 23, 54, .06);
    text-align: center;
}

.wcms-how-icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    margin: 0 auto 14px;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 900;
}

.wcms-how-card h3 {
    margin: 0 0 7px;
    font-size: 13px;
}

.wcms-how-card p {
    margin: 0;
    opacity: .72;
    font-size: 10px;
    line-height: 1.5;
}

.wcms-amenities-grid {
    display: grid;
    grid-template-columns:
        repeat(5, minmax(0, 1fr));
    gap: 11px;
}

.wcms-amenity-card {
    min-width: 0;
    padding: 17px 12px;
    border:
        1px solid rgba(7, 23, 54, .09);
    border-radius: 14px;
    background: #ffffff;
    text-align: center;
}

.wcms-amenity-icon {
    display: block;
    margin-bottom: 7px;
    font-size: 14px;
}

.wcms-amenity-card b {
    display: block;
    overflow-wrap: anywhere;
    font-size: 10px;
}

.wcms-location-grid {
    display: grid;
    grid-template-columns:
        .85fr 1.2fr .9fr;
    gap: 16px;
    align-items: stretch;
}

.wcms-location-card,
.wcms-location-map {
    box-sizing: border-box;
    min-width: 0;
    min-height: 205px;
    border-radius: 16px;
}

.wcms-location-card {
    padding: 20px;
    border:
        1px solid rgba(7, 23, 54, .09);
    background: #ffffff;
}

.wcms-location-card h2,
.wcms-location-card h3 {
    margin: 7px 0 10px;
}

.wcms-location-card p {
    margin: 7px 0;
    font-size: 10px;
}

.wcms-location-card a {
    display: inline-block;
    margin-top: 12px;
    color: inherit;
    font-size: 10px;
    font-weight: 800;
}

.wcms-location-map {
    display: grid;
    place-items: center;
    border:
        1px solid rgba(7, 23, 54, .08);
    background:
        linear-gradient(
            145deg,
            #e5ebe6,
            #d8e2db
        );
    color: #6f7972;
    font-size: 10px;
    font-weight: 800;
}

@media (max-width: 980px) {
    .wcms-how-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

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

    .wcms-location-grid {
        grid-template-columns: 1fr;
    }
}

.wcms-preview-frame.is-mobile .wcms-how-grid,
.wcms-preview-frame.is-mobile .wcms-amenities-grid,
.wcms-preview-frame.is-mobile .wcms-location-grid {
    grid-template-columns: 1fr;
}

