/* Homepage hero */
.hero-home {
    position: relative;
    z-index: 1;
    color: #fff;
    min-height: 500px;
    background-size: cover;
    background-position: center center;
    background-image: linear-gradient(rgba(6, 32, 18, 0.46), rgba(6, 32, 18, 0.64)), url('../img/club_10_2017.jpg');
}

.hero-overlay {
    min-height: 500px;
}

.hero-content {
    padding-top: 72px;
    padding-bottom: 52px;
}

.hero-inner {
    max-width: 680px;
}

.hero-kicker,
.eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 11px;
    font-weight: 700;
    color: var(--hcc-gold);
}

.hero-actions {
    margin: 16px 0 16px 0;
}

/* Hero news ticker */

.hero-news-ticker {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 20px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.94);
    color: #111;
    border-radius: var(--hcc-radius-sm);
    overflow: hidden;
    backdrop-filter: blur(6px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.hero-news-ticker::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(to bottom, #1f7a4c, #d4af37, #e67e22);
}

.news-label {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 4px;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.08em;
    color: #1f5f3a;
    text-transform: uppercase;
    white-space: nowrap;
}

.ticker-wrap {
    position: relative;
    z-index: 1;
    flex: 1 1 auto;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-track {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: ticker 28s linear infinite;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: #111;
    gap: 8px;
}

.ticker-text {
    display: inline-block;
}

.ticker-item .bi {
    margin-right: 8px;
    color: #1f7a4c;
}

.ticker-separator {
    display: inline-block;
    margin: 0 16px;
    color: #b28a1e;
    font-weight: 700;
}

.hero-news-ticker:hover .ticker-track {
    animation-play-state: paused;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

@media (max-width: 768px) {
    .hero-news-ticker {
        gap: 10px;
        padding: 10px 14px;
        margin-top: 16px;
    }
    
    .news-label {
        font-size: 10px;
    }
    
    .ticker-item {
        font-size: 12px;
    }
    
    .ticker-separator {
        margin: 0 12px;
    }
}

.hero-home h1 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 12px;
    max-width: 760px;
    font-size: 34px;
    line-height: 1.08;
    font-weight: 700;
}

.hero-lead {
    font-size: 16px;
    line-height: 1.5;
    max-width: 720px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.92);
}


/* Homepage quick links */
.quick-links {
    margin-top: -110px;
    position: relative;
    z-index: 20;
    padding-bottom: 4px;
}

.quick-links-row,
.feature-row,
.match-summary-row {
    display: flex;
    flex-wrap: wrap;
}

.quick-links-col {
    margin-bottom: 18px;
}

.quick-grid {
    padding-top: 0;
    padding-bottom: 0;
}

.quick-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 220px;
    height: 100%;
    padding: 20px;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none !important;
    color: #fff;
    background-color: var(--hcc-green-dark);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.quick-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.26) 42%, rgba(0, 0, 0, 0.06) 100%);
    z-index: 1;
}

.quick-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 38%;
    border-radius: inherit;
    background: linear-gradient(to top, rgba(11, 107, 58, 0.22) 0%, rgba(11, 107, 58, 0.08) 55%, rgba(11, 107, 58, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.quick-card > * {
    position: relative;
    z-index: 2;
}

.quick-card:hover,
.quick-card:focus-within {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.20);
    color: #fff;
}

.quick-card i {
    display: inline-block;
    width: 42px;
    height: 42px;
    margin-bottom: 12px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(2px);
    color: #fff;
    font-size: 22px;
    line-height: 42px;
    text-align: center;
}

.quick-card-title {
    margin-top: 6px;
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 1.2;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.quick-card p {
    margin-bottom: 0;
    max-width: 22em;
    color: rgba(255, 255, 255, 0.94);
    line-height: 1.5;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.quick-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.quick-join {
    background-image: linear-gradient(rgba(6, 32, 18, 0.50), rgba(6, 32, 18, 0.74)), url('../img/club_12_2017.jpg');
}

.quick-fixtures {
    background-image: linear-gradient(rgba(6, 32, 18, 0.50), rgba(6, 32, 18, 0.74)), url('../img/club_13_view.jpg');
}

.quick-ages {
    background-image: linear-gradient(rgba(6, 32, 18, 0.50), rgba(6, 32, 18, 0.74)), url('../img/sky.jpg');
}

.quick-juniors {
    background-image: linear-gradient(rgba(6, 32, 18, 0.50), rgba(6, 32, 18, 0.74)), url('../img/club_4.png');
}

.quick-hawks {
    background-image: linear-gradient(rgba(6, 32, 18, 0.42), rgba(6, 32, 18, 0.64)), url('../img/hawks_logo1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Shared cards */
.content-card,
.info-card {
    display: block;
    margin-bottom: 18px;
    padding: 20px;
    border: 1px solid var(--hcc-border);
    border-radius: var(--hcc-radius-md);
    background: #fff;
    box-shadow: var(--hcc-shadow-soft);
    color: var(--hcc-text);
    text-decoration: none !important;
}

.info-card:hover {
    transform: translateY(-2px);
    transition: all 0.2s ease;
    box-shadow: 0 9px 20px rgba(0, 0, 0, 0.08);
    border-color: #d9e6de;
}

.info-card i {
    margin-bottom: 12px;
    color: var(--hcc-green);
    font-size: 22px;
}

.info-card h3 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 18px;
    color: var(--hcc-green-dark);
}

.info-card p,
.card-intro,
.muted,
.site-footer p {
    color: var(--hcc-muted);
    line-height: 1.55;
}

.compact-info-card {
    margin-bottom: 16px;
    padding: 18px;
    border-radius: 14px;
}

.compact-card-actions {
    margin-top: 12px;
}

.feature-card {
    height: 100%;
    border-radius: 14px;
    padding: 20px;
    border: 1px solid var(--hcc-border);
    box-shadow: var(--hcc-shadow-soft);
    background: #fff;
}

.header-feed-card {
    margin-bottom: 0;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--hcc-soft);
    border: 1px solid var(--hcc-border);
    color: var(--hcc-green-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.section-tag i {
    font-size: 13px;
    color: var(--hcc-green);
}

.card-title {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 1.2;
    color: var(--hcc-green-dark);
}

.card-intro {
    margin-bottom: 18px;
}

.card-actions {
    margin-bottom: 18px;
}

.card-actions .btn {
    margin-right: 8px;
    margin-bottom: 8px;
}

.content-panel-compact {
    min-height: 260px;
    padding: 18px;
    border: 1px solid var(--hcc-border);
    border-radius: var(--hcc-radius-md);
    background: #fff;
}

/* Tables */
.table-modern {
    margin-bottom: 0;
}

.table-modern thead th {
    border-bottom: 2px solid var(--hcc-border);
    color: var(--hcc-green-dark);
    background: #fbfcfb;
}

.table-modern > tbody > tr > td,
.table-modern > thead > tr > th {
    vertical-align: middle;
    padding: 10px;
}

.table-notes {
    color: var(--hcc-muted);
    line-height: 1.55;
    margin-bottom: 12px;
}

/* Age chips */
.age-chip {
    display: inline-block;
    min-width: 52px;
    text-align: center;
    padding: 4px 10px;
    border-radius: 999px;
    color: #fff;
    font-weight: 700;
    font-size: 11px;
    margin-bottom: 4px;
}

.age-u7 {
    background: #2e8b57;
}

.age-u9 {
    background: #4472c4;
}

.age-u11 {
    background: #ed7d31;
}

.age-u13 {
    background: #ffc000;
    color: #3c2c00;
}

.age-u15 {
    background: #7da9d1;
}

.age-u17 {
    background: #d6aa2b;
    color: #3c2c00;
}

.age-girls {
    background: #ec008c;
}

/* Live scores / homepage match centre */
.live-scores-section {
    margin-top: 30px;
}

.live-scores-section .feature-card {
    position: relative;
    overflow: hidden;
    padding: 26px;
    border: 1px solid var(--hcc-border);
    border-radius: var(--hcc-radius-lg);
    background: #fff;
    box-shadow: var(--hcc-shadow-card);
}

.live-scores-section .section-tag {
    margin-bottom: 14px;
}

.live-scores-header {
    border-bottom: 1px solid var(--hcc-border);
    padding-bottom: 14px;
    margin-bottom: 18px;
}

.live-scores-widget {
    min-height: 140px;
    padding-top: 6px;
}

.live-scores-fallback {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: var(--hcc-muted);
}

.live-scores-widget .lsw_widget,
.live-scores-widget .lsw_fixture,
.live-scores-widget .lsw_match,
.live-scores-widget .lsw_tile {
    font-family: inherit;
}

.live-scores-widget a {
    word-break: break-word;
}

.match-summary-row > [class*="col-"] {
    display: flex;
}

.match-summary-row .compact-card {
    width: 100%;
    min-height: 190px;
    display: flex;
    flex-direction: column;
}

.match-summary-row .compact-card .section-tag {
    margin-bottom: 14px;
}

.match-summary-row .compact-card h4 {
    margin-top: 6px;
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 1.35;
}

.match-summary-row .compact-card .match-meta,
.match-summary-row .compact-card .muted {
    margin-bottom: 10px;
}

.match-summary-row .compact-card .btn {
    margin-top: auto;
    align-self: flex-start;
}

#lsw_container_home {
    min-height: 72px;
}

/* Embeds / map / feed */
.embed-wrap {
    position: relative;
    width: 100%;
    min-height: 540px;
    overflow: hidden;
    border: 1px solid var(--hcc-border);
    border-radius: var(--hcc-radius-md);
    background: #fff;
}

.embed-wrap iframe,
.map-frame {
    width: 100%;
    min-height: 540px;
    border: 0;
}

.compact-embed-wrap {
    min-height: 520px;
}

.compact-embed-wrap iframe {
    width: 100%;
    min-height: 520px;
    border: 0;
}

/* Lists / notes / policies */
.list-clean {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.list-clean li {
    margin-bottom: 8px;
    color: var(--hcc-muted);
    line-height: 1.55;
}

.note-strip {
    background: var(--hcc-cream);
    border: 1px solid #eee5d0;
    border-radius: 10px;
    padding: 14px 16px;
    margin-top: 14px;
}

.kit-image {
    border-radius: var(--hcc-radius-md);
    border: 1px solid var(--hcc-border);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}


/* CTA / livestream */
.section-cta {
    padding: 54px 0;
    background: linear-gradient(135deg, var(--hcc-green-dark), var(--hcc-green));
    color: #fff;
}

.section-cta h2,
.section-cta p {
    color: #fff;
}

.section-cta p {
    opacity: 0.92;
    font-size: 16px;
    margin-bottom: 18px;
}

.cta-inner {
    max-width: 900px;
}

.live-fallback-card {
    max-width: 900px;
    margin: 24px auto 0;
    min-height: 420px;
    border-radius: var(--hcc-radius-lg);
    overflow: hidden;
    position: relative;
    background: linear-gradient(rgba(6, 32, 18, 0.55), rgba(6, 32, 18, 0.75)), url('../img/club_10_2017.jpg') center center / cover no-repeat;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
}

.live-fallback-inner {
    max-width: 560px;
    padding: 32px 28px;
    text-align: center;
    color: #fff;
}

.live-fallback-inner h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 30px;
    color: #fff;
}

.live-fallback-inner p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 16px;
    line-height: 1.55;
}

.live-badge {
    display: inline-block;
    margin-bottom: 16px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.live-embed {
    max-width: 900px;
    margin: 24px auto 0;
}

.embed-responsive {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

/* Kit */
.kit-logo-wrap {
    text-align: center;
    margin: 12px 0 4px;
}

.kit-logo {
    height: 150px;
    width: auto;
    padding: 5px;
    background-color: #e38708;
    border-radius: 10px;
    border: 1px solid var(--hcc-border);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

/* Contact page */
.contact-map-actions {
    margin-bottom: 16px;
}

.contact-map-actions .btn {
    margin-right: 8px;
    margin-bottom: 8px;
}

.contact-map-wrap {
    border: 1px solid var(--hcc-border);
    border-radius: var(--hcc-radius-md);
    overflow: hidden;
    background: #fff;
    margin-bottom: 16px;
}

.contact-map-wrap iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: 0;
}

.contact-social-list {
    margin-top: 14px;
    margin-bottom: 0;
}

.contact-social-list li {
    padding-right: 8px;
}

.contact-social-list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--hcc-soft);
    border: 1px solid var(--hcc-border);
    color: var(--hcc-green-dark);
    text-decoration: none;
    font-size: 18px;
}

.contact-social-list a:hover {
    background: #eef5f1;
}

/* Fixtures helpers */
.fixtures-widget {
    padding: 10px 0;
}

.fixture-card {
    background: #fff;
    border-radius: var(--hcc-radius-md);
    border: 1px solid #e6e6e6;
    padding: 18px;
    margin-bottom: 18px;
}

.fixture-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--hcc-green);
    margin-bottom: 6px;
}

.fixture-title {
    font-size: 18px;
    font-weight: 700;
}

.fixture-date {
    color: #666;
}

.fixture-ground {
    font-size: 13px;
    color: #777;
}

.fixture-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding: 8px 0;
}

.fixtures-subtitle {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 18px;
}

/* Membership page */
.contact-email-group {
    margin-top: 10px;
}

.contact-email-item {
    margin-bottom: 16px;
}

.contact-email-item:last-child {
    margin-bottom: 0;
}

.contact-email-item label {
    display: block;
    font-size: 13px;
    margin-bottom: 6px;
    color: var(--hcc-muted);
    font-weight: 600;
}

.email-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid var(--hcc-border);
    border-radius: var(--hcc-radius-sm);
    background: #f8f8f8;
    color: var(--hcc-text);
    text-decoration: none;
    font-size: 13px;
    line-height: 1.4;
}

.email-button:hover,
.email-button:focus {
    background: #f1f1f1;
    text-decoration: none;
    color: var(--hcc-text);
}

.email-button i {
    color: var(--hcc-green);
    font-size: 15px;
}

.join-card-prominent {
    background: linear-gradient(180deg, #f7faf8, #ffffff);
    border: 1px solid #cfe1d7;
    box-shadow: var(--hcc-shadow-card);
}

.join-card-prominent .bi {
    font-size: 24px;
    color: var(--hcc-green);
    margin-bottom: 10px;
}

.join-card-intro {
    margin-bottom: 12px;
    color: var(--hcc-muted);
}

.membership-label {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--hcc-muted);
}

.membership-type-buttons {
    margin-bottom: 16px;
}

.membership-type-button {
    display: block;
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 8px;
    border: 1px solid #dfe5e1;
    border-radius: var(--hcc-radius-sm);
    background: #f6faf7;
    color: var(--hcc-green-dark);
    text-decoration: none;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;
}

.membership-type-button:hover,
.membership-type-button:focus {
    background: #edf6f0;
    text-decoration: none;
    color: var(--hcc-green-dark);
}

.membership-type-button.active {
    background: var(--hcc-green);
    color: #fff;
    border-color: var(--hcc-green);
}

.membership-type-button.active:hover,
.membership-type-button.active:focus {
    background: var(--hcc-green-dark);
    border-color: var(--hcc-green-dark);
    color: #fff;
}

.membership-help-note {
    margin-bottom: 18px;
    color: var(--hcc-muted);
    font-size: 14px;
    line-height: 1.55;
}

.membership-accordion-wrap {
    margin-top: 8px;
}

.membership-group {
    margin-bottom: 26px;
    scroll-margin-top: 120px;
}

.membership-group-title {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 17px;
    font-weight: 700;
    color: var(--hcc-green-dark);
}

.membership-accordion .panel,
.membership-accordion .accordion-item {
    border: 1px solid var(--hcc-border);
    border-radius: 10px;
    box-shadow: none;
    overflow: hidden;
    margin-bottom: 10px;
}

.membership-accordion .panel-heading,
.membership-accordion .accordion-header {
    padding: 0;
    background: #fbfcfb;
    border-bottom: 0;
}

.membership-accordion .panel-title,
.membership-accordion .accordion-title-wrap {
    font-size: 15px;
    line-height: 1.4;
}

.membership-accordion .panel-title a,
.membership-accordion .accordion-button {
    display: block;
    position: relative;
    padding: 14px 42px 14px 16px;
    text-decoration: none;
    color: var(--hcc-green-dark);
    font-weight: 600;
}

.membership-accordion .panel-title a:hover,
.membership-accordion .panel-title a:focus,
.membership-accordion .accordion-button:hover,
.membership-accordion .accordion-button:focus {
    background: #f3f8f5;
    text-decoration: none;
}

.membership-accordion .panel-title a::after,
.membership-accordion .accordion-button::after {
    content: "+";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #888;
}

.membership-accordion .panel-title a[aria-expanded="true"]::after,
.membership-accordion .accordion-button[aria-expanded="true"]::after {
    content: "−";
}

.membership-accordion .panel-body,
.membership-accordion .accordion-body {
    padding: 16px;
    background: #fff;
    border-top: 1px solid var(--hcc-border);
}

.clubpay-frame {
    border: 1px solid var(--hcc-border);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.clubpay-iframe {
    display: block;
    width: 100%;
    border: 0;
}

.membership-table-wrap {
    overflow-x: auto;
}

/* Results page */
.results-status {
    margin-top: 6px;
    margin-bottom: 16px;
    color: var(--hcc-muted);
}

.match-centre-grid {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.match-centre-panel {
    flex: 1 1 0;
    min-width: 0;
}

.match-centre-panel-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.match-centre-panel-header i {
    color: var(--hcc-green);
    font-size: 18px;
}

.match-centre-panel-header h3 {
    margin: 0;
    font-size: 18px;
    color: var(--hcc-green-dark);
}

.match-item {
    background: #fbfcfb;
    border: 1px solid var(--hcc-border);
    border-radius: 14px;
    padding: 15px;
    margin-bottom: 14px;
}

.match-item:last-child {
    margin-bottom: 0;
}

.match-item-top {
    margin-bottom: 8px;
}

.match-date {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: var(--hcc-green-dark);
    background: #eef6f1;
    border: 1px solid #d7e7dd;
    border-radius: 999px;
    padding: 5px 10px;
}

.match-item h4 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 17px;
    line-height: 1.35;
    color: var(--hcc-text);
}

.match-meta,
.match-result {
    margin-bottom: 8px;
    color: var(--hcc-muted);
    line-height: 1.5;
}

.match-result {
    font-weight: 600;
    color: var(--hcc-green-dark);
}

.match-actions {
    margin-top: 12px;
    margin-bottom: 0;
}

/* Back to top */
.back-to-top {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 1100;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: var(--hcc-green);
    color: #fff;
    box-shadow: var(--hcc-shadow-card);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity var(--hcc-transition), transform var(--hcc-transition), background-color var(--hcc-transition);
}

.back-to-top:hover,
.back-to-top:focus-visible {
    background: var(--hcc-green-dark);
    color: #fff;
    text-decoration: none;
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

@media (max-width: 767px) {
    body {
        padding-top: 72px;
    }
    
    .site-nav .nav-link {
        font-size: 0.95rem;
    }
    
    .brand-text {
        font-size: 1rem;
    }
    
    .hero-actions {
        margin-top: 14px;
    }
    
    .back-to-top {
        right: 12px;
        bottom: 12px;
    }
}

.membership-accordion .accordion-button {
    background: #fbfcfb;
    border: 0;
    box-shadow: none;
    border-radius: 0;
}

.membership-accordion .accordion-button:not(.collapsed) {
    background: #f3f8f5;
    color: var(--hcc-green-dark);
    box-shadow: none;
}

.membership-accordion .accordion-button::after {
    background-image: none;
}

.ratio iframe {
    width: 100%;
    height: 100%;
    border: 0;
}