:root {
    --purple: #44205e;
    --purple-dark: #24102f;
    --purple-soft: #eadff0;
    --gold: #c49a57;
    --cream: #f2eadf;
    --paper: #fbf8f2;
    --white: #ffffff;

    --text: #252126;
    --text-soft: #706a70;
    --text-muted: #989198;

    --line: #ded7d0;
    --dark-line: rgba(255, 255, 255, 0.15);

    --container: 1380px;

    --font-body: "DM Sans", sans-serif;
    --font-heading: "Marcellus", serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    background: var(--paper);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open,
body.modal-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

img {
    display: block;
    width: 100%;
}

.wide-container {
    width: min(calc(100% - 64px), var(--container));
    margin-inline: auto;
}

.section-label {
    color: var(--purple);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* Demo bar */

.demo-bar {
    position: relative;
    z-index: 1200;
    background: #16091e;
    color: rgba(255, 255, 255, 0.64);
}

.demo-bar-inner {
    min-height: 39px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 10px;
}

.demo-bar a {
    color: #dfc491;
    display: inline-flex;
    gap: 8px;
    font-weight: 700;
}

/* Header */

.site-header {
    position: absolute;
    top: 39px;
    left: 0;
    z-index: 1000;
    width: 100%;
    padding: 21px 0;
    color: var(--white);
}

.site-header.scrolled {
    position: fixed;
    top: 0;
    background: rgba(36, 16, 47, 0.96);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-symbol {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 50%;
    color: #e2c99b;
    display: grid;
    place-items: center;
    font-family: var(--font-heading);
    font-size: 21px;
}

.brand-copy {
    display: flex;
    flex-direction: column;
}

.brand-copy strong {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
}

.brand-copy small {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 7px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 27px;
}

.navigation > a {
    color: rgba(255, 255, 255, 0.68);
    font-size: 11px;
}

.navigation > a:hover {
    color: var(--white);
}

.header-give-link {
    padding-left: 25px;
    border-left: 1px solid var(--dark-line);
    display: inline-flex;
    gap: 15px;
}

.menu-button {
    display: none;
    width: 43px;
    height: 43px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: transparent;
}

.menu-button span {
    display: block;
    width: 18px;
    height: 1px;
    margin: 6px auto;
    background: var(--white);
}

/* Hero */

.hero-section {
    position: relative;
    min-height: 940px;
    color: var(--white);
    overflow: hidden;
}

.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-media img {
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(28, 12, 38, 0.95),
            rgba(28, 12, 38, 0.61) 58%,
            rgba(28, 12, 38, 0.18)
        ),
        linear-gradient(
            to top,
            rgba(28, 12, 38, 0.72),
            transparent 48%
        );
}

.hero-layout {
    position: relative;
    z-index: 2;
    min-height: 760px;
    padding-top: 190px;
    display: grid;
    grid-template-columns: 1fr 330px;
    align-items: center;
    gap: 90px;
}

.hero-label {
    color: #dec38e;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.hero-content h1 {
    max-width: 900px;
    margin-top: 24px;
    font-family: var(--font-heading);
    font-size: clamp(76px, 9vw, 132px);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -0.055em;
}

.hero-content h1 em {
    display: block;
    color: #e3ca9a;
    font-weight: 400;
}

.hero-content > p {
    max-width: 600px;
    margin-top: 31px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 15px;
}

.hero-actions {
    margin-top: 37px;
    display: flex;
    gap: 14px;
}

.primary-button,
.secondary-button {
    min-height: 54px;
    padding: 0 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 27px;
    font-size: 11px;
    font-weight: 700;
}

.primary-button {
    background: var(--gold);
    color: #261728;
}

.secondary-button {
    border: 1px solid rgba(255, 255, 255, 0.31);
}

.next-service-card {
    padding: 31px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(41, 18, 53, 0.78);
    backdrop-filter: blur(18px);
}

.card-label {
    color: #dec38e;
    font-size: 8px;
    text-transform: uppercase;
}

.next-service-card > strong {
    display: block;
    margin-top: 20px;
    font-family: var(--font-heading);
    font-size: 47px;
    font-weight: 400;
}

.next-service-card > p {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 10px;
}

.countdown {
    margin-top: 27px;
    padding: 20px 0;
    border-top: 1px solid var(--dark-line);
    border-bottom: 1px solid var(--dark-line);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.countdown div {
    text-align: center;
}

.countdown strong,
.countdown span {
    display: block;
}

.countdown strong {
    font-family: var(--font-heading);
    font-size: 25px;
}

.countdown span {
    color: rgba(255, 255, 255, 0.42);
    font-size: 7px;
    text-transform: uppercase;
}

.next-service-card > a {
    margin-top: 22px;
    display: flex;
    justify-content: space-between;
    color: #e0c893;
    font-size: 9px;
}

.hero-bottom {
    position: relative;
    z-index: 3;
    border-top: 1px solid var(--dark-line);
    background: rgba(30, 13, 40, 0.72);
}

.hero-bottom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.hero-bottom article {
    min-height: 125px;
    padding: 27px;
    border-right: 1px solid var(--dark-line);
}

.hero-bottom span,
.hero-bottom strong {
    display: block;
}

.hero-bottom span {
    color: #d6ba86;
    font-size: 8px;
    text-transform: uppercase;
}

.hero-bottom strong {
    margin-top: 6px;
    font-size: 11px;
}

/* Shared headings */

.welcome-heading h2,
.sermons-heading h2,
.mission-content h2,
.ministries-heading h2,
.events-heading h2,
.visit-content h2,
.prayer-copy h2,
.giving-layout h2 {
    max-width: 830px;
    margin-top: 17px;
    font-family: var(--font-heading);
    font-size: clamp(52px, 6vw, 84px);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.045em;
}

/* Welcome */

.welcome-section {
    padding: 145px 0 0;
}

.welcome-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 100px;
}

.welcome-copy p {
    margin-bottom: 23px;
    color: var(--text-soft);
    font-size: 14px;
}

.welcome-copy a {
    margin-top: 20px;
    padding-bottom: 7px;
    border-bottom: 1px solid var(--purple);
    display: inline-flex;
    gap: 27px;
    color: var(--purple);
    font-size: 10px;
}

.welcome-gallery {
    margin-top: 90px;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
}

.welcome-image-large img {
    height: 650px;
    object-fit: cover;
}

.welcome-statistics {
    padding: 58px;
    background: var(--purple-dark);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.welcome-statistics article {
    padding: 29px 0;
    border-bottom: 1px solid var(--dark-line);
}

.welcome-statistics strong,
.welcome-statistics span {
    display: block;
}

.welcome-statistics strong {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 400;
}

.welcome-statistics span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 9px;
}

/* Sermons */

.sermons-section {
    padding: 135px 0;
    background: var(--purple-dark);
    color: var(--white);
    overflow: hidden;
}

.sermons-heading {
    width: min(calc(100% - 64px), var(--container));
    margin: 0 auto 50px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
}

.sermons-heading .section-label {
    color: #d9bd89;
}

.sermons-heading h2 {
    color: var(--white);
}

.sermons-heading > p {
    max-width: 420px;
    color: rgba(255, 255, 255, 0.53);
}

.sermon-scroller {
    padding-left: max(32px, calc((100vw - var(--container)) / 2));
    padding-right: 32px;
    display: flex;
    gap: 23px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}

.sermon-card {
    flex: 0 0 min(560px, 82vw);
    scroll-snap-align: start;
}

.sermon-image {
    position: relative;
    height: 410px;
    overflow: hidden;
}

.sermon-image img {
    height: 100%;
    object-fit: cover;
    filter: brightness(0.78);
    transition: transform 0.7s ease;
}

.sermon-card:hover img {
    transform: scale(1.04);
}

.play-sermon-button {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 70px;
    height: 70px;
    border: none;
    border-radius: 50%;
    background: var(--gold);
    color: #2d1831;
    transform: translate(-50%, -50%);
    display: grid;
    place-items: center;
    font-size: 18px;
}

.sermon-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 31px;
}

.sermon-information {
    padding: 25px 0;
}

.sermon-information > span {
    color: #d2b780;
    font-size: 8px;
    text-transform: uppercase;
}

.sermon-information h3 {
    margin-top: 8px;
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 400;
}

.sermon-information p {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 10px;
}

.sermon-information small {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.34);
}

/* Mission */

.mission-section {
    min-height: 820px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
}

.mission-image img {
    height: 100%;
    object-fit: cover;
}

.mission-content {
    padding: 100px 7vw;
    background: var(--cream);
}

.mission-points {
    margin-top: 55px;
}

.mission-points article {
    padding: 25px 0;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 20px;
}

.mission-points article > span {
    color: var(--purple);
    font-size: 9px;
}

.mission-points h3 {
    font-family: var(--font-heading);
    font-size: 25px;
    font-weight: 400;
}

.mission-points p {
    margin-top: 6px;
    color: var(--text-soft);
    font-size: 10px;
}

/* Ministries */

.ministries-section {
    padding: 140px 0;
}

.ministries-layout {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 100px;
}

.ministries-heading {
    position: sticky;
    top: 120px;
    align-self: start;
}

.ministries-heading > p {
    margin-top: 22px;
    color: var(--text-soft);
}

.ministry-list {
    border-top: 1px solid var(--line);
}

.ministry-list article {
    padding: 29px 0;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 50px 1fr 130px;
    gap: 25px;
    align-items: center;
}

.ministry-list article > span {
    color: var(--purple);
    font-size: 9px;
}

.ministry-list h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
}

.ministry-list p {
    margin-top: 5px;
    color: var(--text-soft);
    font-size: 10px;
}

.ministry-list a {
    display: flex;
    justify-content: space-between;
    color: var(--purple);
    font-size: 9px;
}

/* Events */

.events-section {
    padding: 135px 0;
    background: var(--purple-soft);
}

.events-heading {
    margin-bottom: 50px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
}

.events-heading > a {
    padding-bottom: 7px;
    border-bottom: 1px solid var(--purple);
    display: inline-flex;
    gap: 20px;
    color: var(--purple);
    font-size: 10px;
}

.events-list {
    border-top: 1px solid rgba(68, 32, 94, 0.18);
}

.events-list article {
    padding: 28px 0;
    border-bottom: 1px solid rgba(68, 32, 94, 0.18);
    display: grid;
    grid-template-columns: 100px 1fr 260px 100px;
    align-items: center;
    gap: 30px;
}

.event-date {
    display: flex;
    align-items: center;
    gap: 10px;
}

.event-date strong {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 400;
}

.event-date span {
    color: var(--purple);
    font-size: 8px;
    font-weight: 700;
}

.event-title h3 {
    font-family: var(--font-heading);
    font-size: 27px;
    font-weight: 400;
}

.event-meta {
    display: flex;
    flex-direction: column;
    color: var(--text-soft);
    font-size: 10px;
}

.events-list article > a {
    display: flex;
    justify-content: space-between;
    color: var(--purple);
    font-size: 9px;
}

/* Visit */

.visit-section {
    min-height: 750px;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
}

.visit-content {
    padding: 95px 7vw;
    background: var(--purple-dark);
    color: var(--white);
}

.visit-content .section-label {
    color: #d8bd89;
}

.visit-content h2 {
    color: var(--white);
}

.visit-content > p {
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.56);
}

.visit-details {
    margin: 42px 0;
}

.visit-details article {
    padding: 16px 0;
    border-top: 1px solid var(--dark-line);
}

.visit-details span,
.visit-details strong {
    display: block;
}

.visit-details span {
    color: #d5ba87;
    font-size: 8px;
    text-transform: uppercase;
}

.visit-details strong {
    margin-top: 5px;
    font-size: 10px;
}

.visit-content > a {
    padding-bottom: 7px;
    border-bottom: 1px solid var(--white);
    display: inline-flex;
    gap: 23px;
    font-size: 10px;
}

.visit-image img {
    height: 100%;
    object-fit: cover;
}

/* Prayer */

.prayer-section {
    padding: 140px 0;
}

.prayer-layout {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 100px;
}

.prayer-copy > p {
    margin-top: 22px;
    color: var(--text-soft);
}

.prayer-note {
    margin-top: 40px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.prayer-note span,
.prayer-note strong {
    display: block;
}

.prayer-note span {
    color: var(--purple);
    font-size: 8px;
    text-transform: uppercase;
}

.prayer-note strong {
    margin-top: 6px;
    font-family: var(--font-heading);
    font-size: 27px;
    font-weight: 400;
}

.prayer-form {
    padding: 42px;
    border: 1px solid var(--line);
    background: var(--white);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-field {
    margin-bottom: 20px;
}

.form-field label {
    display: block;
    margin-bottom: 7px;
    color: var(--text-soft);
    font-size: 9px;
    text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--line);
    outline: none;
    background: transparent;
    color: var(--text);
}

.form-field input,
.form-field select {
    height: 49px;
}

.form-field textarea {
    min-height: 120px;
    padding-top: 12px;
    resize: vertical;
}

.confidential-checkbox {
    margin-bottom: 22px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-soft);
    font-size: 10px;
}

.confidential-checkbox input {
    margin-top: 3px;
}

.prayer-form button {
    width: 100%;
    min-height: 57px;
    border: none;
    background: var(--purple);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    font-size: 11px;
    font-weight: 700;
}

.form-message {
    min-height: 18px;
    margin-top: 12px;
    color: var(--purple);
    font-size: 10px;
    text-align: center;
}

/* Giving */

.giving-section {
    padding: 135px 0;
    background: var(--cream);
}

.giving-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 90px;
}

.giving-layout > div:first-child > p {
    margin-top: 22px;
    color: var(--text-soft);
}

.giving-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.giving-options article {
    min-height: 330px;
    padding: 31px;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    display: flex;
    flex-direction: column;
}

.giving-options article > span {
    color: var(--purple);
    font-size: 9px;
}

.giving-options h3 {
    margin-top: 55px;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
}

.giving-options p {
    margin-top: 8px;
    color: var(--text-soft);
    font-size: 10px;
}

.giving-options a {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    color: var(--purple);
    font-size: 9px;
}

/* Footer */

.site-footer {
    padding: 85px 0 24px;
    background: #16091e;
    color: var(--white);
}

.footer-grid {
    padding-bottom: 60px;
    display: grid;
    grid-template-columns: 1.7fr repeat(3, 1fr);
    gap: 50px;
}

.footer-about p {
    max-width: 360px;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.47);
    font-size: 10px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column > span {
    margin-bottom: 9px;
    color: #d5b982;
    font-size: 8px;
    text-transform: uppercase;
}

.footer-column a,
.footer-column p {
    color: rgba(255, 255, 255, 0.46);
    font-size: 10px;
}

.footer-bottom {
    padding-top: 22px;
    border-top: 1px solid var(--dark-line);
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.32);
    font-size: 9px;
}

.footer-bottom a {
    display: inline-flex;
    gap: 8px;
}

.floating-welcome {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 900;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: var(--gold);
    color: #2a1730;
    display: grid;
    place-items: center;
    font-size: 9px;
    font-weight: 700;
    box-shadow: 0 17px 40px rgba(0, 0, 0, 0.24);
}

.floating-welcome span {
    display: block;
}

/* Sermon modal */

.sermon-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: 20px;
}

.sermon-modal[hidden] {
    display: none;
}

.sermon-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 6, 20, 0.82);
    backdrop-filter: blur(8px);
}

.sermon-modal-card {
    position: relative;
    z-index: 2;
    width: min(100%, 620px);
    padding: 36px;
    background: var(--paper);
}

.sermon-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 37px;
    height: 37px;
    border: none;
    background: var(--purple-dark);
    color: var(--white);
    font-size: 21px;
}

.sermon-modal-card > span {
    color: var(--purple);
    font-size: 8px;
    text-transform: uppercase;
}

.sermon-modal-card h3 {
    margin-top: 12px;
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 400;
}

.sermon-player-placeholder {
    height: 280px;
    margin-top: 25px;
    background: var(--purple-dark);
    color: var(--white);
    display: grid;
    place-items: center;
}

.sermon-player-placeholder span {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--purple-dark);
    display: grid;
    place-items: center;
    font-size: 18px;
}

.sermon-modal-card > p {
    margin-top: 18px;
    color: var(--text-soft);
    font-size: 11px;
}

/* Responsive */

@media (max-width: 1000px) {
    .menu-button {
        display: block;
    }

    .navigation {
        position: fixed;
        top: 100px;
        left: 24px;
        right: 24px;
        padding: 25px;
        background: rgba(36, 16, 47, 0.99);
        display: none;
        flex-direction: column;
        align-items: stretch;
    }

    .navigation.open {
        display: flex;
    }

    .header-give-link {
        padding: 14px 0 0;
        border-left: none;
        border-top: 1px solid var(--dark-line);
    }

    .hero-layout {
        grid-template-columns: 1fr;
    }

    .next-service-card {
        display: none;
    }

    .welcome-layout,
    .ministries-layout,
    .prayer-layout,
    .giving-layout {
        grid-template-columns: 1fr;
    }

    .ministries-heading {
        position: static;
    }

    .mission-section,
    .visit-section {
        grid-template-columns: 1fr;
    }

    .events-list article {
        grid-template-columns: 90px 1fr 180px;
    }

    .events-list article > a {
        grid-column: 2 / 4;
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .footer-column:last-child {
        grid-column: 2 / 4;
    }
}

@media (max-width: 680px) {
    .wide-container {
        width: min(calc(100% - 28px), var(--container));
    }

    .demo-bar-inner {
        min-height: 49px;
        font-size: 8px;
    }

    .site-header {
        top: 49px;
    }

    .site-header.scrolled {
        top: 0;
    }

    .hero-section {
        min-height: 890px;
    }

    .hero-layout {
        min-height: 700px;
        padding-top: 160px;
    }

    .hero-content h1 {
        font-size: 63px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-bottom-grid {
        grid-template-columns: 1fr;
    }

    .hero-bottom article {
        border-bottom: 1px solid var(--dark-line);
    }

    .welcome-section,
    .sermons-section,
    .ministries-section,
    .events-section,
    .prayer-section,
    .giving-section {
        padding: 82px 0;
    }

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

    .welcome-image-large img {
        height: 440px;
    }

    .welcome-statistics {
        padding: 35px 24px;
    }

    .sermons-heading,
    .events-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .sermon-card {
        flex-basis: 88vw;
    }

    .sermon-image {
        height: 360px;
    }

    .mission-image,
    .visit-image {
        min-height: 430px;
    }

    .mission-content,
    .visit-content {
        padding: 75px 24px;
    }

    .ministry-list article {
        grid-template-columns: 40px 1fr;
    }

    .ministry-list a {
        grid-column: 2;
    }

    .events-list article {
        grid-template-columns: 75px 1fr;
    }

    .event-meta,
    .events-list article > a {
        grid-column: 2;
    }

    .prayer-form {
        padding: 27px 19px;
    }

    .form-row,
    .giving-options {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-about {
        grid-column: 1 / 3;
    }

    .footer-column:last-child {
        grid-column: 1 / 3;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 13px;
    }

    .floating-welcome {
        width: 64px;
        height: 64px;
        right: 14px;
        bottom: 14px;
    }

    .sermon-modal-card {
        padding: 28px 20px;
    }

    .sermon-player-placeholder {
        height: 220px;
    }
}
