/* ==========================================================================
   Griffin Quartz — blog layer (v2)
   Post layout (TOC | article | quote card), byline, author box, related
   posts, the blog index (search + category chips) and the author page.
   Loaded after site-v2.css; everything is scoped under body.v2site.
   ========================================================================== */

html body.v2site {
    --blog-sticky-top: 100px;
    --blog-col: 720px;
}

/* ---------- Shared: category tag ---------- */
html body.v2site .blog-tag {
    display: inline-block;
    align-self: flex-start;
    justify-self: start;
    padding: 4px 8px;
    border: 1px solid var(--v2-line);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.14em;
    line-height: 1.4;
    text-transform: uppercase;
    color: var(--v2-gray);
    background: transparent;
}

/* ---------- Post layout ---------- */
html body.v2site .blog-body.blog-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    row-gap: 48px;
    max-width: calc(var(--blog-col) + 48px);
    margin: 0 auto;
    padding: clamp(32px, 5vw, 64px) 24px clamp(56px, 7vw, 96px);
}
html body.v2site .blog-layout__main { min-width: 0; }
html body.v2site .blog-layout .blog-content { max-width: none; margin: 0; }
html body.v2site .blog-layout .blog-content > :first-child { margin-top: 0 !important; }
html body.v2site .blog-layout .blog-cta { margin: 64px 0 0; }

/* Tables: scroll inside the column */
html body.v2site .blog-content .blog-table-scroll {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 2rem 0;
}
html body.v2site .blog-content .blog-table-scroll > table {
    display: table;
    width: 100%;
    max-width: none;
    overflow: visible;
    margin: 0 !important;
}
html body.v2site .blog-content .blog-table-scroll > table.blog-table--wide { min-width: 560px; }
html body.v2site .blog-content .blog-table-scroll:focus-visible { outline-offset: 2px; }

@media (min-width: 1200px) {
    html body.v2site .blog-body.blog-layout {
        grid-template-columns: minmax(180px, 230px) minmax(0, var(--blog-col)) minmax(270px, 310px);
        column-gap: clamp(40px, 4vw, 72px);
        row-gap: 80px;
        justify-content: center;
        max-width: 1440px;
        padding-left: 32px;
        padding-right: 32px;
    }
    html body.v2site .blog-layout__toc { grid-column: 1; grid-row: 1 / span 2; }
    html body.v2site .blog-layout__main { grid-column: 2; grid-row: 1; }
    html body.v2site .blog-layout__cta { grid-column: 3; grid-row: 1 / span 2; }
    html body.v2site .blog-layout__related { grid-column: 2; grid-row: 2; }
}

/* ---------- Table of contents ---------- */
html body.v2site .blog-toc[hidden] { display: none; }
html body.v2site .blog-toc__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    list-style: none;
    cursor: pointer;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--v2-ink);
}
html body.v2site .blog-toc__summary::-webkit-details-marker { display: none; }
html body.v2site .blog-toc__summary span {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
html body.v2site .blog-toc__summary span::before {
    content: "";
    width: 24px;
    height: 1px;
    background: var(--v2-gold);
    flex: none;
}
html body.v2site .blog-toc__list,
html body.v2site .blog-toc__list ol {
    list-style: none;
    margin: 0;
    padding: 0;
}
html body.v2site .blog-toc__list a {
    display: block;
    padding: 7px 0 7px 16px;
    margin-left: -1px;
    border-left: 1px solid transparent;
    font-size: 13.5px;
    font-weight: 400;
    line-height: 1.45;
    color: var(--v2-gray);
    text-decoration: none;
    transition: color .2s ease, border-color .2s ease;
}
html body.v2site .blog-toc__sub a {
    padding-left: 30px;
    font-size: 12.5px;
    padding-top: 5px;
    padding-bottom: 5px;
}
html body.v2site .blog-toc__list a:hover { color: var(--v2-ink); }
html body.v2site .blog-toc__list a.is-active {
    color: var(--v2-ink);
    font-weight: 500;
    border-left-color: var(--v2-gold);
}

/* Tablet + mobile: a collapsible dropdown at the top of the article */
@media (max-width: 1199.98px) {
    html body.v2site .blog-toc {
        border-top: 1px solid var(--v2-line);
        border-bottom: 1px solid var(--v2-line);
    }
    html body.v2site .blog-toc__summary {
        min-height: 56px;
        padding: 0 2px;
    }
    html body.v2site .blog-toc__summary::after {
        content: "";
        width: 9px;
        height: 9px;
        margin-right: 4px;
        border-right: 1px solid var(--v2-ink);
        border-bottom: 1px solid var(--v2-ink);
        transform: translateY(-3px) rotate(45deg);
        transition: transform .25s ease;
    }
    html body.v2site .blog-toc__details[open] .blog-toc__summary::after { transform: translateY(2px) rotate(-135deg); }
    html body.v2site .blog-toc__list {
        border-left: 1px solid var(--v2-line-soft);
        margin: 4px 0 20px;
        max-height: 60vh;
        overflow-y: auto;
    }
    html body.v2site .blog-toc__list a { font-size: 14.5px; padding-top: 9px; padding-bottom: 9px; }
    html body.v2site .blog-toc__sub a { font-size: 13.5px; padding-top: 6px; padding-bottom: 6px; }
}

/* Desktop: sticky left column, always open */
@media (min-width: 1200px) {
    html body.v2site .blog-toc {
        position: sticky;
        top: var(--blog-sticky-top);
    }
    html body.v2site .blog-toc__summary {
        cursor: default;
        margin-bottom: 18px;
    }
    html body.v2site .blog-toc__list {
        border-left: 1px solid var(--v2-line-soft);
        max-height: calc(100vh - var(--blog-sticky-top) - 72px);
        overflow-y: auto;
        overscroll-behavior: contain;
        scrollbar-width: thin;
        scrollbar-color: var(--v2-line) transparent;
    }
}

/* ---------- Quote card ---------- */
html body.v2site .blog-quote {
    background: var(--v2-white);
    border: 1px solid var(--v2-line);
    padding: 28px 24px 24px;
}
@media (min-width: 1200px) {
    html body.v2site .blog-quote {
        position: sticky;
        top: var(--blog-sticky-top);
    }
}
html body.v2site .blog-quote__eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 14px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--v2-gray);
}
html body.v2site .blog-quote__eyebrow::before {
    content: "";
    width: 24px;
    height: 1px;
    background: var(--v2-gold);
    flex: none;
}
html body.v2site .blog-quote__title {
    margin: 0 0 8px;
    padding: 0;
    border: 0;
    font-size: 1.5rem;
    font-weight: 350 !important;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--v2-ink);
}
html body.v2site .blog-quote__lede {
    margin: 0 0 20px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--v2-gray);
}
html body.v2site .blog-quote__form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0;
    padding: 0;
    background: none;
}
html body.v2site .blog-quote__field label {
    display: block;
    margin: 0 0 6px;
    font-size: 11px !important;
    line-height: 1.3;
    color: var(--v2-gray) !important;
}
html body.v2site .blog-quote__field :is(input, textarea) {
    display: block;
    width: 100%;
    margin: 0;
    padding: 10px 12px;
    font-size: 16px !important;
    line-height: 1.4;
}
html body.v2site .blog-quote__field input { height: 44px; }
html body.v2site .blog-quote__field textarea { min-height: 84px; resize: vertical; }
html body.v2site .blog-quote__form .btn { margin-top: 6px; min-height: 48px; width: 100%; }
html body.v2site .blog-quote__contact {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--v2-line-soft);
}
html body.v2site .blog-quote__phone {
    font-size: 14px;
    font-weight: 500;
    color: var(--v2-ink) !important;
    text-decoration: underline;
    text-decoration-color: var(--v2-gold);
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}
html body.v2site .blog-quote__phone:hover { text-decoration-color: var(--v2-ink); }
html body.v2site .blog-quote__hours {
    margin: 6px 0 0;
    font-size: 12.5px;
    color: var(--v2-gray);
}

/* ---------- Byline (in the post hero) ---------- */
html body.v2site .blog-byline {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin: 22px 0 0;
    text-align: left;
}
html body.v2site .blog-byline__photo {
    width: 44px;
    height: 44px;
    flex: none;
    border-radius: 50%;
    object-fit: cover;
    object-position: 50% 18%;
    background: var(--v2-deep);
    border: 1px solid rgba(255, 255, 255, .35);
}
html body.v2site .blog-byline__text { display: flex; flex-direction: column; gap: 2px; }
html body.v2site .blog-byline__name {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--v2-white);
}
html body.v2site .blog-byline__name a {
    color: var(--v2-white) !important;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, .45);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}
html body.v2site .blog-byline__name a:hover { text-decoration-color: var(--v2-gold); }
html body.v2site .blog-byline__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0 8px;
    font-size: 12.5px;
    line-height: 1.5;
    color: var(--v2-on-dark);
}
html body.v2site .blog-byline__part { white-space: nowrap; }
html body.v2site .blog-hero .blog-share-buttons { margin-top: 22px; }

/* ---------- Author box ---------- */
html body.v2site .blog-authorbox {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
    margin-top: 64px;
    padding: 36px 0;
    border-top: 1px solid var(--v2-line);
    border-bottom: 1px solid var(--v2-line);
}
html body.v2site .blog-authorbox__photo img {
    display: block;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    object-position: 50% 18%;
    background: var(--v2-deep);
}
html body.v2site .blog-authorbox__eyebrow {
    margin: 0 0 8px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--v2-gray);
}
html body.v2site .blog-authorbox__name {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 1.5rem;
    font-weight: 400 !important;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
html body.v2site .blog-authorbox__name a { color: var(--v2-ink); text-decoration: none; }
html body.v2site .blog-authorbox__name a:hover { text-decoration: underline; text-decoration-color: var(--v2-gold); text-underline-offset: 4px; text-decoration-thickness: 1px; }
html body.v2site .blog-authorbox__role {
    margin: 6px 0 16px;
    font-size: 13px;
    color: var(--v2-gray);
}
html body.v2site .blog-authorbox__bio {
    margin: 0;
    font-size: 15.5px;
    line-height: 1.75;
    color: #3A3733;
}
html body.v2site .blog-authorbox__links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 28px;
    margin: 18px 0 0;
}
html body.v2site .blog-authorbox__links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--v2-ink);
    text-decoration: underline;
    text-decoration-color: var(--v2-gold);
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}
html body.v2site .blog-authorbox__links a:hover { text-decoration-color: var(--v2-ink); }
@media (max-width: 600px) {
    html body.v2site .blog-authorbox { grid-template-columns: 64px minmax(0, 1fr); gap: 18px; }
    html body.v2site .blog-authorbox__photo img { width: 64px; height: 64px; }
}

/* ---------- Related posts ---------- */
html body.v2site .blog-related-v2__eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 12px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--v2-gray);
}
html body.v2site .blog-related-v2__eyebrow::before {
    content: "";
    width: 24px;
    height: 1px;
    background: var(--v2-gold);
}
html body.v2site .blog-related-v2__title {
    margin: 0 0 28px;
    font-size: clamp(1.375rem, 2vw, 1.75rem);
    font-weight: 400 !important;
    letter-spacing: -0.02em;
    color: var(--v2-ink);
}
html body.v2site .blog-related-v2__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
html body.v2site .blog-related-v2__card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
    color: var(--v2-ink);
    text-decoration: none;
}
html body.v2site .blog-related-v2__card img {
    width: 100%;
    aspect-ratio: 3 / 2;
    height: auto;
    object-fit: cover;
    display: block;
    margin-bottom: 4px;
}
html body.v2site .blog-related-v2__name {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.45;
    color: var(--v2-ink);
}
html body.v2site .blog-related-v2__card:hover .blog-related-v2__name {
    text-decoration: underline;
    text-decoration-color: var(--v2-gold);
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}
@media (max-width: 700px) {
    html body.v2site .blog-related-v2__grid { grid-template-columns: minmax(0, 1fr); gap: 20px; }
    html body.v2site .blog-related-v2__card {
        display: grid;
        grid-template-columns: 112px minmax(0, 1fr);
        grid-template-rows: auto 1fr;
        column-gap: 16px;
        row-gap: 8px;
        align-items: start;
    }
    html body.v2site .blog-related-v2__card img { grid-row: 1 / span 2; margin: 0; aspect-ratio: 1 / 1; }
    html body.v2site .blog-related-v2__name { font-size: 14.5px; }
}

/* ==========================================================================
   Blog index (/blog/)
   ========================================================================== */
html body.v2site .blog-hub-head {
    padding: clamp(56px, 8vw, 112px) 0 clamp(32px, 4vw, 48px);
    background: var(--v2-white);
}
html body.v2site .blog-hub-head .v2-display { margin: 0; }
html body.v2site .blog-hub-head .v2-lede { margin-top: 20px; }
html body.v2site .blog-hub {
    padding: 0 0 clamp(64px, 8vw, 120px);
    background: var(--v2-white);
}
html body.v2site .blog-tools {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    padding: 28px 0 32px;
    border-top: 1px solid var(--v2-line);
}
html body.v2site .blog-search label {
    display: block;
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--v2-gray);
}
html body.v2site .blog-search__field { position: relative; max-width: 520px; }
html body.v2site .blog-search__field svg {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--v2-gray);
    pointer-events: none;
}
html body.v2site .blog-search input {
    display: block;
    width: 100%;
    height: 48px;
    padding: 0 8px 0 30px;
    font-family: inherit;
    font-size: 17px;
    color: var(--v2-ink);
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--v2-line);
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
}
html body.v2site .blog-search input::placeholder { color: #8A847D; }
html body.v2site .blog-search input:focus { outline: none; border-bottom-color: var(--v2-ink); box-shadow: 0 1px 0 0 var(--v2-ink); }
html body.v2site .blog-search input::-webkit-search-cancel-button { cursor: pointer; }
html body.v2site .blog-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}
html body.v2site .blog-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid var(--v2-line);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--v2-ink);
    text-decoration: none;
    background: transparent;
    transition: border-color .2s ease, background-color .2s ease, color .2s ease;
}
html body.v2site .blog-chip__count { color: var(--v2-gray); font-weight: 400; }
html body.v2site .blog-chip:hover { border-color: var(--v2-ink); }
html body.v2site .blog-chip[aria-current="true"] {
    background: var(--v2-ink);
    border-color: var(--v2-ink);
    color: var(--v2-white);
}
html body.v2site .blog-chip[aria-current="true"] .blog-chip__count { color: var(--v2-on-dark); }
html body.v2site .blog-results {
    min-height: 1.5em;
    margin: 0 0 24px;
    font-size: 13px;
    color: var(--v2-gray);
}
html body.v2site .blog-index-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 48px 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}
html body.v2site .blog-index-grid > li[hidden] { display: none; }
html body.v2site .blog-index-card {
    display: flex !important;
    flex-direction: column;
    height: 100%;
    overflow: visible !important;
    background: transparent !important;
    border: 0 !important;
    color: var(--v2-ink);
    text-decoration: none;
}
html body.v2site .blog-index-card__media { overflow: hidden; background: var(--v2-paper); }
html body.v2site .blog-index-card img {
    display: block;
    width: 100%;
    height: auto !important;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    transition: transform .6s ease;
}
html body.v2site .blog-index-card:hover img { transform: scale(1.03); }
html body.v2site .blog-index-card-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px 0 0 !important;
}
html body.v2site .blog-index-card h2 {
    margin: 0 !important;
    font-size: 1.1875rem !important;
    font-weight: 400 !important;
    line-height: 1.35 !important;
    letter-spacing: -0.01em;
    color: var(--v2-ink) !important;
}
html body.v2site .blog-index-card:hover h2 {
    text-decoration: underline;
    text-decoration-color: var(--v2-gold);
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
}
html body.v2site .blog-index-card p {
    margin: 0 !important;
    font-size: 14.5px !important;
    line-height: 1.65 !important;
    color: var(--v2-gray) !important;
}
html body.v2site .blog-index-card .blog-index-card__meta {
    margin-top: auto;
    padding-top: 4px;
    font-size: 12px !important;
    color: var(--v2-gray) !important;
}
html body.v2site .blog-empty {
    padding: 48px 0;
    border-top: 1px solid var(--v2-line-soft);
    color: var(--v2-gray);
}
html body.v2site .blog-empty[hidden] { display: none; }
html body.v2site .blog-empty a { color: var(--v2-ink); text-decoration: underline; text-decoration-color: var(--v2-gold); text-underline-offset: 3px; }
@media (max-width: 1000px) {
    html body.v2site .blog-index-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
    html body.v2site .blog-index-grid { grid-template-columns: minmax(0, 1fr); gap: 40px; }
    html body.v2site .blog-chips {
        flex-wrap: nowrap;
        overflow-x: auto;
        margin: 0 calc(-1 * var(--v2-gutter, 24px));
        padding: 0 var(--v2-gutter, 24px) 4px;
        scrollbar-width: none;
    }
    html body.v2site .blog-chips::-webkit-scrollbar { display: none; }
    html body.v2site .blog-chip { white-space: nowrap; }
}

/* ==========================================================================
   Author page (/blog/author/esley-fleitas)
   ========================================================================== */
html body.v2site .author-hero {
    background: var(--v2-deep);
    color: var(--v2-white);
    padding: clamp(56px, 8vw, 112px) 0;
}
html body.v2site .author-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
    gap: clamp(40px, 7vw, 112px);
    align-items: center;
}
html body.v2site .author-hero__media img {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center top;
    background: var(--v2-black);
}
html body.v2site .author-hero .v2-eyebrow { color: var(--v2-on-dark-2); }
html body.v2site .author-hero .v2-display { color: var(--v2-white); margin: 0; }
html body.v2site .author-hero__role {
    margin: 14px 0 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--v2-line-dark);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--v2-on-dark-2);
}
html body.v2site .author-hero__bio p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--v2-on-dark);
    max-width: 34em;
}
html body.v2site .author-hero__bio p + p { margin-top: 16px; }
html body.v2site .author-hero .v2-actions { margin-top: 32px; }
html body.v2site .author-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 28px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
    font-size: 13px;
    color: var(--v2-on-dark);
}
html body.v2site .author-facts li { display: flex; align-items: center; gap: 10px; }
html body.v2site .author-facts li::before { content: ""; width: 16px; height: 1px; background: var(--v2-gold); }
html body.v2site .author-posts__group + .author-posts__group { margin-top: 56px; }
html body.v2site .author-posts__cat {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin: 0 0 8px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--v2-ink);
}
html body.v2site .author-posts__cat h3 {
    margin: 0;
    font-size: 1.25rem !important;
    font-weight: 400 !important;
    letter-spacing: -0.01em;
    color: var(--v2-ink);
}
html body.v2site .author-posts__cat a {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--v2-gray);
    text-decoration: underline;
    text-decoration-color: var(--v2-gold);
    text-underline-offset: 4px;
    white-space: nowrap;
}
html body.v2site .author-posts__list { list-style: none; margin: 0; padding: 0; }
html body.v2site .author-post {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--v2-line-soft);
    color: var(--v2-ink);
    text-decoration: none;
}
html body.v2site .author-post img { width: 120px; aspect-ratio: 3 / 2; height: auto; object-fit: cover; display: block; }
html body.v2site .author-post__title { display: block; font-size: 17px; font-weight: 500; line-height: 1.4; }
html body.v2site .author-post__excerpt { display: block; margin-top: 6px; font-size: 14.5px; line-height: 1.6; color: var(--v2-gray); }
html body.v2site .author-post__date { display: block; margin-top: 8px; font-size: 12px; color: var(--v2-gray); }
html body.v2site .author-post:hover .author-post__title {
    text-decoration: underline;
    text-decoration-color: var(--v2-gold);
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}
@media (max-width: 800px) {
    html body.v2site .author-hero__grid { grid-template-columns: minmax(0, 1fr); }
    html body.v2site .author-hero__media img { max-width: 280px; }
}
@media (max-width: 560px) {
    html body.v2site .author-post { grid-template-columns: 88px minmax(0, 1fr); gap: 16px; align-items: start; }
    html body.v2site .author-post img { width: 88px; aspect-ratio: 1 / 1; }
    html body.v2site .author-post__excerpt { display: none; }
}

/* ==========================================================================
   Resource Center: breadcrumb, guide-series nav, pillar pages, CTA callout
   ========================================================================== */
html body.v2site .blog-breadcrumb nav { flex-wrap: wrap; row-gap: 2px; }

/* Series nav (top of posts) and pillar chip directories */
html body.v2site .blog-series {
    margin: 0 0 40px;
    padding: 0 0 28px;
    border-bottom: 1px solid var(--v2-line);
}
html body.v2site .blog-series__eyebrow,
html body.v2site .blog-series__label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 12px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--v2-gray);
}
html body.v2site .blog-series__eyebrow::before {
    content: "";
    width: 24px;
    height: 1px;
    background: var(--v2-gold);
}
html body.v2site .blog-series__title {
    margin: 0 0 20px !important;
    font-size: clamp(1.25rem, 2vw, 1.5rem) !important;
    font-weight: 400 !important;
    letter-spacing: -0.02em;
    line-height: 1.3 !important;
    color: var(--v2-ink) !important;
}
html body.v2site .blog-series__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}
html body.v2site .blog-series__chips li { margin: 0; padding: 0; }
html body.v2site .blog-series__chips li::before { content: none; }
html body.v2site .blog-series .blog-chip { min-height: 36px; letter-spacing: 0.02em; text-align: left; line-height: 1.35; padding-top: 7px; padding-bottom: 7px; }
html body.v2site .blog-chip--soon {
    color: var(--v2-gray);
    border-style: dashed;
    cursor: default;
}
html body.v2site .blog-chip--soon:hover { border-color: var(--v2-line); }
html body.v2site .blog-chip__soon {
    font-size: 9.5px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #8A847D;
    white-space: nowrap;
}
html body.v2site .blog-series__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--v2-ink);
    text-decoration: underline;
    text-decoration-color: var(--v2-gold);
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
}
html body.v2site .blog-series__back:hover { text-decoration-color: var(--v2-ink); }

/* Pillar pages without a post of their own */
html body.v2site .blog-pillar-head .v2-lede { max-width: 760px; }
html body.v2site .blog-pillar-head__text {
    max-width: 760px;
    margin: 16px 0 0;
    font-size: 16px;
    line-height: 1.75;
    color: var(--v2-gray);
}
html body.v2site .blog-pillar .blog-series--directory {
    margin: 0 0 48px;
    padding: 32px 0;
    border-top: 1px solid var(--v2-line);
}
html body.v2site .blog-pillar__grid { margin-bottom: clamp(48px, 6vw, 72px) !important; }
html body.v2site .blog-index-card h3 {
    margin: 0 !important;
    font-size: 1.1875rem !important;
    font-weight: 400 !important;
    line-height: 1.35 !important;
    letter-spacing: -0.01em;
    color: var(--v2-ink) !important;
}
html body.v2site .blog-index-card:hover h3 {
    text-decoration: underline;
    text-decoration-color: var(--v2-gold);
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
}
html body.v2site .blog-series--pillars { margin: clamp(48px, 6vw, 72px) 0 0; padding: 32px 0 0; border-top: 1px solid var(--v2-line); border-bottom: 0; }

/* Category CTA callout */
html body.v2site .blog-ctacallout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px 48px;
    align-items: center;
    padding: clamp(28px, 4vw, 40px);
    background: var(--v2-paper);
    border-left: 2px solid var(--v2-gold);
}
html body.v2site .blog-ctacallout__eyebrow {
    margin: 0 0 8px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--v2-gray);
}
html body.v2site .blog-ctacallout__title {
    margin: 0 0 8px !important;
    font-size: clamp(1.25rem, 2vw, 1.5rem) !important;
    font-weight: 400 !important;
    letter-spacing: -0.02em;
    color: var(--v2-ink) !important;
}
html body.v2site .blog-ctacallout__text { margin: 0; font-size: 15px; line-height: 1.65; color: var(--v2-gray); max-width: 560px; }
html body.v2site .blog-ctacallout__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 24px; }
@media (max-width: 800px) {
    html body.v2site .blog-ctacallout { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 640px) {
    /* Directory chips wrap (they are a list to read, not a filter row) */
    html body.v2site .blog-series .blog-chip { white-space: normal; }
}
html body.v2site .blog-series__chips + .blog-series__label { margin-top: 18px; }
