@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;500;700&display=swap');

:root {
    --wnb-primary: #20435a;
    --wnb-primary-soft: #eef6fb;
    --wnb-secondary: #5d6874;
    --wnb-accent: #d6402d;
    --wnb-surface: #ffffff;
    --wnb-surface-alt: #f6f9fc;
    --wnb-footer: #0f2536;
    --wnb-radius: 18px;
    --wnb-nav-color: #1d1d1b;
    --wnb-slider-height: clamp(320px, calc(100vh - 120px), 1000px);
    --wnb-slider-cover-height: clamp(380px, calc(100vh - 80px), 1000px);
    --wnb-slider-mobile-height: clamp(220px, calc(100vh - 180px), 1000px);
    --wnb-slider-html-height: min(500px, 40vh);
    --xxsmall: 12px;
    --xsmall: 13px;
    --small: 14px;
    --base: 15px;
    --medium: 16px;
    --large: 18px;
    --xlarge: 20px;
    --xxlarge: 24px;
}

* {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: var(--base);
    background:
        radial-gradient(circle at top right, rgba(32, 67, 90, 0.08), transparent 45%),
        radial-gradient(circle at 10% 20%, rgba(214, 64, 45, 0.06), transparent 30%),
        var(--wnb-surface-alt);
    color: #1d2a36;
}

a {
    color: var(--wnb-primary);
}

a:hover,
a:focus {
    color: #163042;
}

.backdrop-blur {
    backdrop-filter: blur(12px);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1100;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.site-header.is-compact {
    box-shadow: 0 14px 28px rgba(20, 27, 25, 0.12);
}

.wnb-header-shell {
    position: relative;
    background: rgba(244, 241, 232, 0.96);
    border-bottom: 1px solid rgba(51, 57, 54, 0.2);
}

.wnb-main-nav {
    background: transparent;
}

.wnb-main-nav .container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.wnb-brand {
    min-width: 0;
}

.wnb-custom-logo .custom-logo-link {
    display: inline-flex;
    align-items: center;
}

.wnb-custom-logo .custom-logo {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    object-fit: cover;
}

.wnb-brand-logo-link {
    display: inline-flex;
    align-items: center;
}

.brand-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    object-fit: cover;
    box-shadow: 0 10px 18px rgba(17, 33, 45, 0.16);
}

.brand-text,
.wnb-brand-name {
    font-family: 'Nunito Sans', sans-serif;
    letter-spacing: -0.01em;
}

.wnb-brand-name {
    text-decoration: none;
    color: var(--wnb-nav-color);
    font-weight: 300;
    font-size: var(--small);
}

.wnb-brand-name:hover,
.wnb-brand-name:focus {
    color: var(--wnb-nav-color);
}

#desktopPrimaryNav {
    flex: 1 1 auto;
    min-width: 0;
}

.wnb-desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    width: 100%;
    margin: 0;
    padding: 0;
}

.wnb-desktop-nav > li {
    position: relative;
    margin: 0;
}

.wnb-desktop-nav > li > a {
    font-family: 'Nunito Sans', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--wnb-nav-color);
    font-size: var(--xsmall);
    font-weight: 300;
    line-height: 1.2;
    padding: 0.95rem 0.9rem 1.1rem;
    transition: color 0.2s ease;
}

.wnb-desktop-nav > li > a::after {
    content: '';
    position: absolute;
    left: 0.9rem;
    right: 0.9rem;
    bottom: -1px;
    height: 4px;
    border-radius: 999px 999px 0 0;
    background: #131916;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.wnb-desktop-nav > li.is-hover > a,
.wnb-desktop-nav > li > a:hover,
.wnb-desktop-nav > li > a:focus {
    color: var(--wnb-nav-color);
}

.wnb-desktop-nav > li.is-hover > a::after,
.wnb-desktop-nav > li > a:hover::after,
.wnb-desktop-nav > li > a:focus::after {
    transform: scaleX(1);
}

.wnb-nav-utility {
    gap: 0.55rem;
    margin-left: auto;
}

.wnb-utility-link {
    font-family: 'Nunito Sans', sans-serif;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--wnb-nav-color);
    font-weight: 300;
    padding: 0.35rem 0.6rem;
    border-radius: 8px;
    white-space: nowrap;
    font-size: var(--xsmall);
}

.wnb-utility-link:hover,
.wnb-utility-link:focus {
    color: var(--wnb-nav-color);
}

.wnb-utility-icon {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(33, 40, 37, 0.45);
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--wnb-nav-color);
    background: #f9f7f1;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.wnb-utility-icon:hover,
.wnb-utility-icon:focus {
    color: #fff;
    border-color: #13201a;
    background: #13201a;
}

.wnb-nav-toggle {
    border-color: rgba(33, 40, 37, 0.4);
    border-radius: 8px;
}

.wnb-nav-mega {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #f4f1e8;
    border-top: 1px solid rgba(51, 57, 54, 0.2);
    box-shadow: 0 26px 46px rgba(17, 24, 21, 0.17);
    padding: 0.7rem 0 0.9rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.wnb-nav-mega.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.wnb-nav-mega-shell {
    border-radius: 16px;
    border: 1px solid rgba(39, 47, 42, 0.18);
    background: #f8f6ee;
    min-height: 68px;
    max-height: 170px;
    overflow: auto;
    padding: 0.2rem 0.55rem 0.55rem;
}

.wnb-nav-mega-top {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0.15rem 0;
}

.wnb-mega-close {
    appearance: none;
    border: 1px solid rgba(31, 37, 34, 0.35);
    background: #fff;
    color: #1a221d;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.wnb-mega-close:hover,
.wnb-mega-close:focus {
    border-color: #131a16;
    background: #131a16;
    color: #fff;
}

.wnb-nav-mega-empty {
    min-height: 8px;
}

.mobile-nav > li > a,
.footer-nav > li > a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #2a3948;
    padding: 0.5rem 0;
}

.footer-nav > li > a:hover,
.footer-nav > li > a:focus {
    color: #fff;
}

.mobile-nav > li > a,
.mobile-nav > li > a:hover,
.mobile-nav > li > a:focus {
    color: var(--wnb-nav-color);
}

.wnb-mobile-offcanvas {
    background: #f6f2e8;
}

.wnb-mobile-offcanvas .offcanvas-header {
    border-bottom: 1px solid rgba(53, 60, 57, 0.16);
}

.wnb-mobile-offcanvas .offcanvas-body {
    padding-top: 1rem;
}

.wnb-mobile-offcanvas .btn-close {
    opacity: 1;
    width: 1.1em;
    height: 1.1em;
}

.mobile-nav > li > a {
    font-family: 'Nunito Sans', sans-serif;
    width: 100%;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(53, 60, 57, 0.16);
    font-size: var(--xsmall);
    font-weight: 300;
}

.mobile-nav .sub-menu {
    list-style: none;
    margin: 0;
    padding-left: 1rem;
    display: none;
}

.mobile-nav .menu-item.is-open > .sub-menu {
    display: block;
}

.section-kicker {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--wnb-accent);
}

.whoisnearby-hero {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.hero-artboard {
    border-radius: calc(var(--wnb-radius) * 1.2);
    background: linear-gradient(160deg, #ffffff 15%, #edf5fb 60%, #dfeef8 100%);
    border: 1px solid rgba(32, 67, 90, 0.08);
    box-shadow: 0 20px 60px rgba(31, 56, 77, 0.12);
    padding: 1.5rem;
    overflow: hidden;
}

.hero-app-icon {
    max-width: min(460px, 100%);
    filter: drop-shadow(0 30px 32px rgba(30, 50, 70, 0.25));
}

.wnb-pin {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.48);
}

.wnb-pin-red {
    background: #d6402d;
    top: 20%;
    right: 18%;
}

.wnb-pin-dark {
    background: #2f3947;
    bottom: 24%;
    left: 16%;
}

.wnb-pin-light {
    background: #cfd9e5;
    top: 30%;
    left: 24%;
}

.feature-card {
    border-radius: var(--wnb-radius);
    background: var(--wnb-surface);
    border: 1px solid rgba(31, 58, 79, 0.08);
    padding: 1.25rem;
    box-shadow: 0 10px 30px rgba(26, 46, 65, 0.08);
}

.wnb-home-block {
    position: relative;
    width: 100%;
}

.wnb-home-block-features {
    background:
        linear-gradient(145deg, rgba(234, 246, 255, 0.9) 0%, rgba(247, 249, 255, 0.95) 100%);
}

.wnb-home-block-highlight {
    background:
        radial-gradient(circle at 10% 8%, rgba(83, 201, 185, 0.18), transparent 40%),
        radial-gradient(circle at 92% 78%, rgba(90, 118, 250, 0.2), transparent 42%),
        #f6f7ff;
}

.wnb-home-block-updates {
    background:
        linear-gradient(170deg, rgba(255, 255, 255, 0.96), rgba(244, 250, 255, 0.95));
}

.wnb-home-block-cta {
    background:
        linear-gradient(136deg, #17374f 0%, #1e4a68 48%, #2d6d84 100%);
}

.wnb-feature-tile {
    border-radius: calc(var(--wnb-radius) + 6px);
    border: 1px solid rgba(43, 73, 103, 0.12);
    background: #ffffff;
    box-shadow: 0 18px 34px rgba(22, 40, 59, 0.08);
    padding: 1.25rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wnb-feature-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 48px rgba(22, 40, 59, 0.14);
}

.wnb-step-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    margin-bottom: 0.9rem;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    color: #fff;
    background: linear-gradient(140deg, #d6402d, #ec7a3c);
    box-shadow: 0 10px 20px rgba(214, 64, 45, 0.26);
}

.wnb-panel {
    border-radius: calc(var(--wnb-radius) + 8px);
    background: #fff;
    border: 1px solid rgba(43, 73, 103, 0.1);
    padding: 1.5rem;
    box-shadow: 0 18px 40px rgba(21, 40, 58, 0.08);
}

.wnb-panel-dark {
    color: #e7f5ff;
    background: linear-gradient(145deg, #1f3d58 0%, #163148 100%);
    border-color: rgba(255, 255, 255, 0.1);
}

.wnb-panel-dark .section-kicker,
.wnb-panel-dark h3,
.wnb-panel-dark li {
    color: #e7f5ff;
}

.wnb-stack-list {
    display: grid;
    gap: 0.65rem;
}

.wnb-stack-list li {
    position: relative;
    padding-left: 1.1rem;
}

.wnb-stack-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.62rem;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: #68d6ca;
}

.wnb-mini-stat {
    border-radius: 14px;
    background: #f4f8fc;
    border: 1px solid rgba(34, 61, 86, 0.12);
    padding: 0.85rem;
}

.wnb-mini-stat strong {
    display: block;
    margin-bottom: 0.2rem;
    font-size: 0.95rem;
}

.wnb-mini-stat span {
    color: #4f6478;
    font-size: 0.88rem;
}

.wnb-cta-slab {
    border-radius: calc(var(--wnb-radius) + 12px);
    padding: 2.2rem 1.2rem;
    color: #fff;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.14), transparent 38%),
        radial-gradient(circle at 78% 78%, rgba(255, 255, 255, 0.1), transparent 42%),
        linear-gradient(140deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 22px 44px rgba(9, 24, 39, 0.36);
}

.wnb-cta-slab .section-kicker {
    color: #ffd8d0;
}

.wnb-cta-slab .btn-light {
    font-weight: 700;
}

.wnb-reveal {
    opacity: 0;
    transform: translateY(34px) scale(0.985);
    transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.wnb-reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.wnb-homepage1 {
    width: 100%;
}

.wnb-hp1-section {
    width: 100%;
    padding: 2.2rem 0;
}

.wnb-hp1-section-slider {
    padding: 0 !important;
    background: transparent !important;
}

.wnb-hp1-inner {
    padding: 1.2rem 0;
}

.wnb-hp1-section-slider .wnb-hp1-inner {
    padding: 0 !important;
}

.wnb-hp1-section-1 {
    background: linear-gradient(135deg, #f7fbff 0%, #eaf4ff 100%);
}

.wnb-hp1-section-2 {
    background: linear-gradient(135deg, #fff8f0 0%, #ffe8da 100%);
}

.wnb-hp1-section-3 {
    background: linear-gradient(135deg, #f4fff8 0%, #dff8ea 100%);
}

.wnb-hp1-section-4 {
    background: linear-gradient(135deg, #fff7f9 0%, #ffe5ee 100%);
}

.wnb-hp1-section-5 {
    background: linear-gradient(135deg, #f6f7ff 0%, #e9e6ff 100%);
}

.wnb-hp1-section-6 {
    background: linear-gradient(135deg, #f6feff 0%, #def6f8 100%);
}

.wnb-hp1-title {
    margin: 0 0 1rem;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    color: #1d1d1b;
}

.wnb-hp1-card,
.wnb-hp1-mini-tile {
    border-radius: 18px;
    border: 1px solid rgba(34, 61, 86, 0.12);
    background: #fff;
    box-shadow: 0 10px 26px rgba(24, 45, 62, 0.08);
    padding: 1rem;
}

.wnb-hp1-card-text {
    max-width: 960px;
}

.wnb-hp1-card-prose .wnb-hp1-prose > *:last-child {
    margin-bottom: 0;
}

.wnb-hp1-mini-kicker {
    display: inline-block;
    margin-bottom: 0.35rem;
    font-size: var(--xxsmall);
    color: #576c81;
}

.wnb-hp1-slider-meta {
    color: #4c6177;
    font-size: var(--xsmall);
}

.wnb-hp1-slider-container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.wnb-hp1-slider-shell,
.wnb-hp1-slider-card {
    width: 100%;
    margin: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.wnb-hp1-slider-shell {
    padding: 0;
}

.wnb-hp1-slider-card {
    padding: 0;
}

.wnb-hp1-slider-card .wnb-hp1-carousel {
    border-radius: 0;
    overflow: hidden;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.wnb-hp1-carousel .carousel-item {
    position: relative;
    min-height: var(--wnb-slider-height);
    height: var(--wnb-slider-height);
    background: transparent;
}

.wnb-hp1-slide-media {
    position: relative;
    min-height: var(--wnb-slider-height);
    height: var(--wnb-slider-height);
}

.wnb-hp1-slide-media-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: block;
    transition: opacity 0.32s ease;
}

.wnb-hp1-slide-media-bg.wnb-lazy-bg {
    opacity: 0.01;
}

.wnb-hp1-slide-media-bg.is-bg-loaded {
    opacity: 1;
}

.wnb-hp1-slide-media-image-empty {
    background: linear-gradient(135deg, #29435a 0%, #1d3347 100%);
}

.wnb-hp1-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 16, 24, 0.08) 0%, rgba(8, 16, 24, 0.72) 80%);
}

.wnb-hp1-slide-caption {
    width: min(86%, 760px);
    left: clamp(16px, 4vw, 52px);
    right: auto;
    top: auto;
    bottom: clamp(16px, 3vh, 34px);
    transform: none;
    text-align: left;
    z-index: 2;
}

.wnb-hp1-slide-caption--top_left {
    top: clamp(16px, 3vh, 34px);
    bottom: auto;
    left: clamp(16px, 4vw, 52px);
    right: auto;
    transform: none;
    text-align: left;
}

.wnb-hp1-slide-caption--top_center {
    top: clamp(16px, 3vh, 34px);
    bottom: auto;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    text-align: center;
}

.wnb-hp1-slide-caption--top_right {
    top: clamp(16px, 3vh, 34px);
    bottom: auto;
    left: auto;
    right: clamp(16px, 4vw, 52px);
    transform: none;
    text-align: right;
}

.wnb-hp1-slide-caption--middle_left {
    top: 50%;
    bottom: auto;
    left: clamp(16px, 4vw, 52px);
    right: auto;
    transform: translateY(-50%);
    text-align: left;
}

.wnb-hp1-slide-caption--middle_center {
    top: 50%;
    bottom: auto;
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
    text-align: center;
}

.wnb-hp1-slide-caption--middle_right {
    top: 50%;
    bottom: auto;
    left: auto;
    right: clamp(16px, 4vw, 52px);
    transform: translateY(-50%);
    text-align: right;
}

.wnb-hp1-slide-caption--bottom_left {
    top: auto;
    bottom: clamp(16px, 3vh, 34px);
    left: clamp(16px, 4vw, 52px);
    right: auto;
    transform: none;
    text-align: left;
}

.wnb-hp1-slide-caption--bottom_center {
    top: auto;
    bottom: clamp(16px, 3vh, 34px);
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    text-align: center;
}

.wnb-hp1-slide-caption--bottom_right {
    top: auto;
    bottom: clamp(16px, 3vh, 34px);
    left: auto;
    right: clamp(16px, 4vw, 52px);
    transform: none;
    text-align: right;
}

.wnb-hp1-slide-badge {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    font-size: var(--xxsmall);
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 0.7rem;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.wnb-hp1-slide-caption h3,
.wnb-hp1-slide-caption p {
    color: #fff;
    text-shadow: 0 8px 18px rgba(10, 17, 25, 0.45);
}

.wnb-hp1-slide-split {
    background: linear-gradient(135deg, #f8fbff 0%, #eff6ff 100%);
}

.wnb-hp1-slide-split-main {
    border-radius: 14px;
    border: 1px solid rgba(18, 39, 57, 0.14);
}

.wnb-hp1-slide-split-secondary {
    margin-top: 0.6rem;
    border-radius: 10px;
    border: 1px solid rgba(18, 39, 57, 0.12);
}

.wnb-hp1-slide-custom {
    width: 100%;
    height: var(--wnb-slider-html-height);
    max-height: 500px;
    min-height: 220px;
    background: #fff;
    display: block;
    overflow: hidden;
}

.wnb-hp1-slide-custom-inner {
    width: 100%;
    height: 100%;
    padding: 0;
    overflow: auto;
}

.wnb-hp1-slide-custom > *:last-child {
    margin-bottom: 0;
}

.wnb-hp1-carousel .carousel-item.wnb-hp1-carousel-item-html {
    height: var(--wnb-slider-html-height);
    min-height: 220px;
    max-height: 500px;
    background: #fff;
}

.wnb-hp1-carousel .carousel-control-prev,
.wnb-hp1-carousel .carousel-control-next {
    width: 12%;
}

.wnb-hp1-carousel .carousel-control-prev-icon,
.wnb-hp1-carousel .carousel-control-next-icon {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 999px;
    background-color: rgba(6, 15, 24, 0.42);
    background-size: 55%;
}

.wnb-hp1-carousel .carousel-indicators [data-bs-target] {
    width: 26px;
    height: 4px;
    border-radius: 999px;
    margin: 0 4px;
}

.wnb-hp1-mobile-fallback-image {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(23, 43, 61, 0.14);
}

.wnb-hp1-carousel-cover .carousel-item,
.wnb-hp1-carousel-cover .wnb-hp1-slide-media,
.wnb-hp1-carousel-cover .wnb-hp1-slide-media-bg {
    min-height: var(--wnb-slider-cover-height);
    height: var(--wnb-slider-cover-height);
}

.wnb-hp1-carousel-cards .wnb-hp1-slide-caption {
    max-width: 520px;
    padding: 1rem 1.1rem;
    border-radius: 12px;
    background: rgba(9, 20, 31, 0.56);
    backdrop-filter: blur(4px);
}

@media (max-width: 767.98px) {
    .wnb-hp1-carousel .carousel-item,
    .wnb-hp1-slide-media,
    .wnb-hp1-carousel-cover .carousel-item,
    .wnb-hp1-carousel-cover .wnb-hp1-slide-media,
    .wnb-hp1-carousel-cover .wnb-hp1-slide-media-bg {
        min-height: var(--wnb-slider-mobile-height);
        height: var(--wnb-slider-mobile-height);
    }

    .wnb-hp1-slide-custom,
    .wnb-hp1-carousel .carousel-item.wnb-hp1-carousel-item-html {
        min-height: 220px;
        height: min(420px, 36vh);
    }
}

.wnb-reveal.wnb-anim-none {
    opacity: 1;
    transform: none;
    transition: none;
}

.wnb-reveal.wnb-anim-fade-in {
    transform: none;
}

.wnb-reveal.wnb-anim-slide-top {
    transform: translateY(-36px);
}

.wnb-reveal.wnb-anim-slide-bottom {
    transform: translateY(36px);
}

.wnb-reveal.wnb-anim-parallax-in {
    transform: translateY(52px) scale(1.02);
}

.wnb-reveal.wnb-anim-parallax-out {
    transform: translateY(-52px) scale(0.98);
}

.wnb-reveal.is-visible.wnb-anim-fade-in,
.wnb-reveal.is-visible.wnb-anim-slide-top,
.wnb-reveal.is-visible.wnb-anim-slide-bottom,
.wnb-reveal.is-visible.wnb-anim-parallax-in,
.wnb-reveal.is-visible.wnb-anim-parallax-out {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.post-card {
    border-radius: var(--wnb-radius);
    overflow: hidden;
}

.post-card .card-img-top {
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.entry-content > * {
    margin-bottom: 1rem;
}

.site-footer {
    background: linear-gradient(165deg, var(--wnb-footer) 10%, #132d42 60%, #1c3a53 100%);
}

.site-footer a {
    color: rgba(255, 255, 255, 0.9);
}

.site-footer a:hover {
    color: #fff;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
    width: auto;
    height: auto;
    padding: 0.625rem 0.875rem;
    z-index: 2000;
    background: #fff;
    color: #000;
}

.btn-primary {
    --bs-btn-bg: var(--wnb-primary);
    --bs-btn-border-color: var(--wnb-primary);
    --bs-btn-hover-bg: #18364a;
    --bs-btn-hover-border-color: #18364a;
}

@media (max-width: 1199.98px) {
    .wnb-desktop-nav > li > a {
        font-size: var(--xsmall);
        padding: 0.88rem 0.55rem 1rem;
        font-weight: 300;
    }

    .wnb-utility-link {
        font-size: var(--xxsmall);
    }
}

@media (max-width: 991.98px) {
    .wnb-main-nav .container {
        gap: 0.4rem;
    }

    .wnb-brand-name {
        font-size: var(--xsmall);
    }

    .wnb-custom-logo .custom-logo,
    .brand-icon {
        width: 38px;
        height: 38px;
        border-radius: 11px;
    }

    .wnb-nav-mega {
        display: none !important;
    }

    .wnb-mobile-offcanvas {
        --bs-offcanvas-width: min(100vw, 420px);
    }

    .whoisnearby-hero {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .hero-artboard {
        padding: 1rem;
    }

    .wnb-cta-slab {
        padding: 1.8rem 1rem;
    }
}

@media (min-width: 992px) {
    .mobile-nav {
        display: none;
    }

    .py-lg-6 {
        padding-top: 5rem !important;
        padding-bottom: 5rem !important;
    }
}
