:root {
    --bc-bg: #fffaf5;
    --bc-paper: rgba(255, 255, 255, 0.82);
    --bc-paper-solid: #ffffff;
    --bc-ink: #13212b;
    --bc-muted: #5b6b75;
    --bc-line: rgba(19, 33, 43, 0.10);
    --bc-accent: #0f9bb4;
    --bc-accent-2: #e46d3b;
    --bc-sky: #bfe9ff;
    --bc-sky-deep: #62bfe8;
    --bc-mint: #c8f1df;
    --bc-mint-deep: #59c6a3;
    --bc-lilac: #ddcffc;
    --bc-lilac-deep: #a486ec;
    --bc-peach: #ffd8bf;
    --bc-peach-deep: #ef8b4d;
    --bc-lemon: #ffe9a7;
    --bc-lemon-deep: #f0bf47;
    --bc-pink: #ffd3e4;
    --bc-pink-deep: #f06fa8;
    --bc-rose: #f7ded1;
    --bc-gold: #efd7a6;
    --bc-shadow: 0 30px 70px rgba(17, 31, 43, 0.12);
    --bc-shadow-soft: 0 12px 28px rgba(17, 31, 43, 0.08);
    --bc-radius: 28px;
    --bc-radius-sm: 18px;
    --bc-radius-xs: 12px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.babysittingcalgary-modern-site {
    margin: 0;
    color: var(--bc-ink);
    background:
        radial-gradient(circle at top left, rgba(15, 155, 180, 0.18), transparent 32%),
        radial-gradient(circle at right top, rgba(228, 109, 59, 0.16), transparent 30%),
        radial-gradient(circle at 50% 110%, rgba(159, 140, 255, 0.12), transparent 36%),
        linear-gradient(180deg, #fffaf5 0%, #fff8f0 42%, #fffdfb 100%);
    font-family: "Plus Jakarta Sans", sans-serif;
    line-height: 1.65;
}

a {
    color: var(--bc-accent);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.15em;
}

a:hover {
    color: var(--bc-accent-2);
}

img {
    max-width: 100%;
    height: auto;
}

.screen-reader-text,
.skip-link {
    position: absolute;
    left: -9999px;
}

.site-shell {
    max-width: 1360px;
    margin: 24px auto 32px;
    background: rgba(255, 255, 255, 0.76);
    backdrop-filter: blur(20px);
    box-shadow: var(--bc-shadow);
    border: 1px solid rgba(255, 255, 255, 0.92);
    border-radius: 32px;
    overflow: hidden;
}

.site-header {
    padding: 24px 28px 0;
    position: relative;
}

.site-header::after {
    content: "";
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 0;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--bc-lemon), var(--bc-sky), var(--bc-pink), var(--bc-mint), var(--bc-peach));
    opacity: 0.9;
}

.site-header__top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 20px;
    align-items: center;
    padding: 4px 0 22px;
}

.site-brand {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 16px;
    row-gap: 4px;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.site-brand__mark {
    grid-row: 1 / span 3;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(15, 155, 180, 0.22), rgba(228, 109, 59, 0.18));
    box-shadow: 0 8px 22px rgba(17, 31, 43, 0.12), inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.site-brand__mark img {
    display: block;
    width: 100%;
    height: 100%;
}

.site-brand__eyebrow {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.72rem;
    color: var(--bc-muted);
}

.site-brand__title {
    font-family: "Fraunces", serif;
    font-size: clamp(2rem, 3vw, 3.8rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    font-weight: 700;
}

.site-brand__sub {
    color: var(--bc-muted);
    font-size: 0.98rem;
}

.site-header__meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-end;
    font-size: 0.95rem;
    color: var(--bc-muted);
}

.site-header__meta a {
    color: inherit;
    text-decoration: none;
}

.site-header__cta {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.site-nav {
    padding: 12px 18px;
    margin: 0 -4px 0;
    border-top: 1px solid var(--bc-line);
    border-bottom: 1px solid var(--bc-line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.25));
}

.site-nav__list,
.site-footer__menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav__list {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
}

.site-nav__list::-webkit-scrollbar {
    display: none;
}

.site-nav__list a,
.site-footer__menu a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px 11px;
    border-radius: 0;
    text-decoration: none;
    font-size: 0.84rem;
    letter-spacing: 0.06em;
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
    color: var(--bc-ink);
    background: var(--nav-fill, transparent);
    clip-path: var(--nav-clip, none);
    border: 0;
    box-shadow: none;
    overflow: visible;
    transition: transform 180ms ease, filter 180ms ease, opacity 180ms ease;
    min-height: 48px;
}

.site-nav__list li:nth-child(1) a,
.site-footer__menu li:nth-child(1) a {
    --nav-fill: linear-gradient(135deg, #ffe4a8, #ffd166);
    --nav-clip: polygon(0 18%, 18% 0, 82% 0, 100% 18%, 100% 82%, 82% 100%, 18% 100%, 0 82%);
}

.site-nav__list li:nth-child(2) a,
.site-footer__menu li:nth-child(2) a {
    --nav-fill: linear-gradient(135deg, #b6e3ff, #7dc9ff);
    --nav-clip: polygon(0 0, 100% 0, 100% 74%, 74% 100%, 0 100%);
}

.site-nav__list li:nth-child(3) a,
.site-footer__menu li:nth-child(3) a {
    --nav-fill: linear-gradient(135deg, #cfe8b3, #8bc34a);
    --nav-clip: polygon(50% 0, 100% 18%, 82% 100%, 18% 100%, 0 18%);
}

.site-nav__list li:nth-child(4) a,
.site-footer__menu li:nth-child(4) a {
    --nav-fill: linear-gradient(135deg, #ffd2e0, #ff8fb1);
    --nav-clip: polygon(12% 0, 88% 0, 100% 50%, 88% 100%, 12% 100%, 0 50%);
}

.site-nav__list li:nth-child(5) a,
.site-footer__menu li:nth-child(5) a {
    --nav-fill: linear-gradient(135deg, #f7d39b, #ffad5c);
    --nav-clip: polygon(8% 0, 92% 0, 100% 28%, 84% 100%, 16% 100%, 0 28%);
}

.site-nav__list li:nth-child(6) a,
.site-footer__menu li:nth-child(6) a {
    --nav-fill: linear-gradient(135deg, #d8ccff, #9f8cff);
    --nav-clip: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}

.site-nav__list li:nth-child(7) a,
.site-footer__menu li:nth-child(7) a {
    --nav-fill: linear-gradient(135deg, #b7f0e4, #5ed6c4);
    --nav-clip: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}

.site-nav__list li:nth-child(8) a,
.site-footer__menu li:nth-child(8) a {
    --nav-fill: linear-gradient(135deg, #ffd8a8, #f28a4b);
    --nav-clip: polygon(50% 0, 72% 8%, 90% 0, 100% 20%, 94% 42%, 100% 60%, 88% 80%, 94% 100%, 72% 92%, 50% 100%, 28% 92%, 6% 100%, 12% 80%, 0 60%, 6% 42%, 0 20%, 10% 0, 28% 8%);
}

.site-nav__list a:hover,
.site-footer__menu a:hover,
.site-nav .current-menu-item > a,
.site-nav .current_page_item > a {
    color: #10212b;
    transform: translateY(-2px);
    filter: saturate(1.05) brightness(1.02);
}

.site-content {
    padding: 0 28px 32px;
}

.page-article {
    padding: 0;
}

.page-hero,
.bc-section,
.bc-panel {
    margin-top: 24px;
}

.page-hero {
    position: relative;
    min-height: clamp(390px, 38vw, 520px);
    border-radius: var(--bc-radius);
    overflow: hidden;
    display: flex;
    align-items: center;
    background:
        linear-gradient(135deg, rgba(19, 33, 43, 0.96), rgba(19, 33, 43, 0.76)),
        radial-gradient(circle at top right, rgba(15, 155, 180, 0.35), transparent 30%),
        radial-gradient(circle at left bottom, rgba(228, 109, 59, 0.28), transparent 26%);
    color: #fff;
    box-shadow: var(--bc-shadow);
}

.page-hero::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 14px;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--bc-lemon), var(--bc-sky), var(--bc-pink), var(--bc-mint), var(--bc-peach));
    opacity: 0.85;
}

.page-hero__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: clamp(42px, 6vw, 92px);
    display: grid;
    gap: 18px;
}

.page-hero__eyebrow {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.88);
    display: inline-flex;
    width: fit-content;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 8px 18px rgba(9, 18, 24, 0.12);
}

.page-hero__title {
    margin: 0;
    font-family: "Fraunces", serif;
    font-size: clamp(2.8rem, 7vw, 5.8rem);
    line-height: 0.92;
    letter-spacing: -0.05em;
    max-width: 13ch;
    text-shadow: 0 8px 24px rgba(9, 18, 24, 0.22);
}

.page-hero__lead {
    margin: 0;
    max-width: 44rem;
    font-size: clamp(1.02rem, 1.3vw, 1.18rem);
    color: rgba(255, 255, 255, 0.88);
}

.page-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 6px;
}

.page-hero--split {
    background:
        linear-gradient(115deg, rgba(19, 33, 43, 0.95) 0%, rgba(19, 33, 43, 0.80) 52%, rgba(19, 33, 43, 0.52) 100%),
        url('../img/children_crafting-3593x1775.jpg') center/cover no-repeat;
}

.page-hero--split-alt {
    background:
        linear-gradient(115deg, rgba(19, 33, 43, 0.95) 0%, rgba(19, 33, 43, 0.82) 50%, rgba(19, 33, 43, 0.50) 100%),
        url('../img/earth_hands-3840x1438.jpg') center/cover no-repeat;
}

.page-hero--text .page-hero__inner {
    text-align: center;
    justify-items: center;
}

.page-hero--split .page-hero__inner,
.page-hero--split-alt .page-hero__inner {
    max-width: 64rem;
}

.page-hero--text .page-hero__lead {
    max-width: 52rem;
}

.bc-section,
.bc-panel {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.90), rgba(255, 253, 249, 0.78));
    border: 1px solid rgba(19, 33, 43, 0.08);
    border-radius: var(--bc-radius);
    box-shadow: var(--bc-shadow-soft);
    padding: clamp(24px, 4vw, 42px);
}

.bc-section--tight {
    padding: clamp(20px, 3vw, 30px);
}

.bc-section--stack {
    display: grid;
    gap: 18px;
}

.bc-eyebrow,
.bc-kicker {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.74rem;
    color: #20313b;
    display: inline-flex;
    width: fit-content;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(15, 155, 180, 0.12), rgba(228, 109, 59, 0.10));
    border: 1px solid rgba(19, 33, 43, 0.08);
    box-shadow: 0 8px 16px rgba(17, 31, 43, 0.04);
}

.bc-intro {
    display: grid;
    gap: 14px;
}

.bc-intro > h2,
.bc-section > h2,
.bc-panel > h2 {
    margin: 0;
    font-family: "Fraunces", serif;
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.05;
}

.bc-intro > p,
.bc-section > p,
.bc-panel > p {
    margin: 0;
    color: var(--bc-muted);
}

.bc-grid {
    display: grid;
    gap: 18px;
}

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

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

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

.bc-card {
    background: linear-gradient(180deg, #ffffff 0%, #fffdf8 100%);
    border: 1px solid var(--bc-line);
    border-radius: var(--bc-radius-sm);
    padding: 24px;
    box-shadow: inset 0 5px 0 var(--bc-card-bar, var(--bc-accent)), 0 10px 24px rgba(17, 31, 43, 0.05);
    position: relative;
    overflow: hidden;
}

.section-panel {
    background: linear-gradient(180deg, #ffffff 0%, #fffdf8 100%);
    border: 1px solid var(--bc-line);
    border-radius: var(--bc-radius-sm);
    padding: 24px;
    box-shadow: inset 0 5px 0 var(--bc-card-bar, var(--bc-accent-2)), 0 10px 24px rgba(17, 31, 43, 0.05);
    position: relative;
    overflow: hidden;
}

.section-panel--accent {
    --bc-card-bar: var(--bc-pink-deep);
    background: linear-gradient(180deg, #fff 0%, #fff7f2 100%);
}

.bc-media-card {
    padding: 0;
    overflow: hidden;
    --bc-card-bar: var(--bc-sky-deep);
    position: relative;
}

.bc-photo-card {
    padding: 0;
    overflow: hidden;
    position: relative;
}

.bc-photo-card .wp-block-image {
    margin: 0;
}

.bc-photo-card img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    filter: saturate(1.08) contrast(1.02);
}

.bc-photo-card__caption {
    margin: 0;
    padding: 16px 18px 20px;
    color: var(--bc-muted);
    background: linear-gradient(90deg, rgba(255, 233, 167, 0.18), rgba(191, 233, 255, 0.16));
}

.bc-media-card .wp-block-image {
    margin: 0;
}

.bc-media-card img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.bc-media-card__caption {
    margin: 0;
    padding: 18px 20px 22px;
    color: var(--bc-muted);
    background: linear-gradient(90deg, rgba(191, 233, 255, 0.16), rgba(255, 255, 255, 0));
}

.bc-badge-card {
    display: grid;
    grid-template-columns: minmax(200px, 280px) minmax(0, 1fr);
    gap: 24px;
    align-items: center;
}

.bc-badge-card .wp-block-image {
    margin: 0;
    justify-self: center;
}

.bc-badge-card img {
    display: block;
    width: min(280px, 100%);
    aspect-ratio: 1 / 1;
    object-fit: contain;
}

.bc-badge-card__content {
    display: grid;
    gap: 14px;
}

.bc-section--compact {
    padding-top: clamp(18px, 3vw, 28px);
    padding-bottom: clamp(18px, 3vw, 28px);
}

.bc-testimonial-card {
    display: grid;
    gap: 14px;
    position: relative;
    overflow: hidden;
}

.bc-testimonial-card--photo {
    padding: 0;
    overflow: hidden;
}

.bc-testimonial-card--photo .wp-block-image {
    margin: 0;
}

.bc-testimonial-card--photo img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.bc-testimonial-card__photo-caption {
    margin: 0;
    padding: 16px 18px 20px;
    color: var(--bc-muted);
    background: linear-gradient(90deg, rgba(255, 211, 228, 0.18), rgba(221, 207, 252, 0.14));
}

.bc-testimonial-card__label {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.72rem;
    color: var(--bc-muted);
}

.bc-testimonial-card__quote {
    margin: 0;
    font-family: "Fraunces", serif;
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    line-height: 1.18;
    color: var(--bc-ink);
}

.bc-testimonial-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    align-items: baseline;
}

.bc-testimonial-card__meta p {
    margin: 0;
    color: var(--bc-muted);
    font-size: 0.95rem;
}

.bc-card--accent {
    --bc-card-bar: var(--bc-peach-deep);
    background: linear-gradient(180deg, #fff 0%, #fff8f1 100%);
}

.bc-card::before,
.section-panel::before,
.schedule-card::before,
.bc-photo-card::before,
.bc-testimonial-card--photo::before,
.site-footer__brand::before,
.site-footer__links::before,
.site-footer__contact::before {
    content: "";
    position: absolute;
    pointer-events: none;
}

.bc-card::before,
.section-panel::before,
.schedule-card::before {
    right: 14px;
    top: 14px;
    width: 24px;
    height: 24px;
    border-radius: 10px;
    opacity: 0.28;
    background: linear-gradient(135deg, var(--bc-sky), var(--bc-pink), var(--bc-peach));
    transform: rotate(18deg);
}

.bc-card--accent::before,
.section-panel--accent::before,
.schedule-card--accent::before {
    opacity: 0.38;
    background: linear-gradient(135deg, var(--bc-lemon), var(--bc-lilac), var(--bc-mint));
}

.bc-grid--2 > .wp-block-column:nth-child(1) .bc-card::before,
.bc-grid--2 > .wp-block-column:nth-child(1) .section-panel::before,
.bc-grid--2 > .wp-block-column:nth-child(1) .schedule-card::before {
    background: linear-gradient(135deg, var(--bc-sky), var(--bc-mint));
}

.bc-grid--2 > .wp-block-column:nth-child(2) .bc-card::before,
.bc-grid--2 > .wp-block-column:nth-child(2) .section-panel::before,
.bc-grid--2 > .wp-block-column:nth-child(2) .schedule-card::before {
    background: linear-gradient(135deg, var(--bc-peach), var(--bc-pink));
}

.bc-grid--3 > .wp-block-column:nth-child(1) .bc-card::before,
.bc-grid--3 > .wp-block-column:nth-child(1) .section-panel::before {
    background: linear-gradient(135deg, var(--bc-sky), var(--bc-lemon));
}

.bc-grid--3 > .wp-block-column:nth-child(2) .bc-card::before,
.bc-grid--3 > .wp-block-column:nth-child(2) .section-panel::before {
    background: linear-gradient(135deg, var(--bc-mint), var(--bc-sky));
}

.bc-grid--3 > .wp-block-column:nth-child(3) .bc-card::before,
.bc-grid--3 > .wp-block-column:nth-child(3) .section-panel::before {
    background: linear-gradient(135deg, var(--bc-pink), var(--bc-peach));
}

.schedule-card__intro > h2::after {
    width: 104px;
}

.bc-photo-card::before,
.bc-testimonial-card--photo::before {
    left: 14px;
    top: 14px;
    width: 56px;
    height: 14px;
    border-radius: 999px;
    opacity: 0.34;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.15));
    transform: rotate(-8deg);
}

.bc-testimonial-card--photo::before {
    left: 16px;
    width: 64px;
}

.bc-card__eyebrow {
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.72rem;
    color: #2c3d46;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 5px 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 233, 167, 0.32), rgba(191, 233, 255, 0.20));
    border: 1px solid rgba(19, 33, 43, 0.08);
}

.bc-card h3,
.bc-card h4 {
    margin: 0 0 10px;
    font-family: "Fraunces", serif;
    line-height: 1.05;
    color: var(--bc-ink);
}

.section-panel h2,
.section-panel h3,
.section-panel h4 {
    margin: 0 0 10px;
    font-family: "Fraunces", serif;
    line-height: 1.05;
    color: var(--bc-ink);
}

.bc-intro > h2,
.bc-section > h2,
.bc-panel > h2,
.schedule-card__intro > h2,
.section-panel h2,
.bc-card h3,
.bc-card h4 {
    position: relative;
}

.bc-intro > h2::after,
.bc-section > h2::after,
.bc-panel > h2::after,
.schedule-card__intro > h2::after,
.section-panel h2::after,
.bc-card h3::after,
.bc-card h4::after {
    content: "";
    display: block;
    width: 88px;
    height: 6px;
    margin-top: 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--bc-sky-deep), var(--bc-lilac-deep), var(--bc-pink-deep), var(--bc-peach-deep));
}

.bc-card p {
    margin: 0;
    color: var(--bc-muted);
}

.section-panel p {
    margin: 0;
    color: var(--bc-muted);
}

.bc-card ul {
    margin: 0;
    padding-left: 18px;
    color: var(--bc-muted);
}

.section-panel ul {
    margin: 0;
    padding-left: 18px;
    color: var(--bc-muted);
}

.bc-card li + li {
    margin-top: 8px;
}

.section-panel li + li {
    margin-top: 8px;
}

.bc-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.bc-pill {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(191, 233, 255, 0.28), rgba(255, 216, 191, 0.26));
    color: var(--bc-ink);
    border: 0;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
    font-size: 0.92rem;
}

.schedule-section {
    display: grid;
    gap: 18px;
}

.schedule-card {
    background: linear-gradient(180deg, #ffffff 0%, #fffdf8 100%);
    border: 1px solid var(--bc-line);
    border-radius: var(--bc-radius-sm);
    padding: 24px;
    box-shadow: inset 0 5px 0 var(--bc-card-bar, var(--bc-sky-deep)), 0 10px 24px rgba(17, 31, 43, 0.05);
    display: grid;
    gap: 18px;
}

.schedule-card--accent {
    --bc-card-bar: var(--bc-lilac-deep);
    background: linear-gradient(180deg, #fff 0%, #fff7fb 100%);
}

.schedule-card__intro {
    display: grid;
    gap: 14px;
}

.schedule-card__intro > h2 {
    margin: 0;
    font-family: "Fraunces", serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.05;
}

.schedule-card__intro > p {
    margin: 0;
    color: var(--bc-muted);
}

.schedule-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.schedule-legend p {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.schedule-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.76rem;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.02em;
    border: 0;
    white-space: nowrap;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.schedule-tag--zoom {
    background: rgba(15, 155, 180, 0.22);
    color: #075967;
}

.schedule-tag--sw {
    background: rgba(86, 148, 109, 0.24);
    color: #274d36;
}

.schedule-tag--se {
    background: rgba(228, 109, 59, 0.23);
    color: #8e3512;
}

.schedule-tag--invermere {
    background: rgba(143, 104, 194, 0.24);
    color: #553188;
}

.schedule-tag--fireside {
    background: rgba(230, 127, 164, 0.24);
    color: #8f2f57;
}

.schedule-tag--generic {
    background: rgba(91, 107, 117, 0.20);
    color: #39454d;
}

.schedule-tag--status {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.7rem;
}

.schedule-tag--full {
    background: rgba(35, 46, 55, 0.16);
    color: #1f2830;
}

.schedule-tag--waitlist {
    background: rgba(239, 215, 166, 0.30);
    color: #72520f;
}

.schedule-row--zoom td {
    background: rgba(15, 155, 180, 0.08);
}

.schedule-row--sw td {
    background: rgba(86, 148, 109, 0.09);
}

.schedule-row--se td {
    background: rgba(228, 109, 59, 0.09);
}

.schedule-row--invermere td {
    background: rgba(143, 104, 194, 0.09);
}

.schedule-row--fireside td {
    background: rgba(230, 127, 164, 0.10);
}

.schedule-row--generic td {
    background: rgba(91, 107, 117, 0.08);
}

.schedule-row--status-full td:last-child {
    background-image: linear-gradient(90deg, rgba(35, 46, 55, 0.08), rgba(35, 46, 55, 0.12));
}

.schedule-row--status-waitlist td:last-child {
    background-image: linear-gradient(90deg, rgba(239, 215, 166, 0.14), rgba(239, 215, 166, 0.20));
}

.schedule-table {
    margin: 0;
}

.schedule-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--bc-line);
    border-radius: 18px;
    overflow: hidden;
}

.schedule-table thead {
    background: rgba(15, 155, 180, 0.08);
}

.schedule-table th,
.schedule-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--bc-line);
    text-align: left;
    vertical-align: top;
}

.schedule-table th {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--bc-muted);
}

.schedule-table tbody tr:nth-child(even) {
    background: rgba(255, 248, 241, 0.70);
}

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

.schedule-table td:first-child {
    white-space: nowrap;
    font-weight: 700;
    color: var(--bc-ink);
}

.schedule-table td:last-child {
    line-height: 1.55;
}

.schedule-table tbody tr:hover td {
    background-color: rgba(255, 255, 255, 0.96);
}

.wp-element-button,
button.wp-element-button {
    border: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.95rem 1.35rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--bc-accent), var(--bc-lilac-deep));
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(15, 155, 180, 0.26), inset 0 0 0 1px rgba(255, 255, 255, 0.18);
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.wp-element-button:hover,
button.wp-element-button:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 18px 30px rgba(15, 155, 180, 0.30);
}

.wp-block-button.is-style-outline .wp-element-button {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    border: 0;
    box-shadow: 0 12px 24px rgba(9, 18, 24, 0.10), inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.wp-block-button.is-style-outline .wp-element-button:hover {
    background: rgba(255, 255, 255, 0.24);
}

.wp-block-button .wp-element-button {
    min-height: 48px;
}

.site-footer {
    padding: 28px;
    border-top: 1px solid rgba(19, 33, 43, 0.08);
    background:
        radial-gradient(circle at 10% 0%, rgba(15, 155, 180, 0.28), transparent 24%),
        radial-gradient(circle at 90% 0%, rgba(228, 109, 59, 0.22), transparent 22%),
        linear-gradient(180deg, rgba(19, 33, 43, 0.96), rgba(19, 33, 43, 1));
    color: rgba(255, 255, 255, 0.92);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 14% 18%, rgba(255, 233, 167, 0.28), transparent 10%),
        radial-gradient(circle at 30% 12%, rgba(191, 233, 255, 0.22), transparent 9%),
        radial-gradient(circle at 70% 18%, rgba(255, 211, 228, 0.22), transparent 10%),
        radial-gradient(circle at 86% 14%, rgba(200, 241, 223, 0.22), transparent 10%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 34%);
    pointer-events: none;
}

.site-footer::after {
    content: "";
    position: absolute;
    left: 28px;
    right: 28px;
    top: 18px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--bc-lemon), var(--bc-sky), var(--bc-pink), var(--bc-mint), var(--bc-peach), var(--bc-lilac));
    opacity: 0.95;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    position: relative;
    z-index: 1;
    padding-top: 18px;
}

.site-footer__eyebrow,
.site-footer__heading {
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.86);
    display: inline-flex;
    width: fit-content;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__brand,
.site-footer__links,
.site-footer__contact {
    padding: 18px 18px 16px;
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
        rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: inset 0 4px 0 rgba(255, 255, 255, 0.10), 0 14px 30px rgba(0, 0, 0, 0.08);
    position: relative;
}

.site-footer__brand::before,
.site-footer__links::before,
.site-footer__contact::before {
    position: absolute;
    inset: 10px 10px auto auto;
    width: 18px;
    height: 18px;
    border-radius: 6px;
    transform: rotate(15deg);
    opacity: 0.78;
}

.site-footer__brand {
    box-shadow: inset 0 4px 0 rgba(15, 155, 180, 0.58);
}

.site-footer__brand::before {
    background: linear-gradient(135deg, var(--bc-sky), var(--bc-sky-deep));
}

.site-footer__links {
    box-shadow: inset 0 4px 0 rgba(228, 109, 59, 0.58);
}

.site-footer__links::before {
    background: linear-gradient(135deg, var(--bc-peach), var(--bc-peach-deep));
}

.site-footer__contact {
    box-shadow: inset 0 4px 0 rgba(159, 140, 255, 0.58);
}

.site-footer__contact::before {
    background: linear-gradient(135deg, var(--bc-lilac), var(--bc-lilac-deep));
}

.site-footer__text,
.site-footer__contact p,
.site-footer__contact a {
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 10px;
    text-decoration: none;
}

.site-footer__contact p {
    line-height: 1.6;
}

.site-footer__bottom {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    position: relative;
    z-index: 1;
}

.site-footer__menu {
    display: grid;
    gap: 10px;
}

.site-footer__menu a {
    width: fit-content;
    color: rgba(255, 255, 255, 0.92);
    --nav-fill: rgba(255, 255, 255, 0.10);
}

.site-footer__menu a:hover,
.site-footer .current-menu-item > a,
.site-footer .current_page_item > a {
    color: #fefefe;
}

.site-footer__menu li:nth-child(1) a::before { background: linear-gradient(135deg, #ffe4a8, #ffd166); }
.site-footer__menu li:nth-child(2) a::before { background: linear-gradient(135deg, #b6e3ff, #7dc9ff); }
.site-footer__menu li:nth-child(3) a::before { background: linear-gradient(135deg, #cfe8b3, #8bc34a); }
.site-footer__menu li:nth-child(4) a::before { background: linear-gradient(135deg, #ffd2e0, #ff8fb1); }
.site-footer__menu li:nth-child(5) a::before { background: linear-gradient(135deg, #f7d39b, #ffad5c); }
.site-footer__menu li:nth-child(6) a::before { background: linear-gradient(135deg, #d8ccff, #9f8cff); }
.site-footer__menu li:nth-child(7) a::before { background: linear-gradient(135deg, #b7f0e4, #5ed6c4); }
.site-footer__menu li:nth-child(8) a::before { background: linear-gradient(135deg, #ffd8a8, #f28a4b); }

body.page-home .page-hero,
body.page-home .page-hero--split {
    background:
        linear-gradient(115deg, rgba(15, 155, 180, 0.86) 0%, rgba(19, 33, 43, 0.74) 48%, rgba(228, 109, 59, 0.28) 100%),
        url('../img/children_crafting-3593x1775.jpg') center/cover no-repeat;
}

body.page-upcoming-courses .page-hero,
body.page-upcoming-courses .page-hero--split {
    background:
        linear-gradient(115deg, rgba(143, 104, 194, 0.84) 0%, rgba(19, 33, 43, 0.72) 48%, rgba(15, 155, 180, 0.28) 100%),
        url('../img/earth_hands-3840x1438.jpg') center/cover no-repeat;
}

body.page-registration .page-hero,
body.page-registration .page-hero--split {
    background:
        linear-gradient(115deg, rgba(228, 109, 59, 0.86) 0%, rgba(19, 33, 43, 0.72) 50%, rgba(15, 155, 180, 0.24) 100%),
        url('../img/children_crafting-3593x1775.jpg') center/cover no-repeat;
}

body.page-contact-us .page-hero,
body.page-contact-us .page-hero--split {
    background:
        linear-gradient(115deg, rgba(86, 148, 109, 0.84) 0%, rgba(19, 33, 43, 0.70) 50%, rgba(230, 127, 164, 0.26) 100%),
        url('../img/proud-supporter.jpg') center/cover no-repeat;
}

body.page-home-alone-course .page-hero,
body.page-home-alone-course .page-hero--split-alt,
body.page-babysitter-training-course .page-hero,
body.page-babysitter-training-course .page-hero--split,
body.page-fees .page-hero,
body.page-testimonials .page-hero,
body.page-id-6 .page-hero,
body.page-id-6 .page-hero--split,
body.page-id-7 .page-hero,
body.page-id-7 .page-hero--split-alt,
body.page-id-9 .page-hero,
body.page-id-12 .page-hero {
    background:
        linear-gradient(115deg, rgba(19, 33, 43, 0.92) 0%, rgba(19, 33, 43, 0.70) 50%, rgba(159, 140, 255, 0.20) 100%),
        radial-gradient(circle at top right, rgba(15, 155, 180, 0.22), transparent 36%),
        radial-gradient(circle at left bottom, rgba(228, 109, 59, 0.20), transparent 30%);
}

body.page-home-alone-course .page-hero,
body.page-home-alone-course .page-hero--split-alt,
body.page-id-7 .page-hero,
body.page-id-7 .page-hero--split-alt {
    background:
        linear-gradient(115deg, rgba(19, 33, 43, 0.42) 0%, rgba(19, 33, 43, 0.26) 54%, rgba(228, 109, 59, 0.10) 100%),
        url('../img/Fotolia_50829689_X-2428x1648.jpg') center/cover no-repeat;
}

body.page-babysitter-training-course .page-hero,
body.page-babysitter-training-course .page-hero--split,
body.page-id-6 .page-hero,
body.page-id-6 .page-hero--split {
    background:
        linear-gradient(115deg, rgba(19, 33, 43, 0.38) 0%, rgba(19, 33, 43, 0.24) 54%, rgba(15, 155, 180, 0.10) 100%),
        url('../img/children_crafting-3593x1775.jpg') center/cover no-repeat;
}

body.page-fees .page-hero,
body.page-id-9 .page-hero {
    background:
        linear-gradient(115deg, rgba(19, 33, 43, 0.44) 0%, rgba(19, 33, 43, 0.28) 52%, rgba(143, 104, 194, 0.10) 100%),
        url('../img/Fotolia_48771214_X-3840x2880.jpg') center/cover no-repeat;
}

body.page-testimonials .page-hero,
body.page-id-12 .page-hero {
    background:
        linear-gradient(115deg, rgba(19, 33, 43, 0.40) 0%, rgba(19, 33, 43, 0.24) 50%, rgba(228, 109, 59, 0.10) 100%),
        url('../img/Fotolia_52128163_X_6-3595x1772.jpg') center/cover no-repeat;
}

body.page-home .bc-kicker,
body.page-home .page-hero__eyebrow {
    background: linear-gradient(90deg, rgba(255, 233, 167, 0.30), rgba(191, 233, 255, 0.18));
}

body.page-upcoming-courses .bc-kicker,
body.page-upcoming-courses .page-hero__eyebrow {
    background: linear-gradient(90deg, rgba(221, 207, 252, 0.30), rgba(191, 233, 255, 0.16));
}

body.page-contact-us .bc-kicker,
body.page-contact-us .page-hero__eyebrow {
    background: linear-gradient(90deg, rgba(200, 241, 223, 0.30), rgba(255, 211, 228, 0.18));
}

.bc-grid--3 > .wp-block-column:nth-child(1) .bc-card,
.bc-grid--3 > .wp-block-column:nth-child(1) .section-panel {
    --bc-card-bar: var(--bc-sky-deep);
    background: linear-gradient(180deg, #fff 0%, rgba(191, 233, 255, 0.12) 100%);
}

.bc-grid--3 > .wp-block-column:nth-child(2) .bc-card,
.bc-grid--3 > .wp-block-column:nth-child(2) .section-panel {
    --bc-card-bar: var(--bc-mint-deep);
    background: linear-gradient(180deg, #fff 0%, rgba(200, 241, 223, 0.12) 100%);
}

.bc-grid--3 > .wp-block-column:nth-child(3) .bc-card,
.bc-grid--3 > .wp-block-column:nth-child(3) .section-panel {
    --bc-card-bar: var(--bc-pink-deep);
    background: linear-gradient(180deg, #fff 0%, rgba(255, 211, 228, 0.14) 100%);
}

.bc-grid--2 > .wp-block-column:nth-child(1) .bc-card,
.bc-grid--2 > .wp-block-column:nth-child(1) .section-panel {
    --bc-card-bar: var(--bc-lilac-deep);
    background: linear-gradient(180deg, #fff 0%, rgba(221, 207, 252, 0.14) 100%);
}

.bc-grid--2 > .wp-block-column:nth-child(2) .bc-card,
.bc-grid--2 > .wp-block-column:nth-child(2) .section-panel {
    --bc-card-bar: var(--bc-peach-deep);
    background: linear-gradient(180deg, #fff 0%, rgba(255, 216, 191, 0.14) 100%);
}

.bc-grid--4 > .wp-block-column:nth-child(1) .bc-photo-card {
    box-shadow: inset 0 5px 0 var(--bc-sky-deep), 0 10px 24px rgba(17, 31, 43, 0.05);
}

.bc-grid--4 > .wp-block-column:nth-child(1) .bc-photo-card img {
    object-position: center 58%;
}

.bc-grid--4 > .wp-block-column:nth-child(2) .bc-photo-card {
    box-shadow: inset 0 5px 0 var(--bc-mint-deep), 0 10px 24px rgba(17, 31, 43, 0.05);
}

.bc-grid--4 > .wp-block-column:nth-child(2) .bc-photo-card img {
    object-position: center 18%;
}

.bc-grid--4 > .wp-block-column:nth-child(3) .bc-photo-card {
    box-shadow: inset 0 5px 0 var(--bc-pink-deep), 0 10px 24px rgba(17, 31, 43, 0.05);
}

.bc-grid--4 > .wp-block-column:nth-child(3) .bc-photo-card img {
    object-position: center 28%;
}

.bc-grid--4 > .wp-block-column:nth-child(4) .bc-photo-card {
    box-shadow: inset 0 5px 0 var(--bc-lilac-deep), 0 10px 24px rgba(17, 31, 43, 0.05);
}

body.page-id-5 .page-hero,
body.page-id-5 .page-hero--split {
    background:
        linear-gradient(115deg, rgba(15, 155, 180, 0.86) 0%, rgba(19, 33, 43, 0.74) 48%, rgba(228, 109, 59, 0.28) 100%),
        url('../img/children_crafting-3593x1775.jpg') center/cover no-repeat;
}

body.page-id-8 .page-hero,
body.page-id-8 .page-hero--split {
    background:
        linear-gradient(115deg, rgba(143, 104, 194, 0.84) 0%, rgba(19, 33, 43, 0.72) 48%, rgba(15, 155, 180, 0.28) 100%),
        url('../img/earth_hands-3840x1438.jpg') center/cover no-repeat;
}

body.page-id-11 .page-hero,
body.page-id-11 .page-hero--split {
    background:
        linear-gradient(115deg, rgba(228, 109, 59, 0.86) 0%, rgba(19, 33, 43, 0.72) 50%, rgba(15, 155, 180, 0.24) 100%),
        url('../img/children_crafting-3593x1775.jpg') center/cover no-repeat;
}

body.page-id-10 .page-hero,
body.page-id-10 .page-hero--split {
    background:
        linear-gradient(115deg, rgba(86, 148, 109, 0.84) 0%, rgba(19, 33, 43, 0.70) 50%, rgba(230, 127, 164, 0.26) 100%),
        url('../img/proud-supporter.jpg') center/cover no-repeat;
}

body.page-id-7 .page-hero,
body.page-id-6 .page-hero,
body.page-id-9 .page-hero,
body.page-id-12 .page-hero {
    background:
        linear-gradient(115deg, rgba(19, 33, 43, 0.42) 0%, rgba(19, 33, 43, 0.28) 50%, rgba(159, 140, 255, 0.10) 100%);
}

body.page-id-7 .page-hero,
body.page-id-7 .page-hero--split-alt {
    background:
        linear-gradient(115deg, rgba(19, 33, 43, 0.42) 0%, rgba(19, 33, 43, 0.26) 54%, rgba(228, 109, 59, 0.10) 100%),
        url('https://babysittingcalgary-epsilon.ddev.site/wp-content/uploads/2026/04/pexels-photo-7869800-scaled.jpeg') center/cover no-repeat;
}

body.page-id-6 .page-hero,
body.page-id-6 .page-hero--split {
    background:
        linear-gradient(115deg, rgba(19, 33, 43, 0.38) 0%, rgba(19, 33, 43, 0.24) 54%, rgba(15, 155, 180, 0.10) 100%),
        url('https://babysittingcalgary-epsilon.ddev.site/wp-content/uploads/2026/04/pexels-photo-8088088-scaled.jpeg') center/cover no-repeat;
}

body.page-id-9 .page-hero {
    background:
        linear-gradient(115deg, rgba(19, 33, 43, 0.44) 0%, rgba(19, 33, 43, 0.28) 52%, rgba(143, 104, 194, 0.10) 100%),
        url('https://babysittingcalgary-epsilon.ddev.site/wp-content/uploads/2026/04/pexels-photo-8613118-scaled.jpeg') center/cover no-repeat;
}

body.page-id-12 .page-hero {
    background:
        linear-gradient(115deg, rgba(19, 33, 43, 0.40) 0%, rgba(19, 33, 43, 0.24) 50%, rgba(228, 109, 59, 0.10) 100%),
        url('https://babysittingcalgary-epsilon.ddev.site/wp-content/uploads/2026/04/pexels-photo-8088236-scaled.jpeg') center/cover no-repeat;
}

body.page-id-5 .bc-kicker,
body.page-id-5 .page-hero__eyebrow {
    background: linear-gradient(90deg, rgba(255, 233, 167, 0.30), rgba(191, 233, 255, 0.18));
}

body.page-id-8 .bc-kicker,
body.page-id-8 .page-hero__eyebrow {
    background: linear-gradient(90deg, rgba(221, 207, 252, 0.30), rgba(191, 233, 255, 0.16));
}

body.page-id-10 .bc-kicker,
body.page-id-10 .page-hero__eyebrow {
    background: linear-gradient(90deg, rgba(200, 241, 223, 0.30), rgba(255, 211, 228, 0.18));
}

.schedule-section > .schedule-card:nth-child(1) {
    --bc-card-bar: var(--bc-sky-deep);
}

.schedule-section > .schedule-card:nth-child(2) {
    --bc-card-bar: var(--bc-lilac-deep);
}

body.page-id-5 .bc-grid--3 > .wp-block-column:nth-child(1) .bc-card,
body.page-id-5 .bc-grid--3 > .wp-block-column:nth-child(1) .section-panel,
body.page-id-5 .bc-grid--4 > .wp-block-column:nth-child(1) .bc-photo-card {
    --bc-card-bar: var(--bc-sky-deep);
}

body.page-id-5 .bc-grid--3 > .wp-block-column:nth-child(2) .bc-card,
body.page-id-5 .bc-grid--3 > .wp-block-column:nth-child(2) .section-panel,
body.page-id-5 .bc-grid--4 > .wp-block-column:nth-child(2) .bc-photo-card {
    --bc-card-bar: var(--bc-mint-deep);
}

body.page-id-5 .bc-grid--3 > .wp-block-column:nth-child(3) .bc-card,
body.page-id-5 .bc-grid--3 > .wp-block-column:nth-child(3) .section-panel,
body.page-id-5 .bc-grid--4 > .wp-block-column:nth-child(3) .bc-photo-card {
    --bc-card-bar: var(--bc-pink-deep);
}

body.page-id-5 .bc-grid--4 > .wp-block-column:nth-child(4) .bc-photo-card {
    --bc-card-bar: var(--bc-lilac-deep);
}

.page-hero--text,
.bc-panel,
.bc-section {
    position: relative;
}

@media (max-width: 1100px) {
    .site-header__top {
        grid-template-columns: 1fr auto;
    }

    .site-brand {
        grid-template-columns: 48px minmax(0, 1fr);
        column-gap: 12px;
    }

    .site-brand__mark {
        width: 48px;
        height: 48px;
        grid-row: 1 / span 2;
    }

    .site-header__cta {
        grid-column: 2;
        grid-row: 1 / span 2;
        align-self: start;
    }

    .site-header__meta {
        grid-column: 2;
        grid-row: 2;
        align-items: flex-end;
    }

    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .bc-badge-card,
    .bc-grid--4 {
        gap: 20px;
    }

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

@media (max-width: 782px) {
    .site-shell {
        margin: 0;
        border-radius: 0;
        border-left: 0;
        border-right: 0;
    }

    .site-header,
    .site-content,
    .site-footer {
        padding-left: 18px;
        padding-right: 18px;
    }

    .site-header__top {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .site-brand {
        grid-template-columns: 44px minmax(0, 1fr);
        column-gap: 10px;
    }

    .site-brand__mark {
        width: 44px;
        height: 44px;
    }

    .site-header__meta {
        align-items: flex-start;
    }

    .site-header__cta {
        justify-self: start;
    }

    .site-nav__list {
        flex-wrap: wrap;
    }

    .page-hero__inner {
        padding: 34px 22px;
    }

    .page-hero {
        min-height: 320px;
    }

    .page-hero__title {
        max-width: none;
    }

    .bc-grid--2,
    .bc-grid--3,
    .bc-grid--4,
    .site-footer__grid,
    .bc-badge-card {
        grid-template-columns: 1fr;
    }

    .bc-badge-card {
        gap: 18px;
    }

    .bc-badge-card img {
        width: min(220px, 100%);
    }

    .schedule-table {
        overflow-x: auto;
    }

    .schedule-table table {
        min-width: 640px;
    }

    .schedule-table th,
    .schedule-table td {
        padding: 12px 14px;
    }

    .schedule-legend p {
        gap: 8px;
    }
}
