/* ---------------------------------------------------------------------------
   Blog listing — rebuilt from Figma "vm blogs copy" / node 1:9 "Blog main page".
   Tokens below are lifted from the frame: brand #ff2a57, Poppins throughout,
   22px card radius, 40px pill height, 1600px-wide artboard normalised to a
   1240px container.
   Everything is scoped under .vmblog so it cannot leak into the captured
   WordPress pages that still share this document.
--------------------------------------------------------------------------- */

.vmblog {
    --vmb-brand: #ff2a57;
    --vmb-ink: #000;
    --vmb-ink-soft: #3a3a3a;
    --vmb-muted: #737373;
    --vmb-muted-2: #5a5a5a;
    --vmb-faint: #cdcdcd;
    --vmb-line: #e9e9e9;
    --vmb-field-line: #c4c4c4;
    --vmb-radius-card: 22px;
    --vmb-radius-media: 13px;
    --vmb-shadow: 0 5px 17px rgba(0, 0, 0, .10), 0 20px 31px rgba(0, 0, 0, .05);
    --vmb-container: 1240px;
    --vmb-bg-hover:#FF2A570D;

    font-family: "Poppins", sans-serif;
    color: var(--vmb-ink);
}

.vmblog *,
.vmblog *::before,
.vmblog *::after {
    box-sizing: border-box;
}

.vmblog__container {
    width: 100%;
    max-width: var(--vmb-container);
    margin-inline: auto;
    padding-inline: 24px;
}

/* Applied while an in-place navigation (pill, page link, search) is fetching.
   Deliberately understated — these swaps usually land in well under a second. */
.is-vmblog-loading {
    opacity: .5;
    pointer-events: none;
    transition: opacity .15s ease;
}

@media (prefers-reduced-motion: reduce) {
    .is-vmblog-loading {
        transition: none;
    }
}

.vmblog a {
    text-decoration: none;
    /* color: var(--vmb-ink); */
}

/* --- Hero ---------------------------------------------------------------- */

.vmblog__hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 442px;
    overflow: hidden;
    background: #fff url("/assets/blog/hero-grid.svg") right center / auto 100% no-repeat;
}

.vmblog__hero-inner {
    position: relative;
    z-index: 1;
}

.vmblog__hero h1 {
    margin: 0;
    font-size: 71px;
    font-weight: 700;
    line-height: 1.07;
    /* letter-spacing: -.06em; */
}

.vmblog__hero-sub {
    max-width: 520px;
    margin: 14px 0 0;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.53;
    /* letter-spacing: -.06em; */
}

/* Small brand "+" that sits above the wordmark in the design. */
.vmblog__hero-plus {
    display: inline-block;
    margin-left: 12px;
    color: var(--vmb-brand);
    font-size: 22px;
    font-weight: 400;
    vertical-align: super;
}

/* --- Section intro ------------------------------------------------------- */

.vmblog__intro {
    padding: 56px 0 0;
    text-align: center;
}

.vmblog__intro h2 {
    margin: 0;
    color: var(--vmb-brand);
    font-size: 31px;
    font-weight: 700;
    line-height: 1.5;
    /* letter-spacing: -.06em; */
}

.vmblog__intro p {
    max-width: 960px;
    margin: 8px auto 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    /* letter-spacing: -.06em; */
}

/* --- Search + topics ----------------------------------------------------- */

.vmblog__search {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 951px;
    height: 54px;
    margin: 40px auto 0;
    padding: 0 10px 0 24px;
    border: 1px solid var(--vmb-field-line);
    border-radius: 6px;
    background: #fff;
}

.vmblog__search-input {
    flex: 1 1 auto;
    min-width: 0;
    height: 100%;
    border: 0;
    background: transparent;
    color: var(--vmb-ink);
    font-family: "Inter", "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 500;
    /* letter-spacing: -.04em; */
}

/* The browser's own clear button sits awkwardly against the pink divider. */
.vmblog__search-input::-webkit-search-cancel-button {
    margin-right: 6px;
}

.vmblog__search-input::placeholder {
    color: #595c5f;
}

.vmblog__search-input:focus {
    outline: 0;
}

/* The pink hairline divider between the keyword field and the topic control. */
.vmblog__search-divider {
    flex: 0 0 auto;
    width: 1px;
    height: 52px;
    margin-right: 23px;
    background: var(--vmb-brand);
}

/* --- Topic control -------------------------------------------------------
   Frame geometry: divider at 726px into the 951px bar, "Topics" 23px after
   it, caret 14px after the label, Search button 37px after the caret and
   10px off the bar's right edge.
------------------------------------------------------------------------- */

.vmblog__topics {
    position: relative;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    align-self: stretch;
}

/* Carries the value and submits the form. Visible only without JS, where it
   is the whole control; the JS flag is set in partials/blog-v2-head. */
.vmblog__topics-native {
    height: 100%;
    padding-right: 22px;
    border: 0;
    background: transparent url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7' fill='none'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%23595c5f' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") right center / 11px 7px no-repeat;
    color: #595c5f;
    font-family: "Inter", "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 500;
    appearance: none;
    cursor: pointer;
}

.vmblog__topics-native:focus {
    outline: 0;
}

.vmblog__topics-btn {
    display: none;
    align-items: center;
    gap: 14px;
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: #595c5f;
    font-family: "Inter", "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
}

.vmblog__topics-caret {
    flex: 0 0 auto;
    transition: transform .2s ease;
}

.vmblog__topics-btn[aria-expanded="true"] .vmblog__topics-caret {
    transform: rotate(180deg);
}

.vmblog__topics-btn:focus-visible {
    outline: 2px solid var(--vmb-brand);
    outline-offset: 3px;
    border-radius: 4px;
}

/* With JS the native select still submits, but the custom button is shown. */
.vmblog-js .vmblog__topics-native {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
    pointer-events: none;
}

.vmblog-js .vmblog__topics-btn {
    display: inline-flex;
}

/* Panel: 232x232, radius 10, hairline border, and the frame's stacked shadow.
   The mock draws it overlapping the bar; it opens below the field instead,
   with its right edge on the caret as designed. */
.vmblog__topics-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 9px;
    z-index: 20;
    width: 232px;
    max-height: 299px;
    margin: 0;
    padding: 15px 9px 16px 8px;
    overflow-y: auto;
    list-style: none;
    border: .5px solid #e4e4e4;
    border-radius: 10px;
    background: #fff;
    box-shadow:
        -3px 5px 13px rgba(0, 0, 0, .10),
        -14px 19px 24px rgba(0, 0, 0, .09),
        -31px 43px 32px rgba(0, 0, 0, .05),
        -55px 77px 38px rgba(0, 0, 0, .01);
}

.vmblog__topics-menu[hidden] {
    display: none;
}

/* Row: 215x41, radius 11. At rest the pill and the brand tile are both
   transparent — in the frame they sit at opacity 0 and only the highlighted
   row turns them on, with its label going from #5a5a5a to black. */
.vmblog__topics-option {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 41px;
    padding: 0 12px 0 7px;
    border-radius: 11px;
    background: transparent;
    color: #5a5a5a;
    font-family: "Inter", "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background .18s ease, color .18s ease;
}

.vmblog__topics-option + .vmblog__topics-option {
    margin-top: 4px;
}

.vmblog__topics-option:hover,
.vmblog__topics-option:focus-visible,
.vmblog__topics-option.is-active,
.vmblog__topics-option.is-selected {
    background: #f3f3f3;
    color: #000;
    outline: 0;
}

.vmblog__topics-option > span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 29x29 tile holding the 17x15 heart. Empty until the row is highlighted. */
.vmblog__topics-icon {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 29px;
    height: 29px;
    border-radius: 7px;
    background: transparent;
    color: #5a5a5a;
    opacity: .63;
    transition: background .18s ease, color .18s ease, opacity .18s ease;
}

.vmblog__topics-option:hover .vmblog__topics-icon,
.vmblog__topics-option:focus-visible .vmblog__topics-icon,
.vmblog__topics-option.is-active .vmblog__topics-icon,
.vmblog__topics-option.is-selected .vmblog__topics-icon {
    background: var(--vmb-brand);
    color: #fff;
    opacity: 1;
}

.vmblog__search-btn {
    flex: 0 0 auto;
    min-width: 87px;
    height: 31px;
    margin-left: 37px;
    padding: 0 18px;
    border: 0;
    border-radius: 6px;
    background: #e3acb8;
    color: #9c1935;
    font-family: "Inter", "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 700;
    /* letter-spacing: -.01em; */
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
}

.vmblog__search-btn:hover {
    background: #9C1935;
    color: #fff;
}

/* --- Category pills ------------------------------------------------------ */

.vmblog__pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 10px;
    margin: 42px 0 0;
    padding: 0;
    list-style: none;
}

.vmblog__pill {
    display: inline-flex;
    align-items: center;
    height: 40px;
    padding: 0 22px;
    border: 2px solid var(--vmb-brand);
    border-radius: 20px;
    background: transparent;
    color: var(--vmb-ink);
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    /* letter-spacing: -.06em; */
    white-space: nowrap;
    transition: background .2s ease, color .2s ease;
}

.vmblog__pill:hover{
    background: var(--vmb-bg-hover);
    color: var(--vmb-brand) !important;
}
.vmblog__pill--active {
    background: var(--vmb-brand);
    color: #fff !important;
}

/* --- Featured post + latest list ----------------------------------------- */

.vmblog__latest {
    display: grid;
    grid-template-columns: minmax(0, 722fr) minmax(0, 424fr);
    gap: 36px;
    align-items: start;
    margin: 64px 0 0;
}

.vmblog__feature {
    position: relative;
    display: block;
    aspect-ratio: 722 / 473;
    overflow: hidden;
    border-radius: var(--vmb-radius-card);
    background: #f4f6f5;
}

.vmblog__feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Frosted band across the bottom third — white at 50% in the source frame. */
.vmblog__feature-overlay {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 39%;
    padding: 22px 39px 24px;
    /* Figma uses white @50%; real post artwork carries baked-in text, so this
       is lifted until the title stays legible over any thumbnail. */
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(6px);
    border-radius: 0 0 var(--vmb-radius-card) var(--vmb-radius-card);
}

.vmblog__feature-title {
    margin: 10px 0 0;
    color: var(--vmb-brand);
    font-size: 27px;
    font-weight: 700;
    line-height: 1.22;
    /* letter-spacing: -.06em; */
}

.vmblog__feature-meta {
    margin: 14px 0 0;
    color: var(--vmb-ink);
    font-size: 12px;
    font-weight: 500;
    /* letter-spacing: -.06em; */
}

/* Category chip — pink dot + label, used on the feature and on cards. */
.vmblog__chip {
    
    width: fit-content;
    /* margin-top: 17px; */
    display: inline-flex;
    align-items: center;
    gap: 7px;
    height: 26px;
    padding: 10px;
    border-radius: 13px;
    background: #FF2A571A;
    color: var(--vmb-brand);
    font-size: 13px;
    font-weight: 500;
    /* letter-spacing: -.07em; */
}

.vmblog__chip::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--vmb-brand);
}

.vmblog__side-title {
    margin: 0 0 26px;
    color: var(--vmb-brand);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.5;
    /* letter-spacing: -.06em; */
}

.vmblog__side-list {
    display: flex;
    flex-direction: column;
    gap: 26px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.vmblog__side-item {
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.vmblog__side-thumb {
    /* width: 68px;
    height: 68px;
    object-fit: cover;
    border-radius: 8px;
    background: #f4f6f5; */
    width: 100%;
    object-position: right;
    object-fit: cover;
    border-radius: 60px;
    background: #f4f6f5;
}

.vmblog__side-heading {
    margin: 0;
    color: var(--vmb-ink-soft);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.24;
    /* letter-spacing: -.06em; */
}

.vmblog__side-meta {
    margin: 8px 0 0;
    color: var(--vmb-muted);
    font-size: 12px;
    font-weight: 500;
    /* letter-spacing: -.06em; */
}

.vmblog__rule {
    height: 1px;
    margin: 56px 0 0;
    border: 0;
    background: var(--vmb-line);
}

/* --- Founders Corner ----------------------------------------------------- */

.vmblog__corner-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin: 40px 0 30px;
}

.vmblog__corner-head h2 {
    margin: 0;
    color: var(--vmb-brand);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.5;
    /* letter-spacing: -.06em; */
}

.vmblog__arrows {
    display: flex;
    gap: 12px;
}

.vmblog__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid var(--vmb-faint);
    border-radius: 50%;
    background: #fff;
    color: var(--vmb-muted-2);
    font-size: 14px;
    cursor: pointer;
    transition: border-color .2s ease, color .2s ease;
}

.vmblog__arrow:hover:not(:disabled) {
    border-color: var(--vmb-brand);
    color: var(--vmb-brand);
}

.vmblog__arrow:disabled {
    opacity: .4;
    cursor: default;
}

/* Horizontal track: three cards visible, arrows scroll it one card at a time.
   Falls back to a plain swipeable row without JS. */
.vmblog__track {
    display: flex;
    gap: 36px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    /* Room for the card shadow so it is not clipped by the scroll container. */
    padding: 6px 4px 30px;
    margin: 0 -4px;
    scrollbar-width: none;
}

.vmblog__track::-webkit-scrollbar {
    display: none;
}

.vmblog__card {
    display: flex;
    flex: 0 0 calc((100% - 72px) / 3);
    flex-direction: column;
    scroll-snap-align: start;
    padding: 9px 9px 22px;
    border: 1px solid var(--vmb-line);
    border-radius: var(--vmb-radius-card);
    background: #fff;
    box-shadow: var(--vmb-shadow);
    transition: transform .25s ease, box-shadow .25s ease;
}

.vmblog__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .12), 0 26px 40px rgba(0, 0, 0, .06);
}

.vmblog__card-media {
    position: relative;
    aspect-ratio: 327 / 137;
    /* overflow: hidden; */
    border-radius: var(--vmb-radius-media);
    background: #f4f6f5;
}

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

.vmblog__card-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 18px 11px 0;
}

.vmblog__card .vmblog__chip {
    align-self: flex-start;
    /* padding-left: 0; */
}

.vmblog__card-title {
    margin: 12px 0 0;
    color: var(--vmb-ink);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.18;
    /* letter-spacing: -.06em; */
}

.vmblog__card-excerpt {
    margin: 14px 0 0;
    color: var(--vmb-muted);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    /* letter-spacing: -.06em; */
}

.vmblog__card-meta {
    margin: auto 0 0;
    padding-top: 18px;
    color: var(--vmb-faint);
    font-size: 12px;
    font-weight: 500;
    /* letter-spacing: -.06em; */
}

.vmblog__empty {
    flex: 1 1 100%;
    padding: 48px 0;
    color: var(--vmb-muted);
    font-size: 18px;
    text-align: center;
}

/* --- Pagination ---------------------------------------------------------- */

.vmblog__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 56px 0 0;
}

.vmblog__page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 30px;
    padding: 0 8px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--vmb-ink);
    font-size: 13px;
    font-weight: 500;
    /* letter-spacing: -.07em; */
}

.vmblog__page--current {
    background: var(--vmb-brand);
    color: #fff;
}

.vmblog__page--edge {
    width: 38px;
    height: 38px;
    font-size: 16px;
}

.vmblog__page--edge.is-disabled {
    opacity: .3;
    pointer-events: none;
}

/* --- CTA + newsletter ---------------------------------------------------- */

.vmblog__cta-wrap {
    padding: 96px 0 110px;
}

.vmblog__cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 376px;
    gap: 40px;
    align-items: center;
    padding: 46px 47px;
    border-radius: 28px;
    background: linear-gradient(101deg, #ff2a57 0%, #e01844 100%);
}

.vmblog__badge {
    display: inline-flex;
    align-items: center;
    height: 27px;
    padding: 0 15px;
    border-radius: 14px;
    background: #fff;
    color: var(--vmb-brand);
    font-size: 14px;
    font-weight: 700;
    /* letter-spacing: -.06em; */
    text-transform: uppercase;
}

.vmblog__cta h2 {
    margin: 22px 0 0;
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.21;
    /* letter-spacing: -.06em; */
}

.vmblog__cta p {
    margin: 10px 0 0;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.31;
    /* letter-spacing: -.06em; */
}

.vmblog__cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 28px 0 0;
}

.vmblog__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    padding: 0 26px;
    border: 2px solid #fff;
    border-radius: 23px;
    font-size: 16px;
    font-weight: 500;
    /* letter-spacing: -.06em; */
    transition: background .2s ease, color .2s ease;
}

.vmblog__btn--solid {
    background: #fff;
    color: var(--vmb-brand);
}

.vmblog__btn--solid:hover {
    background: transparent;
    color: #fff;
}

.vmblog__btn--ghost {
    background: transparent;
    color: #fff !important;
}

.vmblog__btn--ghost:hover {
    background: #fff;
    color: var(--vmb-brand) !important;
}

.vmblog__news {
    padding: 26px 27px 28px;
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--vmb-shadow);
}

.vmblog__news h3 {
    margin: 0;
    color: var(--vmb-brand);
    font-size: 21px;
    font-weight: 700;
    line-height: 1.29;
    /* letter-spacing: -.06em; */
}

.vmblog__news p {
    margin: 8px 0 0;
    color: #606060;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.57;
    /* letter-spacing: -.09em; */
}

.vmblog__news-form {
    margin: 18px 0 0;
}

.vmblog__news-input {
    display: block;
    width: 100%;
    height: 46px;
    padding: 0 17px;
    border: 1px solid var(--vmb-line);
    border-radius: 8px;
    background: #fff;
    color: var(--vmb-ink);
    font-family: inherit;
    font-size: 15px;
    font-weight: 400;
    /* letter-spacing: -.06em; */
}

.vmblog__news-input::placeholder {
    color: #c7c7c7;
}

.vmblog__news-input:focus {
    border-color: var(--vmb-brand);
    outline: 0;
}

.vmblog__news-btn {
    display: block;
    width: 100%;
    height: 46px;
    margin: 13px 0 0;
    border: 0;
    border-radius: 8px;
    background: var(--vmb-brand);
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    /* letter-spacing: -.09em; */
    cursor: pointer;
    transition: background .2s ease;
}

.vmblog__news-btn:hover {
    background: #e01844;
}

.vmblog__news-note {
    margin: 10px 0 0;
    font-size: 13px;
    line-height: 1.4;
}

.vmblog__news-note--ok {
    color: #1a7f47;
}

.vmblog__news-note--err {
    color: var(--vmb-brand);
}

/* --- Responsive ---------------------------------------------------------- */

@media (max-width: 1199px) {
    .vmblog__latest {
        grid-template-columns: minmax(0, 1fr);
        gap: 48px;
    }

    .vmblog__track {
        gap: 28px;
    }

    .vmblog__card {
        flex-basis: calc((100% - 28px) / 2);
    }

    .vmblog__cta {
        grid-template-columns: minmax(0, 1fr);
    }

    .vmblog__cta h2 {
        font-size: 38px;
    }
}

@media (max-width: 991px) {
    .vmblog__hero {
        min-height: 320px;
        background-size: cover;
    }

    .vmblog__hero h1 {
        font-size: 52px;
    }

    .vmblog__search {
        height: auto;
        flex-wrap: wrap;
        gap: 12px;
        padding: 14px 16px;
    }

    .vmblog__search-input {
        flex: 1 1 100%;
        height: 34px;
    }

    .vmblog__search-divider {
        display: none;
    }

    .vmblog__topics {
        flex: 1 1 auto;
        align-self: auto;
        height: 34px;
    }

    /* Stacked bar: hang the panel from the topic row and let it use the
       available width rather than overflowing a narrow screen. */
    .vmblog__topics-menu {
        right: auto;
        left: 0;
        top: calc(100% + 8px);
        width: min(232px, calc(100vw - 64px));
    }

    .vmblog__search-btn {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .vmblog__hero {
        min-height: 260px;
    }

    .vmblog__hero h1 {
        font-size: 40px;
    }

    .vmblog__hero-sub {
        font-size: 15px;
    }

    .vmblog__intro h2 {
        font-size: 25px;
    }

    .vmblog__intro p {
        font-size: 15px;
    }

    .vmblog__card {
        flex-basis: 100%;
    }

    .vmblog__feature-overlay {
        position: static;
        padding: 18px 20px 22px;
        background: #fff;
        border: 1px solid var(--vmb-line);
        border-top: 0;
    }

    .vmblog__feature {
        aspect-ratio: auto;
        border-radius: var(--vmb-radius-card);
    }

    .vmblog__feature-img {
        aspect-ratio: 722 / 473;
    }

    .vmblog__feature-title {
        font-size: 21px;
    }

    .vmblog__cta {
        padding: 32px 24px;
    }

    .vmblog__cta h2 {
        font-size: 30px;
    }

    .vmblog__cta-wrap {
        padding: 64px 0 76px;
    }
}
