* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.bc-public-site {
    margin: 0;
    background: #fff;
    color: #151923;
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

.bc-site-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.bc-site-preview-bar {
    min-height: 48px;
    padding: 8px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: #111827;
    color: #fff;
    font-size: 13px;
}

.bc-site-preview-bar div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bc-site-preview-bar span {
    color: rgba(255,255,255,.65);
}

.bc-site-preview-bar a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.bc-site-header {
    position: relative;
    z-index: 10;
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid rgba(15,23,42,.08);
}

.bc-site-nav {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.bc-site-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: inherit;
    text-decoration: none;
}

.bc-site-brand img {
    display: block;
    width: auto;
    max-width: 190px;
    max-height: 54px;
}

.bc-site-brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--bc-site-primary);
    color: #fff;
    font-weight: 800;
}

.bc-site-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.bc-site-menu a {
    color: #3b4251;
    text-decoration: none;
    font-size: 14px;
    font-weight: 650;
}

.bc-site-hero {
    min-height: 620px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            125deg,
            var(--bc-site-secondary),
            var(--bc-site-primary)
        );
    background-size: cover;
    background-position: center;
    color: #fff;
}

.bc-site-hero-content {
    max-width: 760px;
    padding: 110px 0;
}

.bc-site-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 13px;
    font-weight: 750;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: rgba(255,255,255,.75);
}

.bc-site-hero h1 {
    max-width: 850px;
    margin: 0;
    font-size: clamp(48px, 7vw, 84px);
    line-height: .98;
    letter-spacing: -.045em;
    font-weight: 780;
}

.bc-site-hero p {
    max-width: 650px;
    margin: 26px 0 0;
    font-size: 20px;
    line-height: 1.65;
    color: rgba(255,255,255,.82);
}

.bc-site-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    margin-top: 32px;
    padding: 0 24px;
    border-radius: 9px;
    background: var(--bc-site-primary);
    color: #fff;
    text-decoration: none;
    font-weight: 750;
    box-shadow: 0 12px 30px rgba(0,0,0,.14);
}

.bc-site-section {
    padding: 92px 0;
}

.bc-site-section-alt {
    background: #f6f8fb;
}

.bc-site-section-heading span {
    display: block;
    margin-bottom: 8px;
    color: var(--bc-site-primary);
    font-size: 13px;
    font-weight: 750;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.bc-site-section-heading h2 {
    margin: 0;
    font-size: clamp(34px, 4vw, 52px);
    letter-spacing: -.035em;
}

.bc-site-placeholder-grid {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.bc-site-placeholder-card {
    min-height: 190px;
    padding: 28px;
    border: 1px solid #e7e9ee;
    border-radius: 14px;
    background: #fff;
}

.bc-site-placeholder-card > span {
    display: block;
    width: 48px;
    height: 8px;
    margin-bottom: 24px;
    border-radius: 99px;
    background: var(--bc-site-primary);
}

.bc-site-placeholder-card strong {
    font-size: 21px;
}

.bc-site-placeholder-card p {
    color: #72798a;
    line-height: 1.6;
}

.bc-site-footer {
    padding: 34px 0;
    background: var(--bc-site-secondary);
    color: #fff;
}

.bc-site-footer .bc-site-container {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.bc-site-footer span {
    color: rgba(255,255,255,.6);
    font-size: 13px;
}

@media (max-width: 800px) {
    .bc-site-container {
        width: min(100% - 30px, 1180px);
    }

    .bc-site-preview-bar {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .bc-site-preview-bar div {
        align-items: flex-start;
        flex-direction: column;
        gap: 2px;
    }

    .bc-site-menu {
        display: none;
    }

    .bc-site-hero {
        min-height: 520px;
    }

    .bc-site-hero-content {
        padding: 80px 0;
    }

    .bc-site-hero h1 {
        font-size: 48px;
    }

    .bc-site-hero p {
        font-size: 17px;
    }

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

    .bc-site-footer .bc-site-container {
        flex-direction: column;
    }
}

/* Public Website — Events */

.bc-site-events-grid {
    margin-top: 38px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.bc-site-event-card {
    overflow: hidden;
    border: 1px solid #e8eaf0;
    border-radius: 14px;
    background: #fff;
}

.bc-site-event-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #eef1f5;
}

.bc-site-event-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.bc-site-event-content {
    display: flex;
    gap: 18px;
    padding: 24px;
}

.bc-site-event-date {
    flex: 0 0 54px;
    text-align: center;
}

.bc-site-event-date strong {
    display: block;
    color: var(--bc-site-primary);
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.bc-site-event-date span {
    display: block;
    margin-top: 2px;
    font-size: 30px;
    line-height: 1;
    font-weight: 780;
}

.bc-site-event-info {
    min-width: 0;
}

.bc-site-event-info h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1.25;
}

.bc-site-event-meta {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    color: #72798a;
    font-size: 13px;
}

.bc-site-event-info p {
    margin: 13px 0 0;
    color: #72798a;
    font-size: 14px;
    line-height: 1.6;
}

.bc-site-event-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--bc-site-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 750;
}

.bc-site-empty {
    margin-top: 32px;
    padding: 30px;
    border: 1px dashed #d8dce5;
    border-radius: 14px;
    color: #747b8b;
    text-align: center;
}

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

/* =========================================
   BlessChurch Public Website — Events V2
   ========================================= */

.bc-site-events-grid {
    margin-top: 42px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.bc-site-event-card {
    position: relative;
    overflow: hidden;
    border: 0;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(15, 23, 42, .08);
    transition:
        transform .22s ease,
        box-shadow .22s ease;
}

.bc-site-event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 52px rgba(15, 23, 42, .12);
}

.bc-site-event-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            var(--bc-site-secondary),
            var(--bc-site-primary)
        );
}

.bc-site-event-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .4s ease;
}

.bc-site-event-card:hover .bc-site-event-image img {
    transform: scale(1.035);
}

.bc-site-event-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(5, 12, 22, .42),
            rgba(5, 12, 22, 0) 55%
        );
    pointer-events: none;
}

.bc-site-event-content {
    display: block;
    padding: 24px 24px 26px;
}

.bc-site-event-date {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 14px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, .05);
}

.bc-site-event-date strong {
    display: inline;
    margin: 0;
    color: var(--bc-site-primary);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.bc-site-event-date span {
    display: inline;
    margin: 0;
    color: #111827;
    font-size: 15px;
    line-height: 1;
    font-weight: 800;
}

.bc-site-event-info h3 {
    margin: 0;
    color: #111827;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -.02em;
}

.bc-site-event-meta {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #717989;
    font-size: 14px;
    line-height: 1.45;
}

.bc-site-event-meta span {
    display: block;
}

.bc-site-event-info p {
    margin: 15px 0 0;
    color: #6d7482;
    font-size: 14px;
    line-height: 1.65;
}

.bc-site-event-link {
    display: inline-flex;
    align-items: center;
    margin-top: 18px;
    color: var(--bc-site-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
}

.bc-site-event-link:hover {
    text-decoration: underline;
}

.bc-site-empty {
    margin-top: 34px;
    padding: 38px 28px;
    border: 0;
    border-radius: 16px;
    background: #f7f8fb;
    color: #7b8290;
    text-align: center;
}

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

@media (max-width: 680px) {
    .bc-site-events-grid {
        grid-template-columns: 1fr;
    }

    .bc-site-event-card {
        border-radius: 15px;
    }

    .bc-site-event-content {
        padding: 20px;
    }

    .bc-site-event-info h3 {
        font-size: 20px;
    }
}

/* =========================================
   BlessChurch Public Website — Events V3
   Editorial layout
   ========================================= */

#events.bc-site-section {
    padding: 110px 0 120px;
}

#events .bc-site-section-heading {
    max-width: 720px;
}

#events .bc-site-section-heading h2 {
    font-size: clamp(42px, 5vw, 64px);
}

.bc-site-events-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1.4fr .9fr;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.bc-site-event-card {
    position: relative;
    overflow: hidden;
    min-height: 250px;
    border: 0;
    border-radius: 18px;
    background:
        linear-gradient(
            135deg,
            rgba(15, 23, 42, .02),
            rgba(15, 23, 42, .05)
        );
    box-shadow: none;
}

.bc-site-event-card:first-child {
    grid-row: 1 / span 2;
    min-height: 520px;
    background:
        linear-gradient(
            145deg,
            var(--bc-site-secondary),
            var(--bc-site-primary)
        );
    color: #fff;
}

.bc-site-event-card:hover {
    transform: none;
    box-shadow: none;
}

.bc-site-event-card:first-child .bc-site-event-content {
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 42px;
    background:
        linear-gradient(
            to top,
            rgba(5, 12, 22, .82),
            rgba(5, 12, 22, .05) 70%
        );
}

.bc-site-event-card:first-child .bc-site-event-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
}

.bc-site-event-card:first-child .bc-site-event-image::after {
    display: none;
}

.bc-site-event-card:first-child .bc-site-event-image img {
    height: 100%;
    object-fit: cover;
}

.bc-site-event-card:first-child .bc-site-event-content {
    position: relative;
    z-index: 2;
}

.bc-site-event-card:first-child .bc-site-event-date {
    width: fit-content;
    margin-bottom: 18px;
    background: rgba(255,255,255,.14);
    backdrop-filter: blur(8px);
}

.bc-site-event-card:first-child .bc-site-event-date strong,
.bc-site-event-card:first-child .bc-site-event-date span {
    color: #fff;
}

.bc-site-event-card:first-child .bc-site-event-info h3 {
    max-width: 520px;
    color: #fff;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.02;
    letter-spacing: -.045em;
}

.bc-site-event-card:first-child .bc-site-event-meta {
    margin-top: 18px;
    color: rgba(255,255,255,.72);
    font-size: 15px;
}

.bc-site-event-card:first-child .bc-site-event-info p {
    max-width: 520px;
    color: rgba(255,255,255,.72);
}

.bc-site-event-card:first-child .bc-site-event-link {
    color: #fff;
}

.bc-site-event-card:not(:first-child) {
    display: flex;
    align-items: stretch;
    background: #f7f8fa;
}

.bc-site-event-card:not(:first-child) .bc-site-event-image {
    width: 42%;
    min-width: 180px;
    aspect-ratio: auto;
}

.bc-site-event-card:not(:first-child) .bc-site-event-content {
    flex: 1;
    padding: 28px;
}

.bc-site-event-card:not(:first-child) .bc-site-event-info h3 {
    font-size: 24px;
}

.bc-site-event-card:not(:first-child) .bc-site-event-date {
    margin-bottom: 12px;
    background: #fff;
}

.bc-site-event-card:not(:first-child) .bc-site-event-meta {
    margin-top: 10px;
}

@media (max-width: 980px) {
    .bc-site-events-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .bc-site-event-card:first-child {
        grid-row: auto;
        min-height: 440px;
    }

    .bc-site-event-card:first-child .bc-site-event-content {
        min-height: 440px;
    }

    .bc-site-event-card:not(:first-child) {
        min-height: 220px;
    }
}

@media (max-width: 680px) {
    #events.bc-site-section {
        padding: 80px 0;
    }

    .bc-site-event-card:first-child {
        min-height: 380px;
    }

    .bc-site-event-card:first-child .bc-site-event-content {
        min-height: 380px;
        padding: 28px;
    }

    .bc-site-event-card:first-child .bc-site-event-info h3 {
        font-size: 34px;
    }

    .bc-site-event-card:not(:first-child) {
        display: block;
    }

    .bc-site-event-card:not(:first-child) .bc-site-event-image {
        width: 100%;
        min-width: 0;
        aspect-ratio: 16 / 9;
    }

    .bc-site-event-card:not(:first-child) .bc-site-event-content {
        padding: 22px;
    }
}

/* Events V3.1 refinements */

.bc-site-event-card:first-child {
    min-height: 460px;
}

.bc-site-event-card:first-child .bc-site-event-content {
    min-height: 460px;
    padding: 38px;
}

.bc-site-event-card:not(:first-child) {
    min-height: 215px;
    border: 1px solid #eceff3;
    background: #fafbfc;
}

.bc-site-event-card:not(:first-child) .bc-site-event-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 26px 28px;
}

.bc-site-event-card:not(:first-child) .bc-site-event-date {
    margin-bottom: 16px;
    padding: 6px 9px;
    background: #fff;
    box-shadow: 0 1px 0 rgba(15,23,42,.04);
}

.bc-site-event-card:not(:first-child) .bc-site-event-info h3 {
    font-size: 22px;
    line-height: 1.15;
}

.bc-site-event-card:not(:first-child) .bc-site-event-meta {
    margin-top: 10px;
    gap: 4px;
}

.bc-site-events-grid {
    grid-template-columns: 1.35fr .85fr;
    gap: 20px;
}

@media (max-width: 980px) {
    .bc-site-event-card:first-child,
    .bc-site-event-card:first-child .bc-site-event-content {
        min-height: 400px;
    }
}

/* Events V3.2 — secondary card cleanup */

.bc-site-event-card:not(:first-child) .bc-site-event-date {
    display: inline-flex;
    width: auto;
    max-width: max-content;
    align-self: flex-start;
    padding: 7px 10px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(15,23,42,.04);
}

.bc-site-event-card:not(:first-child) .bc-site-event-content {
    justify-content: center;
    padding: 28px;
}

.bc-site-event-card:not(:first-child) {
    min-height: 200px;
}

.bc-site-event-card:not(:first-child) .bc-site-event-info h3 {
    font-size: 21px;
    letter-spacing: -.02em;
}

.bc-site-event-card:not(:first-child) .bc-site-event-meta {
    font-size: 13px;
    color: #737b8b;
}

.bc-site-event-card:first-child {
    min-height: 440px;
}

.bc-site-event-card:first-child .bc-site-event-content {
    min-height: 440px;
}

/* Fix event date badge alignment */

.bc-site-event-date,
.bc-site-event-card:not(:first-child) .bc-site-event-date {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.bc-site-event-date strong,
.bc-site-event-date span {
    display: block;
    line-height: 1;
    margin: 0;
}

/* Watch Live */

.bc-site-live {
    padding-top: 110px;
    padding-bottom: 110px;
}

.bc-site-live .bc-site-section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.bc-site-live-player {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 24px;
    background: #0b0f15;
    box-shadow: 0 28px 80px rgba(15, 23, 42, .14);
}

.bc-site-live-player iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.bc-site-live-empty {
    padding: 56px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    text-align: center;
}

.bc-site-live-empty strong {
    display: block;
    margin-bottom: 8px;
    font-size: 22px;
    color: #111827;
}

.bc-site-live-empty p {
    margin: 0;
    color: #6b7280;
}

@media (max-width: 700px) {
    .bc-site-live {
        padding-top: 76px;
        padding-bottom: 76px;
    }

    .bc-site-live-player {
        border-radius: 16px;
    }

    .bc-site-live-empty {
        padding: 36px 24px;
        border-radius: 16px;
    }
}

/* Watch Live — visual refinement */

.bc-site-live {
    padding-top: 90px;
    padding-bottom: 96px;
}

.bc-site-live .bc-site-section-heading {
    margin-bottom: 28px;
}

.bc-site-live-player {
    max-width: 980px;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, .12);
}

@media (max-width: 700px) {
    .bc-site-live {
        padding-top: 68px;
        padding-bottom: 72px;
    }

    .bc-site-live-player {
        border-radius: 14px;
    }
}

/* Watch Live — split layout */

.bc-site-live-layout {
    display: grid;
    grid-template-columns: minmax(0, 2.15fr) minmax(280px, .85fr);
    gap: 22px;
    align-items: stretch;
}

.bc-site-live-layout .bc-site-live-player {
    max-width: none;
    width: 100%;
    height: 100%;
    min-height: 480px;
    aspect-ratio: auto;
    border-radius: 20px;
}

.bc-site-live-info {
    min-height: 480px;
    padding: 38px 34px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
}

.bc-site-live-label {
    display: inline-block;
    margin-bottom: 18px;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;

    color: var(--bc-primary, #104265);
}

.bc-site-live-info h3 {
    margin: 0 0 16px;
    font-size: clamp(28px, 2.5vw, 40px);
    line-height: 1.05;
    letter-spacing: -.035em;
    color: #111827;
}

.bc-site-live-info p {
    max-width: 330px;
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #687386;
}

.bc-site-live-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;

    width: 100%;
    padding: 17px 18px;

    border-top: 1px solid rgba(15, 23, 42, .10);

    font-size: 14px;
    font-weight: 750;
    text-decoration: none;

    color: #111827;
    transition: opacity .2s ease;
}

.bc-site-live-link:hover {
    opacity: .65;
}

.bc-site-live-link span {
    font-size: 20px;
    line-height: 1;
}

@media (max-width: 900px) {

    .bc-site-live-layout {
        grid-template-columns: 1fr;
    }

    .bc-site-live-layout .bc-site-live-player {
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .bc-site-live-info {
        min-height: 0;
        padding: 30px;
    }
}

@media (max-width: 600px) {

    .bc-site-live-layout {
        gap: 16px;
    }

    .bc-site-live-layout .bc-site-live-player,
    .bc-site-live-info {
        border-radius: 14px;
    }

    .bc-site-live-info {
        padding: 26px 22px;
    }

    .bc-site-live-info h3 {
        font-size: 28px;
    }
}

/* Watch Live — final spacing refinement */

.bc-site-live .bc-site-section-heading {
    margin-bottom: 24px;
}

.bc-site-live-layout .bc-site-live-player,
.bc-site-live-info {
    min-height: 430px;
}

@media (max-width: 900px) {
    .bc-site-live-layout .bc-site-live-player,
    .bc-site-live-info {
        min-height: 0;
    }
}

/* Giving */

.bc-site-giving {
    padding-top: 100px;
    padding-bottom: 100px;
}

.bc-site-giving-card {
    position: relative;
    overflow: hidden;

    min-height: 330px;
    padding: 58px 62px;

    border-radius: 24px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;

    background:
        linear-gradient(
            135deg,
            var(--bc-primary, #104265) 0%,
            #0c1824 100%
        );

    color: #fff;
}

.bc-site-giving-card::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    right: -100px;
    top: -180px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
}

.bc-site-giving-copy {
    position: relative;
    z-index: 1;
    max-width: 680px;
}

.bc-site-giving-kicker {
    display: inline-block;
    margin-bottom: 18px;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;

    color: var(--bc-secondary, #D3B050);
}

.bc-site-giving-copy h2 {
    margin: 0 0 18px;

    font-size: clamp(42px, 5vw, 68px);
    line-height: .98;
    letter-spacing: -.045em;

    color: #fff;
}

.bc-site-giving-copy p {
    margin: 0;
    max-width: 600px;

    font-size: 17px;
    line-height: 1.65;

    color: rgba(255,255,255,.76);
}

.bc-site-giving-action {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
}

.bc-site-giving-button {
    min-width: 190px;
    padding: 18px 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;

    border-radius: 999px;

    background: #fff;
    color: #111827;

    font-size: 14px;
    font-weight: 800;
    text-decoration: none;

    transition:
        transform .2s ease,
        opacity .2s ease;
}

.bc-site-giving-button:hover {
    transform: translateY(-2px);
}

.bc-site-giving-button span {
    font-size: 20px;
    line-height: 1;
}

@media (max-width: 800px) {

    .bc-site-giving-card {
        min-height: 0;
        padding: 42px 34px;

        flex-direction: column;
        align-items: flex-start;
        gap: 36px;
    }

    .bc-site-giving-action {
        width: 100%;
    }

    .bc-site-giving-button {
        width: 100%;
    }
}

@media (max-width: 600px) {

    .bc-site-giving {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .bc-site-giving-card {
        padding: 34px 24px;
        border-radius: 16px;
    }

    .bc-site-giving-copy h2 {
        font-size: 40px;
    }
}

/* Home flow — Live → Giving → Footer */

.bc-site-live {
    padding-bottom: 72px;
}

.bc-site-giving {
    padding-top: 72px;
    padding-bottom: 72px;
}

.bc-site-giving-card {
    min-height: 310px;
}

@media (max-width: 700px) {
    .bc-site-live {
        padding-bottom: 56px;
    }

    .bc-site-giving {
        padding-top: 56px;
        padding-bottom: 56px;
    }
}

/* Footer V2 */

.bc-site-footer {
    padding: 0 0 28px;
    background: transparent;
}

.bc-site-footer .bc-site-container {
    padding-top: 54px;
    padding-bottom: 24px;
    border-radius: 24px 24px 0 0;

    background:
        linear-gradient(
            135deg,
            var(--bc-primary, #104265) 0%,
            #0c1824 100%
        );

    color: #fff;
}

.bc-site-footer-main {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(160px, .65fr) minmax(220px, .85fr);
    gap: 64px;
    padding: 0 44px 48px;
}

.bc-site-footer-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    text-decoration: none;
}

.bc-site-footer-logo {
    display: block;
    max-width: 52px;
    max-height: 52px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.bc-site-footer-mark {
    width: 48px;
    height: 48px;
    border-radius: 14px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,.12);

    font-size: 20px;
    font-weight: 800;
}

.bc-site-footer-name {
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -.02em;
}

.bc-site-footer-brand p {
    max-width: 380px;
    margin: 22px 0 0;

    font-size: 15px;
    line-height: 1.7;

    color: rgba(255,255,255,.62);
}

.bc-site-footer-label {
    display: block;
    margin-bottom: 18px;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;

    color: var(--bc-secondary, #D3B050);
}

.bc-site-footer-nav,
.bc-site-footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.bc-site-footer-nav a,
.bc-site-footer-contact a {
    color: rgba(255,255,255,.78);
    text-decoration: none;

    font-size: 14px;
    line-height: 1.5;

    transition: color .2s ease;
}

.bc-site-footer-nav a:hover,
.bc-site-footer-contact a:hover {
    color: #fff;
}

.bc-site-footer-bottom {
    margin: 0 44px;
    padding-top: 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    border-top: 1px solid rgba(255,255,255,.12);

    font-size: 12px;
    color: rgba(255,255,255,.52);
}

@media (max-width: 850px) {

    .bc-site-footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 42px;
    }

    .bc-site-footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {

    .bc-site-footer {
        padding-bottom: 14px;
    }

    .bc-site-footer .bc-site-container {
        border-radius: 18px 18px 0 0;
        padding-top: 40px;
    }

    .bc-site-footer-main {
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 0 24px 36px;
    }

    .bc-site-footer-brand {
        grid-column: auto;
    }

    .bc-site-footer-bottom {
        margin: 0 24px;
        padding-top: 20px;

        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* Header V2 */

html {
    scroll-behavior: smooth;
}

body.bc-public-site {
    scroll-padding-top: 110px;
}

.bc-site-header {
    position: sticky;
    top: 0;
    z-index: 90;

    padding: 14px 0 10px;

    background: rgba(255,255,255,.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(15,23,42,.04);
}

.bc-site-header .bc-site-container {
    padding-top: 0;
    padding-bottom: 0;
}

.bc-site-nav-shell {
    min-height: 72px;

    display: grid;
    grid-template-columns: minmax(240px, 1fr) auto minmax(180px, 1fr);
    align-items: center;
    gap: 30px;

    padding: 8px 10px 8px 18px;

    border: 1px solid rgba(15,23,42,.08);
    border-radius: 20px;

    background: rgba(255,255,255,.94);

    box-shadow:
        0 10px 30px rgba(15,23,42,.05),
        0 1px 2px rgba(15,23,42,.03);
}


/* Brand */

.bc-site-brand {
    min-width: 0;

    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: #111827;
    text-decoration: none;
}

.bc-site-brand img {
    display: block;

    width: auto;
    height: 44px;
    max-width: 58px;

    object-fit: contain;
}

.bc-site-brand-mark {
    width: 42px;
    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: var(--bc-site-primary, #104265);
    color: #fff;

    font-size: 18px;
    font-weight: 800;
}

.bc-site-brand strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

    font-size: 15px;
    font-weight: 800;
    letter-spacing: -.02em;

    color: #111827;
}


/* Navigation */

.bc-site-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.bc-site-menu a {
    position: relative;

    padding: 12px 14px;
    border-radius: 12px;

    color: #667085;

    font-size: 14px;
    font-weight: 650;
    text-decoration: none;

    transition:
        color .2s ease,
        background .2s ease;
}

.bc-site-menu a:hover {
    color: #111827;
    background: rgba(15,23,42,.045);
}


/* Actions */

.bc-site-nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.bc-site-nav-give {
    min-width: 112px;

    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;

    padding: 14px 17px;

    border-radius: 14px;

    background: var(--bc-site-primary, #104265);
    color: #fff;

    font-size: 14px;
    font-weight: 800;
    text-decoration: none;

    box-shadow: 0 8px 18px rgba(15,23,42,.10);

    transition:
        transform .2s ease,
        opacity .2s ease;
}

.bc-site-nav-give:hover {
    transform: translateY(-1px);
    opacity: .94;
}

.bc-site-nav-give span {
    font-size: 18px;
    line-height: 1;
}


/* Tablet */

@media (max-width: 920px) {

    .bc-site-nav-shell {
        grid-template-columns: minmax(180px, 1fr) auto;
    }

    .bc-site-menu {
        display: none;
    }

    .bc-site-brand strong {
        max-width: 220px;
    }
}


/* Mobile */

@media (max-width: 600px) {

    .bc-site-header {
        padding: 8px 0;
    }

    .bc-site-nav-shell {
        min-height: 62px;

        grid-template-columns: minmax(0, 1fr) auto;
        gap: 12px;

        padding: 7px 7px 7px 12px;

        border-radius: 16px;
    }

    .bc-site-brand {
        gap: 9px;
    }

    .bc-site-brand img {
        height: 36px;
        max-width: 46px;
    }

    .bc-site-brand strong {
        max-width: 160px;
        font-size: 13px;
    }

    .bc-site-nav-give {
        min-width: 0;
        padding: 12px 14px;
        border-radius: 12px;
    }

    .bc-site-nav-give span {
        display: none;
    }
}

/* Footer V2.1 — compact bottom spacing */

.bc-site-footer {
    padding-bottom: 0;
}

.bc-site-footer .bc-site-container {
    padding-bottom: 20px;
}

.bc-site-footer-main {
    padding-bottom: 32px;
}

.bc-site-footer-bottom {
    padding-bottom: 0;
}

@media (max-width: 600px) {
    .bc-site-footer {
        padding-bottom: 0;
    }

    .bc-site-footer .bc-site-container {
        padding-bottom: 18px;
    }

    .bc-site-footer-main {
        padding-bottom: 28px;
    }
}

/* Mobile Navigation V1 */

.bc-site-menu-toggle,
.bc-site-mobile-menu {
    display: none;
}

.bc-site-menu-toggle {
    width: 46px;
    height: 46px;

    padding: 0;
    border: 0;
    border-radius: 13px;

    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;

    background: #f3f5f7;
    cursor: pointer;
}

.bc-site-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;

    border-radius: 999px;
    background: #111827;

    transition:
        transform .2s ease,
        opacity .2s ease;
}

.bc-site-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.bc-site-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.bc-site-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* Tablet / Mobile */

@media (max-width: 920px) {

    .bc-site-nav-shell {
        position: relative;
    }

    .bc-site-nav-actions {
        gap: 8px;
    }

    .bc-site-menu-toggle {
        display: inline-flex;
    }

    .bc-site-mobile-menu {
        grid-column: 1 / -1;

        width: 100%;
        padding: 8px 6px 6px;

        border-top: 1px solid rgba(15,23,42,.07);
    }

    .bc-site-mobile-menu.is-open {
        display: block;
    }

    .bc-site-mobile-menu a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;

        padding: 15px 12px;

        border-radius: 11px;

        color: #1f2937;
        text-decoration: none;

        font-size: 15px;
        font-weight: 700;

        transition: background .2s ease;
    }

    .bc-site-mobile-menu a:hover {
        background: rgba(15,23,42,.045);
    }

    .bc-site-mobile-menu a span:last-child {
        color: var(--bc-site-primary, #104265);
        font-size: 18px;
    }
}


/* Small mobile */

@media (max-width: 600px) {

    .bc-site-nav-give {
        display: none;
    }

    .bc-site-menu-toggle {
        width: 44px;
        height: 44px;
        flex: 0 0 44px;
    }

    .bc-site-mobile-menu {
        padding-top: 10px;
    }
}

/* Mobile Home V1 — final responsive refinement */

@media (max-width: 700px) {

    /* Hero */

    .bc-site-hero {
        min-height: 0;
    }

    .bc-site-hero-content {
        max-width: 100%;
        padding: 92px 0 96px;
    }

    .bc-site-hero h1 {
        max-width: 100%;
        font-size: clamp(44px, 12vw, 58px);
        line-height: .98;
        letter-spacing: -.045em;
    }

    .bc-site-hero p {
        max-width: 100%;
        font-size: 18px;
        line-height: 1.55;
    }


    /* Sections */

    .bc-site-section {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .bc-site-section-heading h2 {
        font-size: clamp(40px, 10vw, 52px);
        line-height: 1;
        letter-spacing: -.04em;
    }


    /* Events — force true single column */

    .bc-site-events-grid,
    .bc-site-events-layout,
    .bc-site-events-editorial {
        grid-template-columns: 1fr !important;
    }

    .bc-site-event-featured,
    .bc-site-events-side,
    .bc-site-event-secondary {
        width: 100%;
        min-width: 0;
    }

    .bc-site-events-side {
        display: grid;
        grid-template-columns: 1fr !important;
    }

    .bc-site-event-card,
    .bc-site-event-featured,
    .bc-site-event-secondary {
        max-width: 100%;
    }
}


@media (max-width: 480px) {

    .bc-site-hero-content {
        padding: 78px 0 82px;
    }

    .bc-site-hero h1 {
        font-size: clamp(40px, 11.5vw, 52px);
    }

    .bc-site-hero p {
        font-size: 17px;
    }
}

/* Mobile Home V1 — anchor + final spacing */

html {
    scroll-padding-top: 120px;
}

#events,
#live,
#give {
    scroll-margin-top: 120px;
}

@media (max-width: 700px) {

    html {
        scroll-padding-top: 105px;
    }

    #events,
    #live,
    #give {
        scroll-margin-top: 105px;
    }

    /* Live → Giving */
    .bc-site-live {
        padding-bottom: 44px;
    }

    .bc-site-giving {
        padding-top: 44px;
        padding-bottom: 52px;
    }

    /* Giving */
    .bc-site-giving-card {
        min-height: 0;
    }

    /* Footer */
    .bc-site-footer-main {
        gap: 28px;
        padding-bottom: 26px;
    }

    .bc-site-footer-brand p {
        margin-top: 16px;
    }

    .bc-site-footer-label {
        margin-bottom: 14px;
    }

    .bc-site-footer-bottom {
        padding-top: 18px;
    }
}


/* =========================================================
   NATIVE GIVE — AMOUNT PRESETS
   ========================================================= */

.bc-native-give-amount {
    cursor: pointer;
    transition:
        transform .18s ease,
        border-color .18s ease,
        background-color .18s ease,
        box-shadow .18s ease;
}

.bc-native-give-amount:hover {
    transform: translateY(-1px);
}

.bc-native-give-amount.is-active {
    border-color: var(--bc-site-primary, #1da1f2);
    background: var(--bc-site-primary, #1da1f2);
    color: #fff;
    box-shadow:
        0 0 0 3px
        rgba(29, 161, 242, .15);
}



/* =========================================================
   BLESSCHURCH NATIVE GIVE — PREMIUM UI
   ========================================================= */

.bc-site-giving-card:has(.bc-native-give) {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(380px, 1.15fr);
    gap: clamp(42px, 6vw, 90px);
    align-items: center;
}

.bc-site-giving-card:has(.bc-native-give) .bc-site-giving-copy {
    align-self: center;
}


/* FORM WRAPPER */

.bc-native-give {
    width: 100%;
    max-width: 620px;
    margin-left: auto;
}

.bc-native-give-form {
    display: grid;
    gap: 26px;
    width: 100%;
    padding: clamp(26px, 4vw, 42px);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 28px;
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.11),
            rgba(255,255,255,.045)
        );
    box-shadow:
        0 24px 70px rgba(0,0,0,.18),
        inset 0 1px 0 rgba(255,255,255,.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}


/* FIELDS */

.bc-native-give-field {
    display: grid;
    gap: 11px;
    min-width: 0;
}

.bc-native-give-field > label {
    margin: 0;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: .02em;
    color: rgba(255,255,255,.78);
}


/* AMOUNT PRESETS */

.bc-native-give-amounts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 9px;
}

.bc-native-give-amount {
    appearance: none;
    -webkit-appearance: none;
    min-height: 52px;
    padding: 10px 8px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 13px;
    background: rgba(255,255,255,.075);
    color: #fff;
    font: inherit;
    font-size: 16px;
    font-weight: 750;
    line-height: 1;
    cursor: pointer;
    box-shadow: none;
    transition:
        transform .18s ease,
        background .18s ease,
        border-color .18s ease,
        box-shadow .18s ease;
}

.bc-native-give-amount:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,.13);
    border-color: rgba(255,255,255,.30);
}

.bc-native-give-amount.is-active {
    transform: translateY(-2px);
    color: #0d1c2b;
    background: #fff;
    border-color: #fff;
    box-shadow:
        0 10px 28px rgba(0,0,0,.18);
}


/* CUSTOM AMOUNT */

.bc-native-give-custom {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.bc-native-give-custom > span {
    position: absolute;
    z-index: 2;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,.72);
    font-size: 18px;
    font-weight: 700;
    pointer-events: none;
}

.bc-native-give-custom input {
    appearance: textfield;
    -moz-appearance: textfield;
    width: 100%;
    height: 58px;
    margin: 0;
    padding: 0 18px 0 40px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 14px;
    outline: none;
    background: rgba(5,18,31,.35);
    color: #fff;
    font: inherit;
    font-size: 20px;
    font-weight: 700;
    box-shadow: none;
    transition:
        border-color .18s ease,
        background .18s ease,
        box-shadow .18s ease;
}

.bc-native-give-custom input::-webkit-inner-spin-button,
.bc-native-give-custom input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.bc-native-give-custom input::placeholder {
    color: rgba(255,255,255,.38);
}

.bc-native-give-custom input:focus {
    border-color: rgba(255,255,255,.55);
    background: rgba(5,18,31,.52);
    box-shadow:
        0 0 0 4px rgba(255,255,255,.08);
}


/* FUND SELECT */

.bc-native-give-field select {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    height: 58px;
    margin: 0;
    padding: 0 48px 0 18px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 14px;
    outline: none;
    background-color: rgba(5,18,31,.35);
    background-image:
        linear-gradient(45deg, transparent 50%, rgba(255,255,255,.75) 50%),
        linear-gradient(135deg, rgba(255,255,255,.75) 50%, transparent 50%);
    background-position:
        calc(100% - 22px) 25px,
        calc(100% - 17px) 25px;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    color: #fff;
    font: inherit;
    font-size: 16px;
    font-weight: 650;
    cursor: pointer;
    box-shadow: none;
}

.bc-native-give-field select:focus {
    border-color: rgba(255,255,255,.55);
    box-shadow:
        0 0 0 4px rgba(255,255,255,.08);
}

.bc-native-give-field select option {
    color: #111827;
    background: #fff;
}


/* FREQUENCY SEGMENTED CONTROL */

.bc-native-give-frequency {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding: 5px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 15px;
    background: rgba(5,18,31,.32);
}

.bc-native-give-frequency label {
    position: relative;
    display: block;
    margin: 0;
    cursor: pointer;
}

.bc-native-give-frequency input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.bc-native-give-frequency span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 8px 14px;
    border-radius: 10px;
    color: rgba(255,255,255,.67);
    font-size: 15px;
    font-weight: 700;
    transition:
        color .18s ease,
        background .18s ease,
        box-shadow .18s ease;
}

.bc-native-give-frequency input:checked + span {
    color: #102132;
    background: #fff;
    box-shadow:
        0 5px 18px rgba(0,0,0,.15);
}


/* SUBMIT */

.bc-native-give-submit {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 62px;
    margin: 2px 0 0;
    padding: 0 24px !important;
    border: 0;
    border-radius: 15px !important;
    background: #fff !important;
    color: #102132 !important;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    box-shadow:
        0 14px 34px rgba(0,0,0,.20);
    transition:
        transform .18s ease,
        box-shadow .18s ease;
}

.bc-native-give-submit:hover {
    transform: translateY(-2px);
    box-shadow:
        0 18px 42px rgba(0,0,0,.25);
}

.bc-native-give-submit span {
    font-size: 24px;
    line-height: 1;
}


/* SECURE MESSAGE */

.bc-native-give-secure {
    position: relative;
    margin: -10px 0 0 !important;
    padding-left: 20px;
    color: rgba(255,255,255,.55) !important;
    font-size: 12px !important;
    font-weight: 600;
    line-height: 1.4;
}

.bc-native-give-secure::before {
    content: "●";
    position: absolute;
    left: 2px;
    top: 0;
    color: rgba(255,255,255,.70);
    font-size: 8px;
}


/* NOTICES */

.bc-native-give-notice {
    margin: 0 0 14px;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 12px;
    background: rgba(255,255,255,.08);
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
}

.bc-native-give-notice.is-success {
    background: rgba(46, 204, 113, .12);
    border-color: rgba(46, 204, 113, .28);
}

.bc-native-give-notice.is-error {
    background: rgba(239, 68, 68, .12);
    border-color: rgba(239, 68, 68, .28);
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .bc-site-giving-card:has(.bc-native-give) {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .bc-native-give {
        max-width: none;
        margin-left: 0;
    }

}

@media (max-width: 560px) {

    .bc-native-give-form {
        gap: 22px;
        padding: 22px;
        border-radius: 22px;
    }

    .bc-native-give-amounts {
        grid-template-columns: repeat(2, 1fr);
    }

    .bc-native-give-amount {
        min-height: 50px;
    }

    .bc-native-give-custom input,
    .bc-native-give-field select {
        height: 56px;
    }

    .bc-native-give-frequency span {
        min-height: 46px;
        font-size: 14px;
    }

    .bc-native-give-submit {
        min-height: 58px;
    }

}


/* =========================================================
   BLESSCHURCH GIVE UNAVAILABLE STATE
   ========================================================= */

.bc-site-give-page .bc-site-giving-unavailable {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin-top: 28px;
    padding: 24px 26px;
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.03),
        0 12px 34px rgba(15, 23, 42, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.bc-site-give-page .bc-site-giving-unavailable::before {
    content: "";
    display: block;
    width: 42px;
    height: 4px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: currentColor;
    opacity: 0.22;
}

.bc-site-give-page .bc-site-giving-unavailable strong {
    display: block;
    margin: 0;
    font-size: clamp(1.05rem, 1.8vw, 1.2rem);
    line-height: 1.35;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.bc-site-give-page .bc-site-giving-unavailable p {
    max-width: 470px;
    margin: 8px 0 0;
    font-size: 0.96rem;
    line-height: 1.65;
    opacity: 0.68;
}

@media (max-width: 700px) {

    .bc-site-give-page .bc-site-giving-unavailable {
        margin-top: 22px;
        padding: 21px 20px;
        border-radius: 14px;
    }

}



/* =========================================================
   BLESSCHURCH MINISTRIES PAGE
   ========================================================= */

.bc-site-ministries-page {
    padding-block: clamp(64px, 8vw, 110px);
}

.bc-site-ministries-head {
    max-width: 760px;
    margin-bottom: 42px;
}

.bc-site-ministries-head h1 {
    margin: 8px 0 14px;
    font-size: clamp(2.2rem, 5vw, 4.4rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.bc-site-ministries-head > p {
    max-width: 680px;
    margin: 0;
    font-size: clamp(1rem, 1.5vw, 1.12rem);
    line-height: 1.75;
    opacity: .72;
}

.bc-site-ministries-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.bc-site-ministry-card {
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, .10);
    border-radius: 20px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 14px 44px rgba(15, 23, 42, .06);
}

.bc-site-ministry-image {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: rgba(15, 23, 42, .05);
}

.bc-site-ministry-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bc-site-ministry-content {
    padding: clamp(22px, 3vw, 32px);
}

.bc-site-ministry-content h2 {
    margin: 0 0 12px;
    font-size: clamp(1.35rem, 2.3vw, 1.8rem);
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.bc-site-ministry-description {
    font-size: .98rem;
    line-height: 1.7;
    opacity: .72;
}

.bc-site-ministry-description p:last-child {
    margin-bottom: 0;
}

@media (max-width: 760px) {

    .bc-site-ministries-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .bc-site-ministry-card {
        border-radius: 16px;
    }
}


/* =========================================================
   BLESSCHURCH PUBLIC EVENTS
   ========================================================= */

.bc-site-events-page {
    padding-block: clamp(64px, 8vw, 110px);
}

.bc-site-events-head {
    max-width: 760px;
    margin-bottom: 42px;
}

.bc-site-events-head h1 {
    margin: 8px 0 14px;
    font-size: clamp(2.2rem, 5vw, 4.4rem);
    line-height: 1.02;
    letter-spacing: -.045em;
}

.bc-site-events-head > p {
    max-width: 680px;
    margin: 0;
    font-size: clamp(1rem, 1.5vw, 1.12rem);
    line-height: 1.75;
    opacity: .72;
}

.bc-site-events-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.bc-site-event-card {
    overflow: hidden;
    border: 1px solid rgba(15,23,42,.10);
    border-radius: 20px;
    background: rgba(255,255,255,.78);
    box-shadow: 0 14px 44px rgba(15,23,42,.06);
}

.bc-site-event-card.is-featured {
    border-color: currentColor;
}

.bc-site-event-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: rgba(15,23,42,.05);
}

.bc-site-event-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bc-site-event-content {
    padding: clamp(22px, 3vw, 32px);
}

.bc-site-event-featured {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 6px 10px;
    border-radius: 999px;
    background: currentColor;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.bc-site-event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-bottom: 10px;
    font-size: .86rem;
    font-weight: 650;
    opacity: .65;
}

.bc-site-event-content h2 {
    margin: 0 0 10px;
    font-size: clamp(1.4rem, 2.4vw, 1.9rem);
    line-height: 1.15;
    letter-spacing: -.03em;
}

.bc-site-event-location {
    margin-bottom: 14px;
    font-size: .92rem;
    font-weight: 600;
    opacity: .62;
}

.bc-site-event-description {
    line-height: 1.7;
    opacity: .72;
}

.bc-site-event-description p:last-child {
    margin-bottom: 0;
}

.bc-site-event-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 20px;
    font-weight: 700;
    text-decoration: none;
}

@media (max-width:760px) {
    .bc-site-events-grid {
        grid-template-columns:1fr;
        gap:18px;
    }

    .bc-site-event-card {
        border-radius:16px;
    }
}


/* =========================================================
   BLESSCHURCH PUBLIC CONTACT
   ========================================================= */

.bc-site-contact-page {
    padding-block: clamp(64px, 8vw, 110px);
}

.bc-site-contact-layout {
    display:grid;
    grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);
    gap:clamp(42px,7vw,100px);
    align-items:start;
}

.bc-site-contact-info h1 {
    margin:8px 0 18px;
    font-size:clamp(2.4rem,5vw,4.8rem);
    line-height:1;
    letter-spacing:-.05em;
}

.bc-site-contact-intro {
    max-width:580px;
    margin:0;
    font-size:clamp(1rem,1.4vw,1.12rem);
    line-height:1.75;
    opacity:.72;
}

.bc-site-contact-details {
    display:grid;
    gap:0;
    margin-top:42px;
    border-top:1px solid rgba(15,23,42,.10);
}

.bc-site-contact-detail {
    display:grid;
    grid-template-columns:100px 1fr;
    gap:20px;
    padding:20px 0;
    border-bottom:1px solid rgba(15,23,42,.10);
}

.bc-site-contact-detail > span {
    font-size:.78rem;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.08em;
    opacity:.48;
}

.bc-site-contact-detail a,
.bc-site-contact-detail p {
    margin:0;
    color:inherit;
    font-weight:600;
    line-height:1.55;
    text-decoration:none;
}

.bc-site-contact-form-wrap {
    padding:clamp(24px,4vw,42px);
    border:1px solid rgba(15,23,42,.10);
    border-radius:22px;
    background:rgba(255,255,255,.78);
    box-shadow:0 18px 60px rgba(15,23,42,.07);
}

.bc-site-contact-form {
    display:grid;
    gap:20px;
}

.bc-site-contact-row {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
}

.bc-site-contact-field {
    display:grid;
    gap:8px;
}

.bc-site-contact-field label {
    font-size:.82rem;
    font-weight:700;
}

.bc-site-contact-field input,
.bc-site-contact-field textarea {
    width:100%;
    box-sizing:border-box;
    padding:14px 15px;
    border:1px solid rgba(15,23,42,.14);
    border-radius:10px;
    background:#fff;
    color:#111827;
    font:inherit;
    outline:none;
    transition:border-color .18s ease,
               box-shadow .18s ease;
}

.bc-site-contact-field textarea {
    resize:vertical;
    min-height:150px;
}

.bc-site-contact-field input:focus,
.bc-site-contact-field textarea:focus {
    border-color:currentColor;
    box-shadow:0 0 0 3px rgba(15,23,42,.07);
}

.bc-site-contact-submit {
    display:inline-flex;
    justify-content:center;
    align-items:center;
    min-height:50px;
    padding:0 22px;
    border:0;
    border-radius:10px;
    background:#111827;
    color:#fff;
    font:inherit;
    font-weight:700;
    cursor:pointer;
}

.bc-site-contact-message {
    margin-bottom:20px;
    padding:15px 17px;
    border-radius:10px;
    font-size:.92rem;
    line-height:1.5;
}

.bc-site-contact-message.is-success {
    background:rgba(22,163,74,.09);
    border:1px solid rgba(22,163,74,.18);
}

.bc-site-contact-message.is-error {
    background:rgba(220,38,38,.07);
    border:1px solid rgba(220,38,38,.15);
}

.bc-contact-honeypot {
    position:absolute !important;
    left:-9999px !important;
    width:1px !important;
    height:1px !important;
    overflow:hidden !important;
}

@media(max-width:800px) {

    .bc-site-contact-layout {
        grid-template-columns:1fr;
    }

    .bc-site-contact-row {
        grid-template-columns:1fr;
    }

}

@media(max-width:520px) {

    .bc-site-contact-detail {
        grid-template-columns:1fr;
        gap:6px;
    }

    .bc-site-contact-form-wrap {
        border-radius:16px;
    }

}


/* =========================================================
   BLESSCHURCH — CHURCH THEMED 404
   ========================================================= */

.bc-site-404 {
    display: flex;
    align-items: center;
    min-height: 62vh;
    padding: 88px 0;
}

.bc-site-404-card {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.bc-site-404-code {
    display: inline-block;
    margin-bottom: 18px;
    font-size: clamp(4.5rem, 11vw, 8rem);
    line-height: .85;
    font-weight: 800;
    letter-spacing: -.07em;
    opacity: .14;
}

.bc-site-404-card h1 {
    margin: 0;
    font-size: clamp(2.25rem, 5vw, 4.5rem);
    line-height: 1.02;
    letter-spacing: -.045em;
}

.bc-site-404-card p {
    max-width: 590px;
    margin: 22px auto 32px;
    font-size: 1.08rem;
    line-height: 1.7;
    opacity: .72;
}

.bc-site-404-card .bc-site-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 700px) {
    .bc-site-404 {
        min-height: 55vh;
        padding: 64px 0;
    }

    .bc-site-404-card p {
        margin-top: 18px;
        margin-bottom: 28px;
    }
}

