        /* =====================================================
           JESUS POWER MINISTRIES HEADER
        ===================================================== */

        :root {
            --jpm-blue: #063f9b;
            --jpm-blue-light: #0879ef;
            --jpm-blue-dark: #021a45;
            --jpm-black: #030711;
            --jpm-gold: #f7c948;
            --jpm-gold-dark: #b97800;
            --jpm-gold-light: #fff1a3;
            --jpm-white: #ffffff;
            --jpm-text: #ddeaff;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: "Nunito", sans-serif;
            background: #f5f7fb;
        }

        /* Stylish scrollbar */

        ::-webkit-scrollbar {
            width: 11px;
        }

        ::-webkit-scrollbar-track {
            background: #020817;
        }

        ::-webkit-scrollbar-thumb {
            border: 2px solid #020817;
            border-radius: 20px;
            background: linear-gradient(
                180deg,
                var(--jpm-gold),
                var(--jpm-blue-light),
                var(--jpm-gold-dark)
            );
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(
                180deg,
                #fff2a0,
                #079cff,
                #f5ad00
            );
        }

        .jpm-header {
            position: relative;
            z-index: 1050;
            width: 100%;
            font-family: "Nunito", sans-serif;
        }

        .jpm-header a {
            text-decoration: none;
        }

        /* =====================================================
           ROW 1 - CONTACT AND SOCIAL MEDIA
        ===================================================== */

        .jpm-topbar {
            position: relative;
            overflow: hidden;
            min-height: 46px;
            color: var(--jpm-white);
            border-bottom: 1px solid rgba(247, 201, 72, 0.38);
            background:
                radial-gradient(
                    circle at 15% 50%,
                    rgba(21, 111, 255, 0.35),
                    transparent 28%
                ),
                linear-gradient(
                    90deg,
                    #010712 0%,
                    #05265d 45%,
                    #02050c 100%
                );
        }

        .jpm-topbar::before {
            content: "";
            position: absolute;
            top: 0;
            left: -50%;
            width: 45%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 224, 119, 0.15),
                transparent
            );
            animation: jpmTopShine 7s linear infinite;
            pointer-events: none;
        }

        @keyframes jpmTopShine {
            0% {
                left: -50%;
            }

            100% {
                left: 120%;
            }
        }

        .jpm-topbar-inner {
            position: relative;
            z-index: 2;
            min-height: 46px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }

        .jpm-contact-list {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 9px;
        }

        .jpm-contact-link {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            min-height: 32px;
            padding: 5px 12px;
            color: #edf6ff;
            font-size: 13px;
            font-weight: 700;
            border: 1px solid rgba(255, 255, 255, 0.13);
            border-radius: 30px;
            background: rgba(255, 255, 255, 0.045);
            transition: all 0.3s ease;
        }

        .jpm-contact-link i {
            color: var(--jpm-gold);
            filter: drop-shadow(0 0 6px rgba(247, 201, 72, 0.8));
        }

        .jpm-contact-link:hover {
            color: var(--jpm-white);
            border-color: rgba(247, 201, 72, 0.7);
            background: rgba(247, 201, 72, 0.1);
            box-shadow: 0 0 18px rgba(247, 201, 72, 0.15);
            transform: translateY(-1px);
        }

        .jpm-social-list {
            display: flex;
            align-items: center;
            gap: 7px;
        }

        .jpm-social-link {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 31px;
            height: 31px;
            overflow: hidden;
            color: var(--jpm-white);
            border: 1px solid rgba(255, 255, 255, 0.28);
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .jpm-social-link::before {
            content: "";
            position: absolute;
            inset: 0;
            opacity: 0.9;
            transition: transform 0.3s ease;
        }

        .jpm-social-link i {
            position: relative;
            z-index: 2;
            font-size: 13px;
        }

        .jpm-social-link:hover {
            color: var(--jpm-white);
            border-color: var(--jpm-gold-light);
            transform: translateY(-3px) rotate(8deg);
            box-shadow: 0 0 15px currentColor;
        }

        .jpm-social-link:hover::before {
            transform: scale(1.15);
        }

        .jpm-facebook::before {
            background: linear-gradient(135deg, #1877f2, #0a3b91);
        }

        .jpm-instagram::before {
            background: linear-gradient(
                135deg,
                #feda75,
                #d62976,
                #962fbf,
                #4f5bd5
            );
        }

        .jpm-youtube::before {
            background: linear-gradient(135deg, #ff0000, #9d0000);
        }

        .jpm-whatsapp::before {
            background: linear-gradient(135deg, #25d366, #087e36);
        }

        .jpm-x-twitter::before {
            background: linear-gradient(135deg, #333333, #000000);
        }

        /* =====================================================
           ROW 2 - LOGO, CHURCH NAME AND BUTTONS
        ===================================================== */

        .jpm-brand-row {
            position: relative;
            overflow: hidden;
            min-height: 116px;
            background:
                radial-gradient(
                    circle at 10% 0%,
                    rgba(255, 238, 151, 0.95),
                    transparent 31%
                ),
                radial-gradient(
                    circle at 91% 90%,
                    rgba(177, 112, 0, 0.2),
                    transparent 30%
                ),
                linear-gradient(
                    120deg,
                    #fff6c8 0%,
                    #e2a91e 42%,
                    #fff0a3 72%,
                    #c58200 100%
                );
            border-bottom: 3px solid #052965;
        }

        .jpm-brand-row::before,
        .jpm-brand-row::after {
            content: "";
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
        }

        .jpm-brand-row::before {
            top: -95px;
            right: 12%;
            width: 210px;
            height: 210px;
            border: 2px solid rgba(255, 255, 255, 0.4);
            box-shadow:
                0 0 35px rgba(255, 255, 255, 0.3),
                inset 0 0 35px rgba(249, 197, 50, 0.2);
            animation: jpmRotateRing 14s linear infinite;
        }

        .jpm-brand-row::after {
            left: 36%;
            bottom: -120px;
            width: 230px;
            height: 230px;
            border: 25px solid rgba(3, 53, 125, 0.06);
        }

        @keyframes jpmRotateRing {
            to {
                transform: rotate(360deg);
            }
        }

        .jpm-brand-inner {
            position: relative;
            z-index: 2;
            min-height: 116px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 25px;
            padding-top: 13px;
            padding-bottom: 13px;
        }

        .jpm-brand-area {
            display: flex;
            align-items: center;
            min-width: 0;
        }

        .jpm-logo-shell {
            position: relative;
            flex: 0 0 auto;
            width: 92px;
            height: 92px;
            margin-right: 18px;
            padding: 6px;
            border-radius: 50%;
            background: #ffffff;
            box-shadow:
                0 5px 25px rgba(0, 34, 84, 0.28),
                0 0 25px rgba(255, 241, 161, 0.8);
        }

        .jpm-logo-shell::before {
            content: "";
            position: absolute;
            inset: -6px;
            z-index: -1;
            border-radius: 50%;
            background: conic-gradient(
                from 0deg,
                var(--jpm-blue),
                var(--jpm-gold-light),
                var(--jpm-black),
                var(--jpm-gold),
                var(--jpm-blue-light),
                var(--jpm-blue)
            );
            animation: jpmLogoRotate 4s linear infinite;
        }

        .jpm-logo-shell::after {
            content: "";
            position: absolute;
            inset: -13px;
            z-index: -2;
            border: 2px dashed rgba(3, 48, 116, 0.65);
            border-radius: 50%;
            animation: jpmLogoRotateReverse 9s linear infinite;
        }

        @keyframes jpmLogoRotate {
            to {
                transform: rotate(360deg);
            }
        }

        @keyframes jpmLogoRotateReverse {
            to {
                transform: rotate(-360deg);
            }
        }

        .jpm-logo {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: contain;
            border: 2px solid rgba(2, 38, 92, 0.16);
            border-radius: 50%;
            background: #ffffff;
        }

        .jpm-brand-copy {
            min-width: 0;
        }

        .jpm-church-name {
            margin: 0;
            color: #031a43;
            font-family: "Archivo Black", sans-serif;
            font-size: clamp(25px, 3vw, 43px);
            line-height: 1.05;
            letter-spacing: -1.4px;
            text-transform: uppercase;
            text-shadow:
                0 2px 0 rgba(255, 255, 255, 0.75),
                0 0 15px rgba(255, 255, 255, 0.5);
        }

        .jpm-church-name span {
            display: inline-block;
            color: #ffffff;
            -webkit-text-stroke: 1px #062c69;
            text-shadow:
                0 2px 1px #062c69,
                0 0 12px rgba(3, 40, 94, 0.4);
        }

        .jpm-tagline {
            display: flex;
            align-items: center;
            gap: 9px;
            margin: 9px 0 0;
            color: #3d2900;
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .jpm-tagline::before,
        .jpm-tagline::after {
            content: "";
            width: 27px;
            height: 2px;
            background: #073779;
            box-shadow: 0 0 7px rgba(7, 55, 121, 0.5);
        }

        .jpm-brand-actions {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            flex-wrap: wrap;
            gap: 10px;
        }

        .jpm-action-btn {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            min-height: 46px;
            padding: 10px 18px;
            overflow: hidden;
            border: 1px solid transparent;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 900;
            letter-spacing: 0.4px;
            text-transform: uppercase;
            transition: all 0.3s ease;
        }

        .jpm-action-btn::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 65%;
            height: 100%;
            transform: skewX(-25deg);
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.5),
                transparent
            );
            transition: left 0.65s ease;
        }

        .jpm-action-btn:hover::before {
            left: 140%;
        }

        .jpm-action-btn:hover {
            transform: translateY(-3px);
        }

        .jpm-prayer-btn {
            color: #ffffff;
            border-color: rgba(255, 255, 255, 0.6);
            background: linear-gradient(135deg, #0756c2, #021b48);
            box-shadow: 0 8px 20px rgba(0, 38, 94, 0.28);
        }

        .jpm-live-btn {
            color: #ffffff;
            background: linear-gradient(135deg, #dc1029, #75000f);
            box-shadow: 0 8px 20px rgba(126, 0, 15, 0.25);
        }

        .jpm-live-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #ffffff;
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
            animation: jpmLivePulse 1.5s infinite;
        }

        @keyframes jpmLivePulse {
            70% {
                box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
            }
        }

        .jpm-donate-btn {
            color: #071730;
            border-color: #ffffff;
            background: linear-gradient(
                135deg,
                #fff8c8,
                #f7bd27 48%,
                #c17b00
            );
            box-shadow:
                0 8px 22px rgba(121, 75, 0, 0.32),
                0 0 14px rgba(255, 236, 135, 0.8);
            animation: jpmDonateGlow 2.4s ease-in-out infinite;
        }

        @keyframes jpmDonateGlow {
            0%,
            100% {
                box-shadow:
                    0 8px 22px rgba(121, 75, 0, 0.32),
                    0 0 10px rgba(255, 236, 135, 0.6);
            }

            50% {
                box-shadow:
                    0 9px 26px rgba(121, 75, 0, 0.42),
                    0 0 24px rgba(255, 245, 170, 1);
            }
        }

        /* =====================================================
           ROW 3 - NAVIGATION
        ===================================================== */

        .jpm-navigation {
            min-height: 64px;
            border-bottom: 1px solid #fff;
            background:
                linear-gradient(
                    90deg,
                    rgba(5, 49, 118, 0.96),
                    rgba(2, 9, 23, 0.98) 42%,
                    rgba(0, 30, 75, 0.97)
                );
            box-shadow: 0 8px 24px rgba(0, 10, 28, 0.22);
        }

        .jpm-navbar {
            min-height: 64px;
            padding-top: 0;
            padding-bottom: 0;
        }

        .jpm-navbar .navbar-nav {
            align-items: center;
        }

        .jpm-navbar .nav-item {
            position: relative;
        }

        .jpm-navbar .nav-link {
            position: relative;
            display: flex;
            align-items: center;
            gap: 7px;
            min-height: 64px;
            padding: 0 16px !important;
            color: #edf5ff;
            font-size: 14px;
            font-weight: 800;
            letter-spacing: 0.25px;
            text-transform: uppercase;
            transition: all 0.3s ease;
        }

        .jpm-navbar .nav-link::before {
            content: "";
            position: absolute;
            right: 50%;
            bottom: 0;
            left: 50%;
            height: 3px;
            border-radius: 5px 5px 0 0;
            background: linear-gradient(
                90deg,
                var(--jpm-gold),
                #ffffff,
                var(--jpm-gold)
            );
            box-shadow: 0 0 10px var(--jpm-gold);
            transition: all 0.3s ease;
        }

        .jpm-navbar .nav-link:hover,
        .jpm-navbar .nav-link.active {
            color: var(--jpm-gold-light);
            background: rgba(255, 255, 255, 0.05);
        }

        .jpm-navbar .nav-link:hover::before,
        .jpm-navbar .nav-link.active::before {
            right: 14px;
            left: 14px;
        }

        .jpm-navbar .nav-link i {
            color: var(--jpm-gold);
            font-size: 12px;
        }

        .jpm-navbar .dropdown-menu {
            min-width: 240px;
            margin-top: 0;
            padding: 10px;
            border: 1px solid rgba(247, 201, 72, 0.4);
            border-top: 3px solid var(--jpm-gold);
            border-radius: 0 0 12px 12px;
            background: rgba(2, 13, 34, 0.98);
            box-shadow:
                0 18px 35px rgba(0, 0, 0, 0.35),
                0 0 15px rgba(8, 101, 226, 0.15);
        }

        .jpm-navbar .dropdown-item {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 4px;
            padding: 11px 13px;
            color: #ecf4ff;
            border-left: 3px solid transparent;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 700;
            transition: all 0.25s ease;
        }

        .jpm-navbar .dropdown-item i {
            width: 18px;
            color: var(--jpm-gold);
            text-align: center;
        }

        .jpm-navbar .dropdown-item:hover {
            color: #ffffff;
            border-left-color: var(--jpm-gold);
            background: linear-gradient(
                90deg,
                rgba(247, 201, 72, 0.16),
                rgba(8, 102, 227, 0.13)
            );
            transform: translateX(4px);
        }

        .jpm-desktop-search {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            margin-left: 13px;
            color: #061a3c;
            border: 1px solid #fff2b3;
            border-radius: 50%;
            background: linear-gradient(
                135deg,
                #ffffff,
                var(--jpm-gold)
            );
            box-shadow: 0 0 14px rgba(247, 201, 72, 0.35);
            transition: all 0.3s ease;
        }

        .jpm-desktop-search:hover {
            color: #ffffff;
            background: linear-gradient(
                135deg,
                var(--jpm-blue-light),
                var(--jpm-blue-dark)
            );
            transform: rotate(10deg);
        }

        /* Sticky header */

        .jpm-navigation.is-sticky {
            position: fixed;
            top: 0;
            right: 0;
            left: 0;
            z-index: 1060;
            animation: jpmStickyDown 0.4s ease;
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
        }

        @keyframes jpmStickyDown {
            from {
                opacity: 0;
                transform: translateY(-100%);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* =====================================================
           MOBILE NAVIGATION
        ===================================================== */

        .jpm-mobile-menu-btn {
            display: none;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 43px;
            color: #07172f;
            border: 1px solid #ffffff;
            border-radius: 7px;
            background: linear-gradient(
                135deg,
                #fff8c7,
                var(--jpm-gold)
            );
            box-shadow: 0 0 15px rgba(247, 201, 72, 0.35);
        }

        .jpm-mobile-menu-btn i {
            font-size: 20px;
        }

        .jpm-mobile-caption {
            display: none;
            align-items: center;
            gap: 9px;
            color: #ffffff;
            font-size: 14px;
            font-weight: 900;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .jpm-mobile-caption i {
            color: var(--jpm-gold);
        }

        .jpm-offcanvas {
            width: min(88%, 365px) !important;
            color: #ffffff;
            border-right: 2px solid var(--jpm-gold) !important;
            background:
                radial-gradient(
                    circle at top left,
                    rgba(10, 100, 227, 0.32),
                    transparent 35%
                ),
                linear-gradient(160deg, #061c47, #020711 65%);
        }

        .jpm-offcanvas .offcanvas-header {
            position: relative;
            padding: 22px 20px;
            border-bottom: 1px solid rgba(247, 201, 72, 0.34);
            background: rgba(255, 255, 255, 0.03);
        }

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

        .jpm-offcanvas-logo {
            width: 58px;
            height: 58px;
            padding: 4px;
            object-fit: contain;
            border: 2px solid var(--jpm-gold);
            border-radius: 50%;
            background: #ffffff;
            box-shadow: 0 0 18px rgba(247, 201, 72, 0.5);
        }

        .jpm-offcanvas-title {
            margin: 0;
            color: var(--jpm-gold-light);
            font-family: "Archivo Black", sans-serif;
            font-size: 16px;
            line-height: 1.25;
            text-transform: uppercase;
        }

        .jpm-close-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 37px;
            height: 37px;
            color: #06162f;
            border: 0;
            border-radius: 50%;
            background: var(--jpm-gold);
        }

        .jpm-mobile-nav {
            padding: 13px 0;
        }

        .jpm-mobile-nav .nav-link,
        .jpm-mobile-dropdown-btn {
            display: flex;
            align-items: center;
            width: 100%;
            min-height: 50px;
            padding: 11px 15px;
            color: #eef5ff;
            border: 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            border-left: 3px solid transparent;
            background: transparent;
            font-size: 14px;
            font-weight: 800;
            text-align: left;
            transition: all 0.25s ease;
        }

        .jpm-mobile-nav .nav-link:hover,
        .jpm-mobile-nav .nav-link.active,
        .jpm-mobile-dropdown-btn:hover {
            color: var(--jpm-gold-light);
            border-left-color: var(--jpm-gold);
            background: rgba(255, 255, 255, 0.055);
            padding-left: 20px;
        }

        .jpm-mobile-nav .nav-link i,
        .jpm-mobile-dropdown-btn i:first-child {
            width: 26px;
            color: var(--jpm-gold);
        }

        .jpm-mobile-dropdown-btn .fa-chevron-down {
            width: auto;
            margin-left: auto;
            font-size: 11px;
            transition: transform 0.3s ease;
        }

        .jpm-mobile-dropdown-btn[aria-expanded="true"]
        .fa-chevron-down {
            transform: rotate(180deg);
        }

        .jpm-mobile-submenu {
            margin: 4px 0 8px 23px;
            padding-left: 12px;
            border-left: 1px dashed rgba(247, 201, 72, 0.45);
        }

        .jpm-mobile-submenu a {
            display: flex;
            align-items: center;
            gap: 9px;
            padding: 9px 11px;
            color: #c9dbf6;
            border-radius: 5px;
            font-size: 13px;
            font-weight: 700;
            transition: all 0.25s ease;
        }

        .jpm-mobile-submenu a i {
            color: var(--jpm-gold);
            font-size: 9px;
        }

        .jpm-mobile-submenu a:hover {
            color: #ffffff;
            background: rgba(247, 201, 72, 0.1);
            transform: translateX(4px);
        }

        .jpm-mobile-buttons {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 9px;
            padding: 14px 15px 20px;
        }

        .jpm-mobile-buttons .jpm-action-btn {
            min-height: 45px;
            padding: 9px 10px;
            font-size: 11px;
        }

        .jpm-mobile-buttons .jpm-donate-btn {
            grid-column: 1 / -1;
        }

        .jpm-mobile-contact {
            margin: 0 15px 20px;
            padding: 15px;
            border: 1px solid rgba(247, 201, 72, 0.25);
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.04);
        }

        .jpm-mobile-contact a {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
            color: #eaf3ff;
            font-size: 13px;
            font-weight: 700;
        }

        .jpm-mobile-contact a:last-child {
            margin-bottom: 0;
        }

        .jpm-mobile-contact i {
            color: var(--jpm-gold);
        }

        /* =====================================================
           RESPONSIVE DESIGN
        ===================================================== */

        @media (min-width: 992px) {
            .jpm-navbar .dropdown:hover > .dropdown-menu {
                display: block;
                animation: jpmDropdownOpen 0.25s ease;
            }

            @keyframes jpmDropdownOpen {
                from {
                    opacity: 0;
                    transform: translateY(10px);
                }

                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
        }

        @media (max-width: 1199.98px) {
            .jpm-navbar .nav-link {
                padding-right: 11px !important;
                padding-left: 11px !important;
                font-size: 12px;
            }

            .jpm-action-btn {
                padding-right: 13px;
                padding-left: 13px;
                font-size: 12px;
            }

            .jpm-logo-shell {
                width: 84px;
                height: 84px;
            }
        }

        @media (max-width: 991.98px) {
            .jpm-topbar-inner {
                justify-content: center;
            }

            .jpm-contact-list {
                justify-content: center;
            }

            .jpm-social-list {
                display: none;
            }

            .jpm-brand-inner {
                min-height: 102px;
            }

            .jpm-brand-actions {
                display: none;
            }

            .jpm-logo-shell {
                width: 77px;
                height: 77px;
                margin-right: 16px;
            }

            .jpm-church-name {
                font-size: clamp(22px, 4.2vw, 34px);
            }

            .jpm-tagline {
                font-size: 11px;
                letter-spacing: 1.2px;
            }

            .jpm-navigation,
            .jpm-navbar {
                min-height: 58px;
            }

            .jpm-navbar {
                justify-content: space-between;
            }

            .jpm-mobile-menu-btn,
            .jpm-mobile-caption {
                display: inline-flex;
            }

            .jpm-navbar-collapse {
                display: none !important;
            }
        }

        @media (max-width: 767.98px) {
            .jpm-topbar {
                min-height: 40px;
            }

            .jpm-topbar-inner {
                min-height: 40px;
            }

            .jpm-contact-link {
                min-height: 28px;
                padding: 4px 8px;
                font-size: 11px;
            }

            .jpm-contact-link:last-child {
                display: none;
            }

            .jpm-brand-inner {
                justify-content: center;
                min-height: 94px;
            }

            .jpm-logo-shell {
                width: 68px;
                height: 68px;
                margin-right: 14px;
            }

            .jpm-logo-shell::after {
                inset: -9px;
            }

            .jpm-church-name {
                font-size: clamp(19px, 5.2vw, 28px);
                letter-spacing: -0.8px;
            }

            .jpm-tagline {
                margin-top: 6px;
                font-size: 9px;
                letter-spacing: 0.8px;
            }

            .jpm-tagline::before,
            .jpm-tagline::after {
                width: 18px;
            }
        }

        @media (max-width: 479.98px) {
            .jpm-contact-list {
                width: 100%;
            }

            .jpm-contact-link {
                flex: 1;
                justify-content: center;
                white-space: nowrap;
            }

            .jpm-brand-row {
                min-height: 89px;
            }

            .jpm-brand-inner {
                min-height: 89px;
                padding-right: 8px;
                padding-left: 8px;
            }

            .jpm-logo-shell {
                width: 60px;
                height: 60px;
                margin-right: 12px;
            }

            .jpm-church-name {
                font-size: 18px;
            }

            .jpm-tagline {
                gap: 5px;
                font-size: 8px;
            }

            .jpm-mobile-caption span {
                display: none;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                scroll-behavior: auto !important;
                transition-duration: 0.01ms !important;
            }
        }