/* =========================================================
   Theme variables
   ========================================================= */

:root {
    --rb-green: #60BF7D;
    --rb-green-dark: #0b2f22;
    --rb-green-button: #247344;
    --rb-green-link: #2f8f55;
    --rb-green-hover: #419c61;
    --rb-green-active: #378a54;
    --rb-cream: #f5f1e6;

    --rb-navbar-bg: #16332B;
    --rb-teal: #4EC1BA;
    --rb-lime: #71BF44;
    --rb-white: #ffffff;

    --rb-text: #222222;
    --rb-text-soft: #5d6763;
    --rb-dropdown-text: #1F2328;

    --rb-border: rgba(15, 63, 46, 0.10);
    --rb-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    /* Bootstrap theme overrides */
    --bs-primary: #60BF7D;
    --bs-primary-rgb: 96, 191, 125;
    --bs-link-color: var(--rb-green-link);
    --bs-link-hover-color: var(--rb-green-button);
    --bs-focus-ring-color: rgba(96, 191, 125, 0.25);
}


/* =========================================================
   Base
   ========================================================= */

body {
    font-family: 'Nunito Sans', sans-serif;
    background-color: var(--rb-white);
    color: var(--rb-text);
}

.min-w-0 {
    min-width: 0;
}


/* =========================================================
   Navigation
   ========================================================= */

.rb-navbar {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    background: var(--rb-navbar-bg);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.12);
}

.rb-brand {
    display: flex;
    align-items: center;
    margin-right: 1.25rem;
    padding-top: 0;
    padding-bottom: 0;
}

.rb-logo {
    display: block;
    width: auto;
    height: 44px;
}

.rb-navbar .navbar-nav {
    --bs-nav-link-color: rgba(255, 255, 255, 0.92);
    --bs-nav-link-hover-color: var(--rb-white);
}

.rb-navbar .nav-link {
    padding: 0.75rem 1rem;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 500;
    opacity: 1;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.rb-navbar .nav-link:hover,
.rb-navbar .nav-link:focus {
    background: rgba(78, 193, 186, 0.14);
    color: var(--rb-white);
    text-decoration: none;
}

.rb-navbar .nav-link.active,
.rb-navbar .nav-item.active > .nav-link,
.rb-navbar .show > .nav-link {
    background:
        linear-gradient(
            90deg,
            rgba(78, 193, 186, 0.22),
            rgba(96, 191, 125, 0.22)
        );
    color: var(--rb-white);
    text-decoration: none;
}

.rb-navbar .navbar-toggler {
    padding: 0.4rem 0.65rem;
    border-color: rgba(255, 255, 255, 0.18);
}

.rb-navbar .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(78, 193, 186, 0.22);
}

.rb-navbar .dropdown-menu {
    min-width: 15rem;
    padding: 0.5rem;
    border: 0;
    border-radius: 16px;
    background: var(--rb-white);
    box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.12);
}

.rb-navbar .dropdown-item {
    padding: 0.6rem 0.85rem;
    border-radius: 12px;
    color: var(--rb-dropdown-text);
}

.rb-navbar .dropdown-item:hover,
.rb-navbar .dropdown-item:focus {
    background: rgba(78, 193, 186, 0.10);
    color: var(--rb-navbar-bg);
}

.rb-navbar .dropdown-item.active,
.rb-navbar .dropdown-item:active {
    background: rgba(96, 191, 125, 0.18);
    color: var(--rb-navbar-bg);
}

/* =========================================================
   Keyboard focus
   ========================================================= */

.rb-navbar .nav-link:focus-visible,
.btn-rb:focus-visible,
.btn-rb-dark:focus-visible,
.rb-name a:focus-visible {
    outline: 2px solid var(--rb-teal);
    outline-offset: 2px;
}

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


.rb-intro-section {
    position: relative;
    padding: 5.5rem 0;
    background:
        radial-gradient(
            circle at top right,
            rgba(var(--bs-primary-rgb), 0.12),
            transparent 30rem
        ),
        var(--bs-body-bg);
}

/* =========================================================
   Hero
   ========================================================= */

.hero {
    position: relative;
    background-image: var(
        --rb-hero-image,
        url("/assets/images/radiobury-hero.png")
    );
    background-position: var(--rb-hero-position, center);
    background-size: cover;
    background-repeat: no-repeat;
    color: var(--rb-white);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(15, 63, 46, 0.75);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
}

.hero.hero--full {
    display: flex;
    align-items: center;
    min-height: 70vh;
}

.hero.hero--compact {
    padding: 2.5rem 0;
    background-position: center 30%;
}

.hero.hero--compact::after {
    background: rgba(15, 63, 46, 0.55);
}

.hero.hero--compact h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

@media (max-width: 575.98px) {
    .hero.hero--compact {
        padding: 2rem 0;
    }
}

.hero-actions:has(> .d-flex:empty) {
    display: none;
}

/* =========================================================
   Buttons
   ========================================================= */

.btn-rb,
.btn-rb-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border: 0;
    border-radius: 50px;
    color: var(--rb-white);
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.btn-rb {
    background: var(--rb-green-button);
}

.btn-rb-dark {
    background: var(--rb-navbar-bg);
}

.hero .btn-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 700;
    line-height: 1.2;
}

.btn-rb:hover,
.btn-rb:focus,
.btn-rb-dark:hover,
.btn-rb-dark:focus {
    background: var(--rb-green-dark);
    color: var(--rb-white);
    text-decoration: none;
    transform: translateY(-1px);
}

.rb-hero--landing h1 {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.03em;
}

/* =========================================================
   Listen Again control
   Shared across schedule and show pages
   ========================================================= */

.rb-listen-again-link {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    color: var(--rb-navbar-bg, #16332B);
    font-size: .9rem;
    font-weight: 800;
    text-decoration: none;
    transition:
        color .16s ease,
        transform .16s ease;
}

.rb-listen-again-link:hover,
.rb-listen-again-link:focus-visible {
    color: var(--rb-green-dark, #0b2f22);
    transform: translateY(-1px);
}

.rb-listen-again-link:focus-visible {
    outline: 3px solid rgba(96, 191, 125, .25);
    outline-offset: 3px;
    border-radius: 999px;
}

.rb-listen-again-play {
    display: inline-flex;
    width: 2rem;
    height: 2rem;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(96, 191, 125, .18);
    color: var(--rb-green, #60BF7D);
    transition:
        background-color .16s ease,
        color .16s ease;
}

.rb-listen-again-link:hover .rb-listen-again-play,
.rb-listen-again-link:focus-visible .rb-listen-again-play {
    background: var(--rb-green, #60BF7D);
    color: var(--rb-green-dark, #0b2f22);
}

.rb-listen-again-play i {
    margin-left: .08rem;
    font-size: .7rem;
}

@media (max-width: 767.98px) {
    .rb-listen-again-link {
        font-size: .84rem;
    }

    .rb-listen-again-play {
        width: 1.8rem;
        height: 1.8rem;
    }
}

/* =========================================================
   Bootstrap controls
   ========================================================= */

.btn-primary {
    --bs-btn-color: var(--rb-green-dark);
    --bs-btn-bg: var(--rb-green);
    --bs-btn-border-color: var(--rb-green);

    --bs-btn-hover-color: var(--rb-white);
    --bs-btn-hover-bg: var(--rb-green-hover);
    --bs-btn-hover-border-color: var(--rb-green-hover);

    --bs-btn-focus-shadow-rgb: 96, 191, 125;

    --bs-btn-active-color: var(--rb-white);
    --bs-btn-active-bg: var(--rb-green-active);
    --bs-btn-active-border-color: var(--rb-green-active);

    --bs-btn-disabled-color: var(--rb-green-dark);
    --bs-btn-disabled-bg: var(--rb-green);
    --bs-btn-disabled-border-color: var(--rb-green);
}

.btn-outline-primary {
    --bs-btn-color: var(--rb-green-link);
    --bs-btn-border-color: var(--rb-green);

    --bs-btn-hover-color: var(--rb-white);
    --bs-btn-hover-bg: var(--rb-green);
    --bs-btn-hover-border-color: var(--rb-green);

    --bs-btn-focus-shadow-rgb: 96, 191, 125;

    --bs-btn-active-color: var(--rb-white);
    --bs-btn-active-bg: var(--rb-green-hover);
    --bs-btn-active-border-color: var(--rb-green-hover);
}

.form-check-input:checked {
    background-color: var(--rb-green);
    border-color: var(--rb-green);
}

.form-check-input:focus {
    border-color: var(--rb-green);
    box-shadow:
        0 0 0 0.25rem
        rgba(96, 191, 125, 0.25);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--rb-green);
    box-shadow:
        0 0 0 0.25rem
        rgba(96, 191, 125, 0.25);
}

.form-range::-webkit-slider-thumb {
    background-color: var(--rb-green);
}

.form-range::-moz-range-thumb {
    background-color: var(--rb-green);
}

.accordion {
    --bs-accordion-active-color: var(--rb-green-dark);
    --bs-accordion-active-bg: rgba(96, 191, 125, 0.12);
    --bs-accordion-btn-focus-border-color: var(--rb-green);
    --bs-accordion-btn-focus-box-shadow:
        0 0 0 0.25rem rgba(96, 191, 125, 0.25);
}

.page-link {
    --bs-pagination-color: var(--rb-green-link);
    --bs-pagination-hover-color: var(--rb-green-dark);
    --bs-pagination-hover-bg: rgba(96, 191, 125, 0.10);
    --bs-pagination-hover-border-color:
        rgba(96, 191, 125, 0.35);

    --bs-pagination-focus-color: var(--rb-green-dark);
    --bs-pagination-focus-box-shadow:
        0 0 0 0.25rem rgba(96, 191, 125, 0.25);

    --bs-pagination-active-bg: var(--rb-green);
    --bs-pagination-active-border-color: var(--rb-green);
}

.nav-pills {
    --bs-nav-pills-link-active-bg: var(--rb-green);
}


/* =========================================================
   General sections
   ========================================================= */

.section {
    padding: 4.5rem 0;
}

.section-title {
    margin-bottom: 0.75rem;
    color: var(--rb-navbar-bg);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
}

.section-intro {
    max-width: 760px;
    color: var(--rb-text-soft);
    font-size: 1.05rem;
}


/* =========================================================
   Listen boxes
   ========================================================= */

.listen-box {
    height: 100%;
    padding: 1.6rem 1rem;
    border: 1px solid var(--rb-border);
    border-radius: 22px;
    background: var(--rb-white);
    box-shadow: var(--rb-shadow);
    text-align: center;
}

.listen-box .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    margin: 0 auto 1rem;
    border-radius: 18px;
    background:
        linear-gradient(
            135deg,
            rgba(78, 193, 186, 0.14),
            rgba(96, 191, 125, 0.20)
        );
    color: var(--rb-navbar-bg);
    font-size: 1.45rem;
}

.listen-box h5 {
    margin-bottom: 0.45rem;
    font-weight: 800;
}

.listen-box p {
    margin-bottom: 0;
    color: var(--rb-text-soft);
}


/* =========================================================
   Presenter directory cards
   ========================================================= */

.rb-presenter {
    position: relative;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--rb-shadow);
    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease;
}

.rb-presenter:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
}

.rb-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(15, 63, 46, 0.10);
    color: #0f3f2e;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.rb-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rb-name {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.2;
}

.rb-name a {
    color: inherit;
}

.rb-name a:hover,
.rb-name a:focus {
    color: inherit;
    text-decoration: none;
}

.rb-show {
    line-height: 1.3;
}

.rb-meta {
    color: rgba(0, 0, 0, 0.68);
    line-height: 1.35;
}

.rb-chevron {
    font-size: 1.6rem;
    line-height: 1;
    opacity: 0.45;
    pointer-events: none;
}


/* =========================================================
   Presenter show list
   ========================================================= */

.rb-presenter-shows {
    display: grid;
    gap: 1rem;
}

.rb-presenter-show {
    overflow: hidden;
    border: 1px solid var(--bs-border-color);
    border-radius: 1rem;
    background: var(--bs-body-bg);
}

.rb-presenter-show__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.25rem 1.4rem;
    color: inherit;
    text-decoration: none;
    transition:
        border-color 0.18s ease,
        background-color 0.18s ease;
}

.rb-presenter-show__link:hover,
.rb-presenter-show__link:focus {
    background: rgba(var(--bs-primary-rgb), 0.055);
    color: inherit;
    text-decoration: none;
}

.rb-presenter-show__link:focus-visible {
    outline: 3px solid rgba(var(--bs-primary-rgb), 0.3);
    outline-offset: -3px;
}

.rb-presenter-show__content {
    min-width: 0;
}

.rb-presenter-show__title {
    margin: 0 0 0.35rem;
    color: var(--bs-emphasis-color);
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.25;
}

.rb-presenter-show__description {
    max-width: 62ch;
    margin: 0;
    color: var(--bs-secondary-color);
    font-size: 0.95rem;
    line-height: 1.55;
}

.rb-presenter-show__meta {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 1rem;
}

.rb-presenter-show__schedule {
    color: var(--bs-primary);
    font-size: 0.9rem;
    font-weight: 700;
    text-align: right;
    white-space: nowrap;
}

.rb-presenter-show__arrow {
    flex: 0 0 auto;
    color: var(--bs-primary);
    font-size: 0.85rem;
}


/* =========================================================
   Individual show page
   ========================================================= */

.show-image-wrapper {
    max-width: 520px;
}

.show-image {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.show-presenter {
    color: var(--rb-green-dark);
}

.show-summary {
    max-width: 52rem;
}

.show-content {
    font-size: 1.05rem;
    line-height: 1.75;
}


/* =========================================================
   Show directory
   ========================================================= */

.rb-shows-index {
    background:
        radial-gradient(
            circle at top right,
            rgba(var(--bs-primary-rgb), 0.09),
            transparent 34rem
        ),
        var(--bs-body-bg);
}

.rb-shows-index__header {
    max-width: 760px;
}

.rb-section-kicker {
    display: inline-block;
    margin-bottom: 0.65rem;
    color: var(--bs-primary);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}


/* =========================================================
   Show grid
   ========================================================= */

.rb-shows-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}


/* =========================================================
   Show card
   ========================================================= */

.rb-show-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--bs-border-color);
    border-radius: 1.25rem;
    background: var(--bs-body-bg);
    box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.07);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease;
}

.rb-show-card:hover {
    transform: translateY(-5px);
    border-color: rgba(var(--bs-primary-rgb), 0.35);
    box-shadow: 0 1.25rem 2.75rem rgba(0, 0, 0, 0.12);
}


/* =========================================================
   Whole-card link
   ========================================================= */

.rb-show-card__clickable {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-width: 0;
    color: inherit;
    text-decoration: none;
}

.rb-show-card__clickable:hover {
    color: inherit;
    text-decoration: none;
}

.rb-show-card__clickable:focus-visible {
    outline: 3px solid rgba(var(--bs-primary-rgb), 0.38);
    outline-offset: -3px;
    border-radius: inherit;
}


/* =========================================================
   Show-card image
   ========================================================= */

.rb-show-card__image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: var(--bs-tertiary-bg);
}

.rb-show-card__image {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 350ms ease;
}

.rb-show-card:hover .rb-show-card__image {
    transform: scale(1.045);
}


/* =========================================================
   Show-card fallback
   ========================================================= */

.rb-show-card__placeholder {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 2rem;
    background:
        radial-gradient(
            circle at 75% 15%,
            rgba(255, 255, 255, 0.18),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            var(--bs-primary),
            color-mix(
                in srgb,
                var(--bs-primary) 62%,
                #10251b
            )
        );
    color: #fff;
    text-align: center;
}

.rb-show-card__placeholder-mark {
    display: grid;
    place-items: center;
    width: 4.75rem;
    height: 4.75rem;
    margin-bottom: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.65);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.rb-show-card__placeholder-name {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rb-show-card__placeholder-subtitle {
    margin-top: 0.35rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}


/* =========================================================
   Show-card body
   ========================================================= */

.rb-show-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.5rem;
}

.rb-show-card__title {
    margin: 0 0 0.35rem;
    color: var(--bs-emphasis-color);
    font-size: clamp(1.3rem, 2vw, 1.65rem);
    font-weight: 800;
    line-height: 1.12;
    transition: color 180ms ease;
}

.rb-show-card:hover .rb-show-card__title {
    color: var(--bs-primary);
}

.rb-show-card__presenter {
    margin-bottom: 0.85rem;
    color: var(--bs-secondary-color);
    font-weight: 600;
    line-height: 1.4;
}

.rb-show-card__description {
    margin: 0;
    color: var(--bs-secondary-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

.rb-show-card__time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: var(--bs-primary);
    font-size: 0.85rem;
    font-weight: 700;
}


/* =========================================================
   Footer
   ========================================================= */

.rb-footer {
    padding: 2rem 0;
    background: var(--rb-green-dark);
    color: var(--rb-white);
}

.rb-footer a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.rb-footer a:hover,
.rb-footer a:focus {
    color: var(--rb-white);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.rb-footer-title {
    margin: 0 0 1rem;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.rb-footer-brand {
    margin: 0 0 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.rb-footer .list-unstyled {
    margin: 0;
    padding: 0;
}

.rb-footer .list-unstyled li + li {
    margin-top: 0.5rem;
}

.rb-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 1rem;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.rb-socials a:hover,
.rb-socials a:focus {
    background: rgba(255, 255, 255, 0.16);
    text-decoration: none;
    transform: translateY(-1px);
}

.rb-footer-login {
    color: inherit;
    opacity: 0.65;
    font-size: 0.8125rem;
    text-decoration: none;
    transition:
        color 0.2s ease,
        opacity 0.2s ease;
}

.rb-footer-login:hover,
.rb-footer-login:focus-visible {
    color: var(--rb-green);
    opacity: 1;
    text-decoration: none;
}

.rb-footer-login:focus-visible {
    outline: 0;
    border-radius: 0.25rem;
    box-shadow:
        0 0 0 0.2rem
        var(--bs-focus-ring-color);
}


/* =========================================================
   Responsive: desktop
   ========================================================= */

@media (min-width: 992px) {
    .rb-logo {
        height: 50px;
    }
}


/* =========================================================
   Responsive: tablet
   ========================================================= */

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

    .show-image-wrapper {
        max-width: 420px;
        margin-inline: auto;
    }

    .rb-shows-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem;
    }
}


/* =========================================================
   Responsive: mobile
   ========================================================= */

@media (max-width: 575.98px) {
    .rb-shows-index {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .rb-shows-index__header {
        margin-bottom: 2rem;
    }

    .rb-shows-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .rb-show-card {
        border-radius: 1rem;
    }

    .rb-show-card__body {
        padding: 1.25rem;
    }

    .rb-show-card__title {
        font-size: 1.45rem;
    }

    .rb-show-card__description {
        font-size: 0.925rem;
    }

    .rb-presenter-show__link {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.8rem;
        padding: 1.1rem;
    }

    .rb-presenter-show__title {
        font-size: 1.1rem;
    }

    .rb-presenter-show__meta {
        width: 100%;
        justify-content: space-between;
    }

    .rb-presenter-show__schedule {
        text-align: left;
        white-space: normal;
    }
}


/* =========================================================
   Reduced motion
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
    .rb-show-card,
    .rb-show-card__image,
    .rb-show-card__title,
    .rb-feature-card {
        transition: none;
    }

    .rb-show-card:hover,
    .rb-feature-card:hover {
        transform: none;
    }

    .rb-show-card:hover .rb-show-card__image {
        transform: none;
    }
}

/* =========================================================
   Call to action
   ========================================================= */

.rb-cta {
    padding: 5.5rem 0;
    border-top: 1px solid rgba(var(--bs-primary-rgb), 0.15);
    background:
        linear-gradient(
            135deg,
            rgba(var(--bs-primary-rgb), 0.12),
            rgba(78, 193, 186, 0.05)
        );
}

.rb-cta .container {
    max-width: 68rem;
}

.rb-cta .rb-section-kicker {
    margin-bottom: 1rem;
}

.rb-cta h2 {
    max-width: 22ch;
    margin-right: auto;
    margin-bottom: 1rem;
    margin-left: auto;
    color: var(--rb-navbar-bg);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.035em;
    line-height: 1.08;
}

.rb-cta .lead {
    max-width: 48rem;
    margin-right: auto;
    margin-left: auto;
    color: var(--rb-text-soft);
    line-height: 1.7;
}

.rb-cta .btn {
    padding: 0.8rem 1.8rem;
    font-size: 1.05rem;
}

@media (max-width: 767.98px) {
    .rb-cta {
        padding: 4rem 0;
    }

    .rb-cta h2 {
        font-size: clamp(1.75rem, 7vw, 2.2rem);
        line-height: 1.1;
    }
}

.rb-footer-brand a {
    color: inherit;
    text-decoration: none;
}

.rb-footer-brand a:hover,
.rb-footer-brand a:focus-visible {
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.rb-info-icon {
    color: var(--rb-green);
}

/* =========================================================
   Feature grid
   ========================================================= */

.rb-feature-grid {
    padding: 0 0 5.5rem;
    background: var(--bs-body-bg);
}

.rb-feature-grid__header {
    margin-bottom: 2rem;
}

.rb-feature-grid__items > [class*="col-"] {
    display: flex;
}


/* =========================================================
   Feature cards
   ========================================================= */

.rb-feature-card {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    padding: 1.75rem;
    overflow: hidden;
    border: 1px solid var(--bs-border-color);
    border-radius: 1.25rem;
    background: var(--bs-body-bg);
    box-shadow: 0 0.65rem 1.8rem rgba(0, 0, 0, 0.055);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease;
}

.rb-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--bs-primary-rgb), 0.35);
    box-shadow: 0 1.15rem 2.4rem rgba(0, 0, 0, 0.095);
}

.rb-feature-card__icon {
    display: grid;
    place-items: center;
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 1.2rem;
    border-radius: 1rem;
    background:
        linear-gradient(
            135deg,
            rgba(var(--bs-primary-rgb), 0.18),
            rgba(78, 193, 186, 0.12)
        );
    color: var(--rb-green-dark);
    font-size: 1.35rem;
}

.rb-feature-card__heading {
    margin-bottom: 0.65rem;
    color: var(--bs-emphasis-color);
    font-size: 1.2rem;
    font-weight: 800;
}

.rb-feature-card__text {
    margin-bottom: 0;
    color: var(--bs-secondary-color);
    line-height: 1.65;
}


/* =========================================================
   Feature grid responsive
   ========================================================= */

@media (max-width: 991.98px) {
    .rb-feature-grid {
        padding-bottom: 4rem;
    }
}

@media (max-width: 575.98px) {
    .rb-feature-card {
        padding: 1.4rem;
    }
}



/* =========================================================
   Feature showcase
   ========================================================= */

.rb-feature-showcase {
    padding: 5.5rem 0;
    background: var(--rb-cream);
}


/* =========================================================
   Feature showcase media
   ========================================================= */

.rb-feature-showcase__media {
    position: relative;
    min-height: 34rem;
    overflow: hidden;
    border-radius: 1.5rem;
    background-image: var(--rb-feature-showcase-image);
    background-position: var(
        --rb-feature-showcase-position,
        center
    );
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0 1.5rem 3.5rem rgba(0, 0, 0, 0.15);
}


/* =========================================================
   Feature showcase badge
   ========================================================= */

.rb-feature-showcase__badge {
    position: absolute;
    right: 1.25rem;
    bottom: 1.25rem;
    max-width: 15rem;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    background: rgba(11, 47, 34, 0.9);
    color: #fff;
    box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(10px);
}

.rb-feature-showcase__badge strong {
    display: block;
    margin-bottom: 0.15rem;
    color: var(--rb-green);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rb-feature-showcase__badge span {
    display: block;
    font-size: 0.92rem;
    line-height: 1.45;
}


/* =========================================================
   Feature showcase content
   ========================================================= */

.rb-feature-showcase__content {
    max-width: 35rem;
}

.rb-feature-showcase__items {
    display: grid;
    gap: 1.25rem;
    margin-top: 2rem;
}


/* =========================================================
   Feature item
   ========================================================= */

.rb-feature-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
}

.rb-feature-item__icon {
    display: grid;
    place-items: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 999px;
    background: var(--rb-navbar-bg);
    color: var(--rb-green);
    font-size: 1rem;
}

.rb-feature-item__heading {
    margin: 0 0 0.25rem;
    color: var(--rb-navbar-bg);
    font-size: 1.05rem;
    font-weight: 800;
}

.rb-feature-item__text {
    margin: 0;
    color: var(--rb-text-soft);
    line-height: 1.6;
}

/* =========================================================
   Feature card number
   ========================================================= */

.rb-feature-card__number {
    display: grid;
    place-items: center;
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 1.2rem;
    border-radius: 999px;
    background: var(--rb-navbar-bg);
    color: var(--rb-green);
    font-size: 1.15rem;
    font-weight: 800;
}


/* =========================================================
   Feature grid - steps
   ========================================================= */

.rb-feature-grid--steps {
    padding: 0 0 5.5rem;
    background: var(--bs-body-bg);
}

.rb-feature-grid--steps .rb-feature-grid__header {
    margin-bottom: 1.5rem;
}

.rb-feature-grid--steps .rb-feature-card {
    border: 0;
    border-top: 3px solid var(--rb-green);
    border-radius: 0;
    background: rgba(var(--bs-primary-rgb), 0.045);
    box-shadow: none;
}

.rb-feature-grid--steps .rb-feature-card:hover {
    transform: none;
    border-color: var(--rb-green);
    box-shadow: none;
}

.rb-feature-grid--steps .rb-feature-card__number {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 2.25rem;
    height: 2.25rem;
    margin-bottom: 1rem;
    padding: 0 0.65rem;
    border-radius: 999px;
    background: var(--rb-green);
    color: var(--rb-green-dark);
    font-size: inherit;
    font-weight: 900;
}

.rb-feature-grid--steps .rb-feature-card__heading {
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}

.rb-feature-grid--steps .rb-feature-card__text {
    color: var(--bs-secondary-color);
}

@media (max-width: 767.98px) {
    .rb-feature-grid--steps {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

/* =========================================================
   Feature showcase - media right
   ========================================================= */

@media (min-width: 992px) {

    .rb-feature-showcase--media-right .col-lg-7 {
        order: 2;
    }

    .rb-feature-showcase--media-right .col-lg-5 {
        order: 1;
    }
}

/* =========================================================
   Highlight panel
   ========================================================= */

.rb-highlight-panel {
    padding: 0 0 5.5rem;
    background: var(--bs-body-bg);
}

.rb-highlight-panel__inner {
    position: relative;
    overflow: hidden;
    padding: clamp(2rem, 5vw, 4rem);
    border-radius: 1.75rem;
    background:
        radial-gradient(
            circle at top right,
            rgba(96, 191, 125, 0.22),
            transparent 24rem
        ),
        var(--rb-navbar-bg);
    color: #fff;
}

.rb-highlight-panel__inner::after {
    content: "";
    position: absolute;
    right: -5rem;
    bottom: -8rem;
    width: 22rem;
    height: 22rem;
    border: 2.5rem solid rgba(255, 255, 255, 0.035);
    border-radius: 50%;
}

.rb-highlight-panel__content {
    position: relative;
    z-index: 2;
    max-width: 48rem;
}

.rb-highlight-panel__heading {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 900;
    letter-spacing: -0.035em;
    text-wrap: balance;
}

.rb-highlight-panel__text {
    max-width: 44rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.08rem;
    line-height: 1.75;
}


/* =========================================================
   Find Us
   ========================================================= */

.rb-find-us-header {
    max-width: 760px;
}


/* =========================================================
   Find Us - location
   ========================================================= */

.rb-find-us-location {
    background:
        radial-gradient(
            circle at top right,
            rgba(var(--bs-primary-rgb), 0.09),
            transparent 32rem
        ),
        var(--rb-cream);
}

.rb-find-us-address {
    margin-bottom: 1.5rem;
    color: var(--rb-navbar-bg);
    font-size: 1.15rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.65;
}


/* =========================================================
   Find Us - location pills
   ========================================================= */

.rb-find-us-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.rb-find-us-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.8rem;
    border: 1px solid var(--rb-border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    color: var(--rb-green-dark);
    font-size: 0.9rem;
    font-weight: 700;
}

.rb-find-us-pill i {
    color: var(--rb-green-button);
}


/* =========================================================
   Find Us - important notice
   ========================================================= */

.rb-find-us-notice {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1rem;
    padding: 1.25rem;
    border-left: 4px solid var(--rb-green);
    border-radius: 0.75rem;
    background: rgba(var(--bs-primary-rgb), 0.10);
}

.rb-find-us-notice__icon {
    padding-top: 0.1rem;
    color: var(--rb-green-button);
    font-size: 1.25rem;
}

.rb-find-us-notice strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--rb-green-dark);
}

.rb-find-us-notice p {
    color: var(--rb-text-soft);
    line-height: 1.6;
}


/* =========================================================
   Find Us - map
   ========================================================= */

.rb-find-us-map {
    position: relative;
    min-height: 26rem;
    overflow: hidden;
    border: 1px solid var(--rb-border);
    border-radius: 1.5rem;
    background: var(--bs-tertiary-bg);
    box-shadow: var(--rb-shadow);
}

.rb-find-us-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


/* =========================================================
   Find Us - entrances
   ========================================================= */

.rb-find-us-entrances {
    background: var(--bs-body-bg);
}

.rb-find-us-photo {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border: 1px solid var(--rb-border);
    border-radius: 1.25rem;
    background: var(--bs-tertiary-bg);
    box-shadow: var(--rb-shadow);
}

.rb-find-us-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rb-find-us-photo__placeholder {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background:
        linear-gradient(
            135deg,
            rgba(var(--bs-primary-rgb), 0.08),
            rgba(78, 193, 186, 0.08)
        );
    color: var(--rb-text-soft);
    text-align: center;
}

.rb-find-us-photo__placeholder i {
    margin-bottom: 0.75rem;
    color: var(--rb-green-button);
    font-size: 2.25rem;
}

.rb-find-us-photo__placeholder strong {
    margin-bottom: 0.25rem;
    color: var(--rb-navbar-bg);
    font-size: 1.05rem;
}

.rb-find-us-photo__placeholder span {
    max-width: 28rem;
    font-size: 0.9rem;
}


/* =========================================================
   Find Us - travel
   ========================================================= */

.rb-find-us-travel {
    background:
        linear-gradient(
            135deg,
            rgba(var(--bs-primary-rgb), 0.07),
            rgba(78, 193, 186, 0.035)
        );
}

.rb-find-us-steps {
    display: grid;
    gap: 1.5rem;
}

.rb-find-us-step {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
}

.rb-find-us-step__number {
    display: grid;
    place-items: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    background: var(--rb-navbar-bg);
    color: var(--rb-green);
    font-weight: 900;
}

.rb-find-us-step__heading {
    margin: 0 0 0.25rem;
    color: var(--rb-navbar-bg);
    font-size: 1.05rem;
    font-weight: 800;
}

.rb-find-us-step__text {
    margin: 0;
    color: var(--rb-text-soft);
    line-height: 1.6;
}


/* =========================================================
   Find Us - accessibility
   ========================================================= */

.rb-find-us-accessibility {
    background: var(--bs-body-bg);
}

.rb-find-us-access-lead {
    max-width: 44rem;
    margin-bottom: 0.75rem;
    color: var(--rb-text);
    font-size: 1.1rem;
    line-height: 1.7;
}


/* =========================================================
   Find Us - help
   ========================================================= */

.rb-find-us-help {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1.25rem;
    padding: 1.75rem;
    border: 1px solid var(--rb-border);
    border-radius: 1.25rem;
    background: var(--rb-white);
    box-shadow: var(--rb-shadow);
}

.rb-find-us-help__icon {
    display: grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    background:
        linear-gradient(
            135deg,
            rgba(var(--bs-primary-rgb), 0.18),
            rgba(78, 193, 186, 0.12)
        );
    color: var(--rb-green-dark);
    font-size: 1.2rem;
}

.rb-find-us-help__heading {
    margin: 0 0 0.5rem;
    color: var(--rb-navbar-bg);
    font-size: 1.2rem;
    font-weight: 800;
}

.rb-find-us-help__text {
    margin-bottom: 1.25rem;
    color: var(--rb-text-soft);
    line-height: 1.6;
}


/* =========================================================
   Find Us - responsive
   ========================================================= */

@media (max-width: 991.98px) {

    .rb-find-us-map {
        min-height: 24rem;
    }
}

@media (max-width: 575.98px) {

    .rb-find-us-map {
        min-height: 20rem;
        border-radius: 1rem;
    }

    .rb-find-us-photo {
        border-radius: 1rem;
    }

    .rb-find-us-help {
        grid-template-columns: 1fr;
        padding: 1.4rem;
    }
}

@media (max-width: 767.98px) {
    .rb-highlight-panel {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

@media (max-width: 575.98px) {
    .rb-highlight-panel__inner {
        border-radius: 1.25rem;
    }
}

/* =========================================================
   Feature showcase responsive
   ========================================================= */

@media (max-width: 991.98px) {

    .rb-feature-showcase__media {
        min-height: 27rem;
    }
}

@media (max-width: 767.98px) {

    .rb-feature-showcase {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .rb-feature-showcase__media {
        min-height: 22rem;
    }

    .rb-feature-showcase__badge {
        right: 0.75rem;
        bottom: 0.75rem;
        left: 0.75rem;
        max-width: none;
    }
}

@media (max-width: 767.98px) {
    .hero.rb-hero--mobile-primary-only {
        min-height: auto;
        padding-top: 2rem;
        padding-bottom: 2.5rem;
    }

    .hero.rb-hero--mobile-primary-only .hero-actions .btn-outline-light {
        display: none;
    }
}
