.vg-container {
    width: 100%;
    max-width: calc(var(--vg-container) + var(--vg-gutter) * 2);
    margin-inline: auto;
    padding-inline: var(--vg-gutter);
}

.vg-container--narrow {
    max-width: calc(860px + var(--vg-gutter) * 2);
}

.vg-container--wide {
    max-width: calc(1440px + var(--vg-gutter) * 2);
}

.vg-site {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.vg-main {
    display: block;
    flex: 1 0 auto;
    min-height: 50vh;
}

.vg-section {
    padding-block: var(--vg-section);
    position: relative;
}

.vg-section--tight {
    padding-block: clamp(36px, 5vw, 56px);
}

.vg-section--alt {
    background: var(--vg-bg-alt);
}

.vg-section--white {
    background: var(--vg-surface);
}

.vg-section--dark {
    background: var(--vg-secondary);
    color: rgba(255, 255, 255, .78);
}

.vg-section--dark .vg-title,
.vg-section--dark h2,
.vg-section--dark h3 {
    color: #FFFFFF;
}

.vg-section--dark .vg-lead {
    color: rgba(255, 255, 255, .7);
}

.vg-head {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: clamp(28px, 4vw, 44px);
}

.vg-head--center {
    align-items: center;
    text-align: center;
}

.vg-head--center .vg-lead {
    margin-inline: auto;
}

.vg-head--split {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px 24px;
}

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

.vg-head--center .vg-head__text {
    align-items: center;
}

.vg-grid {
    display: grid;
    gap: clamp(16px, 2.4vw, 28px);
}

.vg-grid--2 {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}

.vg-grid--3 {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
}

.vg-grid--4 {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 230px), 1fr));
}

.vg-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
}

@media (min-width: 900px) {
    .vg-split {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vg-split--wide-left {
        grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    }

    .vg-split--wide-right {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
    }
}

.vg-layout-aside {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

@media (min-width: 992px) {
    .vg-layout-aside {
        grid-template-columns: minmax(0, 1fr) 340px;
    }

    .vg-layout-aside--left {
        grid-template-columns: 280px minmax(0, 1fr);
    }
}

.vg-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vg-stack--sm {
    gap: 8px;
}

.vg-stack--lg {
    gap: 28px;
}

.vg-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.vg-row--between {
    justify-content: space-between;
}

.vg-row--end {
    justify-content: flex-end;
}

.vg-sr-only,
.pw-hp,
.pw-sr-only,
.pw-visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.vg-center {
    text-align: center;
}

.vg-mt-0 {
    margin-top: 0 !important;
}

.vg-mt-s {
    margin-top: 12px;
}

.vg-mt {
    margin-top: 24px;
}

.vg-mt-l {
    margin-top: 40px;
}

.vg-mb {
    margin-bottom: 24px;
}

.vg-w-full {
    width: 100%;
}

.vg-scroll-x {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.vg-hide-mobile {
    display: none !important;
}

@media (min-width: 768px) {
    .vg-hide-mobile {
        display: revert !important;
    }

    .vg-only-mobile {
        display: none !important;
    }
}

html[data-polo-js] [data-polo-reveal] {
    transition: opacity .6s var(--vg-ease), transform .6s var(--vg-ease);
    transition-delay: var(--pw-delay, 0ms);
}

html[data-polo-js] [data-polo-reveal]:not(.is-in) {
    opacity: 0;
    transform: translateY(18px);
}
