:root {
    --ink: #171918;
    --muted: #66706b;
    --cream: #f4f3ef;
    --paper: #fbfbf8;
    --yellow: #f3bd32;
    --green: #173b34;
    --line: #dfe3df;
    --serif: Georgia, 'Times New Roman', serif;
    --sans: 'DM Sans', sans-serif;
    --display: 'Manrope', sans-serif
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.55
}

a {
    color: inherit;
    text-decoration: none
}

.shell {
    width: min(1160px, calc(100% - 64px));
    margin: auto
}

.announcement {
    height: 36px;
    background: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .03em
}

.announcement a {
    margin-left: 22px;
    text-decoration: underline
}

.announcement-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green)
}

.site-header {
    height: 82px;
    background: var(--paper);
    border-bottom: 1px solid #e8e9e4;
    position: sticky;
    top: 0;
    z-index: 20
}

.nav-wrap {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.brand {
    display: flex;
    align-items: center;
    gap: 11px
}

.brand-mark {
    display: grid;
    place-items: center;
    background: var(--green);
    color: var(--yellow);
    font-family: var(--display);
    font-size: 14px;
    font-weight: 800;
    width: 37px;
    height: 37px;
    letter-spacing: -.08em
}

.brand strong,
.brand small {
    display: block;
    line-height: 1
}

.brand strong {
    text-transform: uppercase;
    letter-spacing: .12em;
    font-family: var(--display);
    font-size: 13px
}

.brand small {
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 8px;
    margin-top: 5px;
    color: var(--muted)
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 13px;
    font-weight: 600;
    padding: 6px;
    border: 1px solid #e3e7e2;
    background: #fff;
    box-shadow: 0 5px 18px rgba(23, 59, 52, .06)
}

.main-nav a {
    padding: 11px 13px;
    position: relative;
    border-radius: 2px;
    transition: background .2s ease, color .2s ease
}

.nav-menu {
    position: relative
}

.nav-menu>button {
    border: 0;
    padding: 11px 13px;
    background: none;
    color: inherit;
    font: inherit;
    cursor: pointer;
    border-radius: 2px;
    transition: background .2s ease, color .2s ease
}

.nav-menu>button span {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin: 0 0 3px 8px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg);
    transition: transform .2s ease
}

.nav-menu>button[aria-expanded="true"] span {
    transform: rotate(225deg);
    margin-bottom: -1px
}

.main-nav>a:hover,
.nav-menu>button:hover,
.nav-menu>button[aria-expanded="true"] {
    background: #f4f6f2
}

.nav-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 190px;
    padding: 8px;
    background: var(--paper);
    border: 1px solid #e3e7e2;
    box-shadow: 0 16px 34px rgba(23, 59, 52, .14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: .2s ease
}

.nav-submenu::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px
}

.nav-menu:hover .nav-submenu,
.nav-menu:focus-within .nav-submenu,
.nav-menu>button[aria-expanded="true"]+.nav-submenu {
    opacity: 1;
    pointer-events: auto;
    transform: none
}

.nav-submenu a {
    display: block;
    padding: 10px 11px;
    white-space: nowrap;
    border-radius: 2px
}

.nav-submenu a:hover {
    background: #eef1ed
}

.main-nav a.active:after {
    display: none
}

.main-nav a.active {
    background: var(--yellow);
    color: var(--ink)
}

.main-nav .nav-give {
    background: var(--green);
    color: white;
    padding: 11px 15px;
    margin-left: 4px
}

.nav-give span,
.button span {
    color: var(--yellow);
    margin-left: 8px
}

.menu-toggle {
    display: none
}

.hero {
    height: min(690px, calc(100vh - 118px));
    min-height: 550px;
    background: var(--green);
    position: relative;
    color: white;
    overflow: hidden
}

.hero-image {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, rgba(10, 30, 25, .8) 0%, rgba(10, 30, 25, .42) 55%, rgba(10, 30, 25, .12)), url('https://images.unsplash.com/photo-1507692049790-de58290a4334?auto=format&fit=crop&w=2200&q=90');
    background-size: cover;
    background-position: center 48%;
    opacity: .95
}

.hero-content {
    position: relative;
    padding-top: 112px
}

.eyebrow {
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: .2em;
    font-weight: 800;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 21px
}

.eyebrow span {
    display: inline-block;
    width: 27px;
    height: 2px;
    background: var(--yellow)
}

.eyebrow.light {
    color: #e9eee9
}

.hero h1 {
    font-family: var(--display);
    font-size: clamp(45px, 6vw, 76px);
    line-height: 1.02;
    letter-spacing: -.055em;
    margin: 0;
    max-width: 650px
}

.hero h1 em,
.section-pad h2 em,
.beliefs h2 em,
.sermon-copy h2 em,
.visit-section h2 em,
.give h2 em,
.contact h2 em {
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: -.04em
}

.hero-copy {
    font-size: 17px;
    max-width: 390px;
    color: #dfe7e2;
    margin: 26px 0 31px
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    cursor: pointer;
    font: 700 12px var(--sans);
    letter-spacing: .04em;
    padding: 15px 20px;
    transition: transform .2s, background .2s
}

.button:hover {
    transform: translateY(-2px)
}

.button-primary {
    background: var(--yellow);
    color: var(--ink)
}

.button-ghost {
    border: 1px solid rgba(255, 255, 255, .45);
    color: #fff
}

.play-icon {
    font-size: 10px;
    margin-right: 9px
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 75px;
    color: #d6dfda;
    font-size: 11px
}

.avatar-stack {
    display: flex
}

.avatar-stack span {
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    background: #72908a;
    border: 2px solid #36564f;
    border-radius: 50%;
    font-size: 9px;
    margin-left: -5px
}

.avatar-stack span:first-child {
    margin: 0;
    background: #c78058
}

.avatar-stack span:nth-child(2) {
    background: #a09c64
}

.avatar-stack span:nth-child(3) {
    background: #806a60
}

.avatar-stack span:last-child {
    background: var(--yellow);
    color: var(--ink)
}

.scroll-hint {
    position: absolute;
    right: 38px;
    bottom: 33px;
    display: flex;
    gap: 16px;
    align-items: center;
    writing-mode: vertical-rl;
    text-transform: uppercase;
    letter-spacing: .15em;
    font-size: 9px;
    color: #ccd5d0
}

.scroll-hint i {
    font-size: 20px;
    font-style: normal;
    color: var(--yellow)
}

.service-strip {
    background: var(--yellow);
    padding: 39px 0
}

.service-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr .8fr;
    gap: 30px;
    align-items: center
}

.service-intro .eyebrow {
    color: #46513e;
    margin: 0 0 8px
}

.service-intro h2 {
    font: 700 24px var(--display);
    line-height: 1.1;
    margin: 0;
    letter-spacing: -.04em
}

.service-intro h2 em {
    font: 400 27px var(--serif)
}

.service-item {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    border-left: 1px solid rgba(23, 25, 24, .2);
    padding-left: 20px
}

.service-icon {
    font-size: 25px
}

.service-item b,
.service-item strong,
.service-item small {
    display: block
}

.service-item b {
    font-size: 12px
}

.service-item strong {
    font: 700 16px var(--display);
    margin: 3px 0
}

.service-item small {
    font-size: 10px;
    opacity: .7
}

.service-action {
    border-left: 1px solid rgba(23, 25, 24, .2);
    padding-left: 25px
}

.text-link {
    font-size: 12px;
    font-weight: 800;
    border-bottom: 1px solid var(--yellow);
    padding-bottom: 6px;
    display: inline-block
}

.service-action .text-link {
    display: block;
    border: 0;
    margin: 5px 0
}

.text-link span {
    color: var(--green);
    margin-left: 10px
}

.section-pad {
    padding: 112px 0
}

.welcome {
    background: var(--paper)
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 105px;
    align-items: center
}

.photo-frame {
    position: relative;
    padding: 0 27px 27px 0
}

.photo-frame:after {
    content: "";
    background: var(--yellow);
    position: absolute;
    right: 0;
    bottom: 0;
    width: 78%;
    height: 86%;
    z-index: 0
}

.photo-frame img {
    position: relative;
    display: block;
    width: 100%;
    height: 460px;
    object-fit: cover;
    z-index: 1
}

.photo-label {
    position: absolute;
    bottom: 11px;
    left: 13px;
    z-index: 2;
    background: var(--green);
    color: white;
    padding: 12px 17px;
    font: 600 10px var(--sans);
    letter-spacing: .04em
}

.welcome-copy h2,
.section-pad h2,
.beliefs h2,
.sermon-copy h2,
.visit-section h2,
.give h2,
.contact h2 {
    font: 800 clamp(38px, 4vw, 53px) var(--display);
    line-height: 1.04;
    letter-spacing: -.065em;
    margin: 0
}

.welcome-copy>p:not(.eyebrow) {
    max-width: 450px;
    color: var(--muted);
    font-size: 15px;
    margin: 26px 0 0
}

.welcome-copy .text-link {
    margin-top: 25px
}

.section-dark {
    background: var(--green);
    color: white;
    padding: 108px 0
}

.beliefs-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 120px
}

.dark-copy {
    color: #b9c9c3;
    max-width: 390px;
    margin: 27px 0 31px;
    font-size: 15px
}

.button-outline {
    border: 1px solid #6b877e;
    color: #fff
}

.belief-list article {
    display: grid;
    grid-template-columns: 55px 1fr;
    border-top: 1px solid #4b665e;
    padding: 24px 0;
    gap: 12px
}

.belief-list article:last-child {
    border-bottom: 1px solid #4b665e
}

.belief-list article>span {
    font: 700 11px var(--display);
    color: var(--yellow)
}

.belief-list h3 {
    font: 700 19px var(--display);
    margin: 0 0 7px
}

.belief-list p {
    color: #b9c9c3;
    font-size: 13px;
    margin: 0;
    max-width: 390px
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 43px
}

.section-heading .eyebrow {
    margin-bottom: 15px
}

.ministry-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 18px
}

.ministry-card {
    background: #e8ece7;
    padding: 27px;
    min-height: 326px
}

.ministry-card.featured {
    padding: 0;
    display: flex;
    min-height: 326px;
    background: var(--green);
    color: white
}

.ministry-card.featured img {
    width: 45%;
    object-fit: cover
}

.ministry-card.featured>div {
    padding: 27px
}

.ministry-card>span {
    display: block;
    color: #68786e;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    margin-bottom: 28px
}

.ministry-card.featured span {
    color: #c4d7cb
}

.ministry-card h3 {
    font: 700 21px var(--display);
    margin: 0 0 11px;
    letter-spacing: -.04em
}

.ministry-card p {
    font-size: 13px;
    color: var(--muted);
    max-width: 260px;
    margin: 0 0 23px
}

.ministry-card.featured p {
    color: #c4d7cb
}

.ministry-card a {
    font-size: 11px;
    font-weight: 800
}

.card-icon {
    font-size: 33px;
    color: var(--green);
    margin: 0 0 28px
}

.ministry-card.warm {
    background: #ede0c7
}

.sermon-section {
    background: #eceee9;
    padding: 96px 0
}

.sermon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 85px;
    align-items: center
}

.sermon-image {
    height: 420px;
    position: relative
}

.sermon-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.video-button {
    width: 69px;
    height: 69px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--yellow);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 13px;
    padding-left: 3px
}

.sermon-tag {
    position: absolute;
    left: 21px;
    bottom: 18px;
    background: var(--paper);
    font-size: 10px;
    font-weight: 800;
    padding: 9px 12px
}

.sermon-copy h2 {
    margin-bottom: 22px
}

.sermon-copy>p:not(.eyebrow) {
    color: var(--muted);
    font-size: 15px;
    max-width: 390px
}

.sermon-meta {
    display: flex;
    gap: 10px;
    color: #6f7c73;
    font-size: 11px;
    font-weight: 700;
    margin: 24px 0
}

.audio-link {
    font-size: 11px;
    font-weight: 700;
    margin-left: 18px
}

.event-list {
    border-top: 1px solid var(--line)
}

.event-list article {
    display: grid;
    grid-template-columns: 105px 1fr 42px;
    gap: 26px;
    align-items: center;
    border-bottom: 1px solid var(--line);
    padding: 22px 10px
}

.event-list time {
    display: flex;
    align-items: center;
    gap: 12px
}

.event-list time b {
    font: 700 39px var(--display);
    letter-spacing: -.08em
}

.event-list time span {
    font-size: 9px;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: .1em;
    color: var(--muted)
}

.event-type {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: #9e7417;
    font-weight: 800
}

.event-list h3 {
    font: 700 18px var(--display);
    margin: 4px 0
}

.event-list p {
    font-size: 12px;
    color: var(--muted);
    margin: 0
}

.round-arrow {
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    width: 38px;
    height: 38px;
    font-size: 16px;
    transition: .2s
}

.round-arrow:hover {
    background: var(--yellow)
}

.visit-section {
    background: var(--green);
    color: white;
    padding: 105px 0
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px
}

.check-list {
    padding: 0;
    list-style: none;
    color: #d1ded8;
    font-size: 13px;
    margin: 31px 0 0
}

.check-list li {
    margin: 12px 0
}

.check-list li:before {
    content: "✓";
    color: var(--yellow);
    font-weight: bold;
    margin-right: 11px
}

.visit-form,
.contact-form {
    background: #f3f4ef;
    color: var(--ink);
    padding: 35px 39px
}

.visit-form h3 {
    font: 700 23px var(--display);
    margin: 0
}

.visit-form>p {
    font-size: 13px;
    color: var(--muted);
    margin: 6px 0 23px
}

.visit-form label,
.contact-form label {
    display: block;
    text-transform: uppercase;
    letter-spacing: .13em;
    font-size: 9px;
    font-weight: 800;
    margin: 17px 0
}

.visit-form input,
.visit-form select,
.contact-form input,
.contact-form textarea {
    display: block;
    width: 100%;
    border: 0;
    border-bottom: 1px solid #cad1cb;
    background: transparent;
    padding: 10px 0;
    font: 14px var(--sans);
    outline: none;
    color: var(--ink)
}

.visit-form input:focus,
.visit-form select:focus,
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--yellow)
}

.visit-form .button {
    margin-top: 12px
}

.form-message {
    font-size: 12px;
    margin-top: 14px;
    color: #277159
}

.give {
    background: var(--yellow)
}

.give-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center
}

.give-grid>div:last-child>p {
    max-width: 410px;
    font-size: 15px;
    margin: 0 0 24px
}

.button-dark {
    background: var(--green);
    color: white
}

.give small {
    display: block;
    color: #6e5c2a;
    font-size: 10px;
    margin-top: 15px
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px
}

.contact>div>p:not(.eyebrow) {
    color: var(--muted);
    max-width: 350px;
    margin-top: 25px
}

.contact-details {
    display: grid;
    gap: 8px;
    margin-top: 28px;
    font-size: 13px;
    font-weight: 700
}

.contact-details span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.6
}

.contact-form {
    background: #e8ece7
}

.contact-form .button {
    margin-top: 10px
}

footer {
    background: #111b18;
    color: white;
    padding: 56px 0 24px
}

.footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 55px
}

.brand-light .brand-mark {
    background: var(--yellow);
    color: var(--green)
}

.brand-light strong {
    color: white
}

.brand-light small {
    color: #94a39c
}

.footer-top>p {
    color: #a9b8b0;
    font-size: 12px;
    margin: 3px 0 0 130px
}

.socials {
    display: flex;
    gap: 8px
}

.socials a {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border: 1px solid #4b5a53;
    font-weight: 700;
    font-size: 12px
}

.footer-bottom {
    border-top: 1px solid #32413a;
    padding-top: 21px;
    display: flex;
    justify-content: space-between;
    color: #82908a;
    font-size: 10px
}

.footer-bottom span:nth-child(2) {
    display: flex;
    gap: 19px
}

.whatsapp {
    position: fixed;
    bottom: 23px;
    right: 25px;
    background: #28aa68;
    color: #fff;
    border-radius: 50%;
    width: 51px;
    height: 51px;
    display: grid;
    place-items: center;
    font-size: 24px;
    box-shadow: 0 7px 20px rgba(0, 0, 0, .18);
    z-index: 15
}

.reveal {
    animation: rise .7s both
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(15px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@media(max-width:900px) {
    .shell {
        width: min(100% - 40px, 620px)
    }

    .main-nav {
        gap: 2px;
        font-size: 12px
    }

    .service-grid {
        grid-template-columns: 1fr 1fr
    }

    .service-intro {
        grid-column: 1/-1
    }

    .service-action {
        border: 0;
        padding: 0
    }

    .welcome-grid,
    .beliefs-grid,
    .sermon-grid,
    .visit-grid,
    .give-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 45px
    }

    .ministry-grid {
        grid-template-columns: 1fr 1fr
    }

    .ministry-card.featured {
        grid-column: 1/-1
    }

    .footer-top>p {
        margin-left: 0
    }

    .footer-top {
        gap: 25px;
        flex-wrap: wrap
    }
}

@media(max-width:620px) {
    .announcement {
        font-size: 10px;
        height: 35px
    }

    .announcement a {
        margin-left: 5px
    }

    .site-header {
        height: 70px
    }

    .shell {
        width: calc(100% - 36px)
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 4px;
        border: 0;
        background: none;
        width: 40px;
        align-items: end;
        color: var(--ink);
        font: 700 9px var(--sans);
        text-transform: uppercase
    }

    .menu-toggle span {
        width: 21px;
        height: 2px;
        background: var(--ink)
    }

    .menu-toggle b {
        font-size: 8px;
        margin-top: 3px
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--paper);
        padding: 10px 18px 20px;
        border: 0;
        border-top: 1px solid #e3e7e2;
        box-shadow: 0 14px 25px rgba(23, 59, 52, .12);
        flex-direction: column;
        align-items: stretch;
        gap: 0
    }

    .main-nav.open {
        display: flex
    }

    .main-nav a {
        padding: 12px 0
    }

    .main-nav a.active {
        background: transparent;
        color: var(--ink)
    }

    .nav-menu>button {
        display: flex;
        justify-content: space-between;
        width: 100%;
        padding: 12px 0;
        text-align: left
    }

    .nav-submenu {
        position: static;
        display: none;
        padding: 0 0 5px 14px;
        box-shadow: none;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        background: transparent
    }

    .nav-menu:focus-within .nav-submenu,
    .nav-menu>button[aria-expanded="true"]+.nav-submenu {
        display: block
    }

    .nav-submenu a {
        padding: 8px 0;
        color: var(--muted)
    }

    .main-nav a.active:after {
        display: none
    }

    .main-nav .nav-give {
        margin: 6px 0 0;
        padding: 12px;
        text-align: center
    }

    .hero {
        height: 620px;
        min-height: 0
    }

    .hero-image {
        background-position: 62% center
    }

    .hero-content {
        padding-top: 79px
    }

    .hero h1 {
        font-size: 46px
    }

    .hero-copy {
        font-size: 15px;
        max-width: 305px
    }

    .hero-note {
        margin-top: 58px;
        max-width: 260px
    }

    .scroll-hint {
        right: 17px;
        bottom: 20px
    }

    .service-grid {
        grid-template-columns: 1fr
    }

    .service-intro {
        grid-column: auto
    }

    .service-item {
        border-left: 0;
        border-top: 1px solid #d1a727;
        padding: 16px 0 0
    }

    .service-action {
        padding: 8px 0 0
    }

    .service-action .text-link {
        display: inline-block;
        margin-right: 15px
    }

    .section-pad {
        padding: 73px 0
    }

    .photo-frame img {
        height: 300px
    }

    .welcome-grid {
        gap: 39px
    }

    .welcome-copy h2,
    .section-pad h2,
    .beliefs h2,
    .sermon-copy h2,
    .visit-section h2,
    .give h2,
    .contact h2 {
        font-size: 40px
    }

    .section-dark,
    .visit-section {
        padding: 73px 0
    }

    .beliefs-grid {
        gap: 39px
    }

    .ministry-grid {
        grid-template-columns: 1fr
    }

    .ministry-card.featured {
        grid-column: auto;
        display: block
    }

    .ministry-card.featured img {
        height: 190px;
        width: 100%
    }

    .ministry-card.featured>div {
        padding: 22px
    }

    .sermon-section {
        padding: 60px 0
    }

    .sermon-grid {
        gap: 35px
    }

    .sermon-image {
        height: 270px
    }

    .event-list article {
        grid-template-columns: 72px 1fr 36px;
        gap: 9px;
        padding: 20px 0
    }

    .event-list time {
        gap: 5px
    }

    .event-list time b {
        font-size: 30px
    }

    .event-list h3 {
        font-size: 15px
    }

    .event-list p {
        font-size: 10px
    }

    .event-list time span {
        font-size: 8px
    }

    .visit-form,
    .contact-form {
        padding: 27px 22px
    }

    .give-grid,
    .contact-grid {
        gap: 27px
    }

    .footer-top {
        display: grid;
        grid-template-columns: 1fr auto
    }

    .footer-top>p {
        grid-column: 1/-1;
        grid-row: 2
    }

    .footer-bottom {
        display: grid;
        gap: 14px
    }

    .desktop-only {
        display: none
    }
}