/* ---------------------------------------------------------------------------
   Blog single post + author profile — rebuilt from Figma "vm blogs copy",
   nodes 1:221 "Blog Inner page" and 1:493 "Blog Author page".
   Loads alongside blog-v2.css, which owns the .vmblog tokens, the hero,
   the card/chip styles and the newsletter block.
--------------------------------------------------------------------------- */

/* --- Post hero ----------------------------------------------------------- */

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

.vmblog__post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
}

.vmblog__meta-pill {
    display: inline-flex;
    align-items: center;
    height: 34px;
    padding: 0 18px;
    border: 1px solid #e4e4e4;
    border-radius: 17px;
    background: #fff;
    color: #969696;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
}

.vmblog__meta-pill--category {
    border-color: var(--vmb-brand);
    background: var(--vmb-brand);
    color: #fff;
    font-weight: 700;
}

.vmblog__meta-pill--author:hover {
    font-weight: 700;
    color:#fff;
    background: var(--vmb-brand);
}

.vmblog__post-hero h1 {
    max-width: 1000px;
    margin: 0;
    font-size: 71px;
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -.06em;
}

/* --- Breadcrumb ---------------------------------------------------------- */

.vmblog__crumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 34px 0 24px;
    padding: 0;
    list-style: none;
    font-family: "Inter", "Poppins", sans-serif;
    font-size: 14px;
}

.vmblog__crumbs a {
    color: var(--vmb-brand);
}

.vmblog__crumbs a:hover {
    text-decoration: underline;
}

.vmblog__crumbs li:not(:last-child)::after {
    margin-left: 8px;
    color: var(--vmb-faint);
    content: "\203A";
}

.vmblog__crumbs li[aria-current] {
    color: var(--vmb-muted-2);
}

/* --- Two-column shell ---------------------------------------------------- */

.vmblog__post-layout {
    display: grid;
    grid-template-columns: minmax(0, 817fr) 382px;
    gap: 41px;
    align-items: start;
    padding-bottom: 80px;
}

.vmblog__side {
    position: sticky;
    top: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* --- Post header media --------------------------------------------------- */

.vmblog__post-figure {
    margin: 0;
}

.vmblog__post-figure img {
    display: block;
    width: 100%;
    aspect-ratio: 797 / 402;
    object-fit: cover;
    border-radius: 15px;
    background: #f4f6f5;
}

.vmblog__byline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin: 22px 0 0;
    color: #6c6c6c;
    font-size: 16px;
}

.vmblog__byline-avatar {
    width: 28px;
    height: 28px;
    object-fit: cover;
    border-radius: 50%;
    background: #f0f0f0;
}

.vmblog__byline-author {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--vmb-ink);
}

.vmblog__byline-author:hover {
    color: var(--vmb-brand);
}

/* --- Collapsible panels (pointers, sources) ------------------------------ */

.vmblog__panel {
    margin: 30px 0 0;
    padding: 18px 24px 20px;
    border: 1px solid #ffd9e1;
    border-radius: 12px;
    background: #fff5f7;
}

.vmblog__panel summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid #ffe1e7;
    color: #383838;
    font-family: "Inter", "Poppins", sans-serif;
    font-size: 14px;
    cursor: pointer;
    list-style: none;
}

.vmblog__panel summary::-webkit-details-marker {
    display: none;
}

.vmblog__panel summary::after {
    color: var(--vmb-brand);
    font-size: 13px;
    content: "\25BC";
    transition: transform .2s ease;
}

.vmblog__panel[open] summary::after {
    transform: rotate(180deg);
}

.vmblog__panel-list {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.vmblog__panel-list li {
    position: relative;
    padding: 0 0 14px 30px;
    color: #383838;
    font-family: "Inter", "Poppins", sans-serif;
    font-size: 12px;
    line-height: 1.45;
}

.vmblog__panel-list li:last-child {
    padding-bottom: 0;
}

/* Pink check disc from the design's bullet marker. */
.vmblog__panel-list li::before {
    position: absolute;
    top: 1px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--vmb-brand);
    color: #fff;
    font-size: 9px;
    content: "\2713";
}

.vmblog__sources {
    margin: 34px 0 0;
    padding: 6px 22px;
    border: 1px solid var(--vmb-brand);
    border-radius: 10px;
    background: #fff5f7;
}

.vmblog__sources p {
    margin: 0;
    padding: 12px 0;
    font-family: "Inter", "Poppins", sans-serif;
    font-size: 13px;
    color: #383838;
    word-break: break-word;
}

.vmblog__sources p + p {
    border-top: 1px solid #ffdde4;
}

.vmblog__sources strong {
    font-weight: 700;
}

/* --- Article body -------------------------------------------------------- */

.vmblog__body {
    margin: 34px 0 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -.02em;
    color: var(--vmb-ink);
}

.vmblog__body > *:first-child {
    margin-top: 0;
}

.vmblog__body h2 {
    margin: 44px 0 16px;
    color: var(--vmb-brand);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: -.04em;
    scroll-margin-top: 24px;
}

.vmblog__body h3 {
    margin: 34px 0 12px;
    color: var(--vmb-brand);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -.04em;
    scroll-margin-top: 24px;
}

.vmblog__body h4 {
    margin: 26px 0 10px;
    font-size: 18px;
    font-weight: 700;
}

.vmblog__body p {
    margin: 0 0 18px;
}

.vmblog__body a {
    color: var(--vmb-ink);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.vmblog__body a:hover {
    color: var(--vmb-brand);
}

.vmblog__body ul,
.vmblog__body ol {
    margin: 0 0 20px;
    padding-left: 26px;
}

.vmblog__body li {
    margin-bottom: 7px;
}

.vmblog__body img {
    display: block;
    height: auto;
    max-width: 100%;
    margin: 26px 0;
    border-radius: 15px;
}

.vmblog__body figure {
    margin: 26px 0;
}

.vmblog__body figcaption {
    margin-top: 10px;
    color: var(--vmb-muted);
    font-size: 14px;
    text-align: center;
}

.vmblog__body blockquote {
    margin: 26px 0;
    padding: 4px 0 4px 22px;
    border-left: 3px solid var(--vmb-brand);
    color: var(--vmb-muted-2);
    font-style: italic;
}

.vmblog__body table {
    width: 100%;
    margin: 26px 0;
    border-collapse: collapse;
    font-size: 15px;
}

.vmblog__body th,
.vmblog__body td {
    padding: 10px 14px;
    border: 1px solid var(--vmb-line);
    text-align: left;
}

.vmblog__body th {
    background: #fff5f7;
    font-weight: 600;
}

/* Wide content must scroll inside itself, never widen the page. The wrapper is
   injected around every content table by BlogRedesignController::prepareContent. */
.vmblog__body pre,
.vmblog__table-scroll {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.vmblog__table-scroll table {
    min-width: 560px;
    margin: 0;
}

.vmblog__table-scroll {
    margin: 26px 0;
}

/* --- FAQ ----------------------------------------------------------------- */

.vmblog__faq {
    margin: 54px 0 0;
}

.vmblog__faq > h2 {
    margin: 0 0 24px;
    color: var(--vmb-brand);
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -.03em;
}

.vmblog__faq-item {
    margin-bottom: 13px;
    border: 1px solid #fff6f8;
    border-radius: 11px;
    background: #fffafb;
}

.vmblog__faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 60px;
    padding: 12px 22px;
    color: #4c4c4c;
    font-family: "Inter", "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
}

.vmblog__faq-item summary::-webkit-details-marker {
    display: none;
}

.vmblog__faq-item summary::after {
    flex: 0 0 auto;
    color: var(--vmb-brand);
    font-size: 14px;
    content: "\25BC";
    transition: transform .2s ease;
}

.vmblog__faq-item[open] summary::after {
    transform: rotate(180deg);
}

.vmblog__faq-answer {
    padding: 0 22px 20px;
    color: var(--vmb-muted-2);
    font-size: 16px;
    line-height: 1.55;
}

/* --- AI summarize row ---------------------------------------------------- */

.vmblog__ai {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin: 34px 0 0;
    padding: 16px 22px;
    border: 1px solid #ffe1e7;
    border-radius: 11px;
    background: #fff5f7;
}

.vmblog__ai-label {
    margin: 0;
    color: #383838;
    font-family: "Inter", "Poppins", sans-serif;
    font-size: 15px;
}

.vmblog__ai-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.vmblog__ai-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--vmb-ink-soft);
    transition: transform .2s ease;
}

.vmblog__ai-link img {
    display: block;
    width: 40px;
    height: auto;
}

.vmblog__ai-link:hover {
    transform: translateY(-2px);
}

/* --- Sidebar cards ------------------------------------------------------- */

.vmblog__side-card {
    border: 1px solid #e5e5e5;
    border-radius: 15px;
    background: #fff;
    overflow: hidden;
}

.vmblog__side-card > summary,
.vmblog__side-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 57px;
    padding: 0 24px;
    background: var(--vmb-brand);
    color: #fff;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: -.04em;
    cursor: pointer;
    list-style: none;
}

.vmblog__side-card > summary::-webkit-details-marker {
    display: none;
}

.vmblog__side-card > summary::after {
    font-size: 15px;
    content: "\25BC";
    transition: transform .2s ease;
}

.vmblog__side-card[open] > summary::after {
    transform: rotate(180deg);
}

.vmblog__toc {
    max-height: 430px;
    margin: 0;
    padding: 18px 20px;
    overflow-y: auto;
    list-style: none;
    counter-reset: toc;
}

.vmblog__toc li {
    counter-increment: toc;
}

.vmblog__toc a {
    display: block;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.6;
}

.vmblog__toc a:hover,
.vmblog__toc a.is-active {
    background: #fff5f7;
    color: var(--vmb-brand);
}

.vmblog__toc li[data-level="3"] a {
    padding-left: 26px;
    font-size: 14px;
    color: var(--vmb-muted-2);
}

/* Promo card */
.vmblog__promo-copy {
    display: block;
    overflow: hidden;
    border-radius: 15px;
    background: linear-gradient(180deg, #ff2a57 0%, #e01844 100%);
    box-shadow: -1px 4px 8px 2px rgb(8 8 8 / 17%);
    color: #fff !important;
    text-align: center;
}

.vmblog__promo-copy {
    padding: 3px;
}

.vmblog__promo h3 {
    margin: 0;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -.04em;
}

.vmblog__promo-price {
    margin: 6px 0 0;
    font-size: 24px;
    font-weight: 700;
    opacity: .85;
}

.vmblog__promo p {
    margin: 10px 0 0;
    font-size: 15px;
    font-weight: 500;
}

.vmblog__promo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    margin: 18px 0 0;
    padding: 0 26px;
    border: 2px solid rgba(255, 255, 255, .75);
    border-radius: 22px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    transition: background .2s ease, color .2s ease;
}

.vmblog__promo:hover .vmblog__promo-btn {
    background: #fff;
    color: var(--vmb-brand);
}

.vmblog__promo img {
    display: block;
    width: 100%;
}

.vmblog__google-source {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 18px;
    border: 1px solid var(--vmb-brand);
    border-radius: 10px;
    background: #fff;
    color: var(--vmb-brand);
    font-family: "Inter", "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}

.vmblog__google-source:hover {
    background:var(--vmb-brand);
    border-color: var(--vmb-brand);
    color: #fff;
}

/* --- Related posts ------------------------------------------------------- */

.vmblog__related {
    padding: 0 0 60px;
}

.vmblog__related > h2 {
    margin: 0 0 26px;
    color: var(--vmb-brand);
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -.03em;
}

.vmblog__related-lead {
    position: relative;
    display: block;
    aspect-ratio: 817 / 430;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 15px;
    background: #f4f6f5;
}

.vmblog__related-lead img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.vmblog__related-lead-copy {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 26px 38px 30px;
    background: #0000004D;
    backdrop-filter: blur(54.9px);
    color: #fff;
}

.vmblog__related-lead-copy h3 {
    margin: 12px 0 0;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.35;
}

.vmblog__related-lead-copy p {
    margin: 8px 0 0;
    font-size: 16px;
    line-height: 1.4;
}

.vmblog__related-lead-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin: 16px 0 0;
    font-size: 15px;
}

.vmblog__related-lead-meta strong {
    font-weight: 700;
}

.vmblog__related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    /* max-width: 817px; */
}

/* --- Author banner ------------------------------------------------------- */

.vmblog__author-banner {
    position: relative;
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 34px;
    align-items: center;
    padding: 34px 40px;
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(101deg, #ff2a57 0%, #e01844 100%);
    color: #fff;
}

.vmblog__author-avatar {
    position: relative;
    width: 150px;
    height: 150px;
}

.vmblog__author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    background: rgba(255, 255, 255, .2);
}

/* Fallback disc with the author's initials when no avatar is configured. */
.vmblog__author-initials {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 14px;
    background: rgba(255, 255, 255, .18);
    color: #fff;
    font-size: 44px;
    font-weight: 700;
}

.vmblog__author-check {
    position: absolute;
    right: -6px;
    bottom: -6px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
}

.vmblog__author-check svg {
    width: 100%;
    height: 100%;
}

.vmblog__author-banner h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -.04em;
}

.vmblog__author-banner h2 a:hover {
    text-decoration: underline;
}

.vmblog__author-banner p {
    margin: 12px 0 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}

/* --- Share bar ----------------------------------------------------------- */

.vmblog__share {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin: 24px 0 0;
    padding: 20px 26px;
    border: 1px solid #ffe1e7;
    border-radius: 14px;
    background: #fff5f7;
}

.vmblog__share-label {
    margin: 0;
    color: #383838;
    font-family: "Inter", "Poppins", sans-serif;
    font-size: 17px;
}

.vmblog__share-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.vmblog__share-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: transform .2s ease;
}

.vmblog__share-link img {
    display: block;
    width: 40px;
    height: auto;
}

.vmblog__share-link:hover {
    transform: translateY(-2px);
}

.vmblog__share-link--reddit {
    width: 28px;
    height: 28px;
    background: #ff4500;
    border-radius: 7px;
}

.vmblog__copy {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    height: 40px;
    margin-left: auto;
    padding: 0 18px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    background: #fff;
    color: #aeaeae;
    font-family: "Inter", "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
}

.vmblog__copy:hover {
    border-color: var(--vmb-brand);
    color: var(--vmb-brand);
}

/* --- Author page --------------------------------------------------------- */

.vmblog__profile {
    display: grid;
    grid-template-columns: 178px minmax(0, 1fr);
    gap: 34px;
    align-items: center;
    margin: 46px 0 0;
    padding: 36px 44px;
    border-radius: 22px;
    background: linear-gradient(101deg, #ff2a57 0%, #e01844 100%);
    color: #fff;
}

.vmblog__profile-avatar {
    position: relative;
    width: 178px;
    height: 178px;
}

.vmblog__profile-avatar img,
.vmblog__profile-avatar .vmblog__author-initials {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.vmblog__profile h1 {
    margin: 0;
    font-size: 46px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.04em;
}

.vmblog__profile-role {
    margin: 10px 0 0;
    font-family: "Inter", "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 500;
}

.vmblog__profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.vmblog__profile-tags li {
    display: inline-flex;
    align-items: center;
    height: 36px;
    padding: 0 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .22);
    font-family: "Inter", "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 700;
}

.vmblog__profile-icons {
    display: flex;
    gap: 12px;
    margin: 20px 0 0;
}

.vmblog__profile-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .22);
    color: #fff;
    font-size: 15px;
    transition: background .2s ease, color .2s ease;
}

.vmblog__profile-icon img {
    display: block;
    width: 20px;
    height: auto;
}

.vmblog__profile-icon:hover {
    background: #fff;
    color: var(--vmb-brand);
}

.vmblog__profile-layout {
    display: grid;
    grid-template-columns: minmax(0, 817fr) 382px;
    gap: 41px;
    align-items: start;
    margin: 30px 0 0;
    padding-bottom: 80px;
}

.vmblog__profile-main {
    padding: 40px 46px 46px;
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--vmb-shadow);
}

.vmblog__profile-main h2 {
    margin: 0 0 18px;
    font-family: "Inter", "Poppins", sans-serif;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -.02em;
}

.vmblog__profile-main p {
    margin: 0 0 18px;
    color: #606060;
    font-family: "Inter", "Poppins", sans-serif;
    font-size: 19px;
    line-height: 1.45;
}

.vmblog__profile-main h2 + .vmblog__author-posts {
    margin-top: 0;
}

.vmblog__author-posts {
    margin: 44px 0 0;
}

.vmblog__author-post {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 22px;
    margin-bottom: 22px;
    padding: 22px;
    border: 1px solid var(--vmb-line);
    border-radius: 12px;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.vmblog__author-post:hover {
    border-color: #ffd9e1;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
}

.vmblog__author-post img {
    width: 88px;
    height: 88px;
    object-fit: cover;
    border-radius: 8px;
    background: #f4f6f5;
}

.vmblog__author-post h3 {
    margin: 0;
    font-size: 19px;
    font-weight: 500;
    line-height: 1.5;
}

.vmblog__author-post p {
    margin: 6px 0 0;
    color: var(--vmb-ink);
    font-family: "Inter", "Poppins", sans-serif;
    font-size: 13px;
    line-height: 1.5;
}

.vmblog__author-post-foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 16px 0 0;
}

.vmblog__tag {
    display: inline-flex;
    align-items: center;
    height: 30px;
    padding: 0 16px;
    border-radius: 15px;
    background: #f3f4f6;
    color: #575757;
    font-family: "Inter", "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 500;
}

.vmblog__author-post-date {
    margin-left: auto;
    color: var(--vmb-muted-2);
    font-family: "Inter", "Poppins", sans-serif;
    font-size: 14px;
}

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

.vmblog__connect h2 {
    margin: 0 0 16px;
    color: #606060;
    font-family: "Inter", "Poppins", sans-serif;
    font-size: 19px;
    font-weight: 600;
}

.vmblog__connect ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.vmblog__connect li + li {
    margin-top: 16px;
}

.vmblog__connect a {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--vmb-ink);
    font-size: 17px;
    word-break: break-word;
}

.vmblog__connect a:hover {
    color: var(--vmb-brand);
}

.vmblog__connect i {
    flex: 0 0 auto;
    color: var(--vmb-brand);
    font-size: 18px;
}

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

@media (max-width: 1199px) {
    .vmblog__post-layout,
    .vmblog__profile-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .vmblog__side {
        position: static;
    }

    .vmblog__post-hero h1 {
        font-size: 54px;
    }

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

@media (max-width: 991px) {
    .vmblog__profile {
        grid-template-columns: minmax(0, 1fr);
        justify-items: center;
        text-align: center;
    }

    .vmblog__profile-tags,
    .vmblog__profile-icons {
        justify-content: center;
    }

    .vmblog__author-banner {
        grid-template-columns: minmax(0, 1fr);
        justify-items: center;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .vmblog__post-hero {
        min-height: 300px;
        background-size: cover;
    }

    .vmblog__post-hero h1 {
        font-size: 34px;
    }

    .vmblog__meta-pill {
        height: 30px;
        padding: 0 14px;
        font-size: 14px;
    }

    .vmblog__body {
        font-size: 16px;
    }

    .vmblog__body h2 {
        font-size: 23px;
    }

    .vmblog__body h3 {
        font-size: 19px;
    }

    .vmblog__faq > h2,
    .vmblog__related > h2 {
        font-size: 26px;
    }

    .vmblog__faq-item summary {
        font-size: 16px;
    }

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

    .vmblog__profile {
        padding: 28px 22px;
    }

    .vmblog__profile h1 {
        font-size: 32px;
    }

    .vmblog__profile-main {
        padding: 26px 22px 30px;
    }

    .vmblog__profile-main h2 {
        font-size: 26px;
    }

    .vmblog__profile-main p {
        font-size: 16px;
    }

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

    .vmblog__author-post-date {
        margin-left: 0;
    }

    .vmblog__copy {
        margin-left: 0;
    }
}



span.vmblog__chip
 {
    background: #fff;
}


.vmblog__author-banner a {
    color: #fff !important;
}