/**
 * Vigil public page — Anthropic-inspired UI on an xAI-like layout.
 */

.vigil-page {
    --vg-ink: #1a1a19;
    --vg-muted: #6f6b64;
    --vg-soft: #f5f2ec;
    --vg-soft-2: #ebe7df;
    --vg-panel: rgba(250, 248, 245, 0.78);
    --vg-border: rgba(26, 26, 25, 0.1);
    --vg-accent: #c96442;
    --vg-ok: #3d8b6e;
    --vg-soon: #b7791f;
    background: #faf8f5;
    color: var(--vg-ink);
}

.vigil-page .landing-header.is-scrolled .landing-header-inner {
    background: linear-gradient(135deg, rgba(250, 248, 245, 0.72), rgba(245, 242, 236, 0.45));
}

.vg-hero {
    padding: clamp(48px, 8vw, 96px) 0 clamp(40px, 6vw, 72px);
    text-align: center;
}

.vg-hero-meta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 22px;
    font-size: 13px;
    color: var(--vg-muted);
}

.vg-hero-meta img {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #0a0a0a;
}

.vg-sep {
    width: 1px;
    height: 12px;
    background: rgba(26, 26, 25, 0.18);
}

.vg-hero-title {
    margin: 0 auto 18px;
    max-width: 14ch;
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    line-height: 1.05;
    letter-spacing: -0.05em;
    font-weight: 750;
}

.vg-hero-title span {
    color: #8a867e;
}

.vg-hero-lead {
    margin: 0 auto 28px;
    max-width: 42ch;
    font-size: 17px;
    line-height: 1.55;
    color: var(--vg-muted);
}

.vg-hero-cta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.vg-hero-cta--center {
    margin-top: 28px;
}

.vg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 650;
    letter-spacing: -0.01em;
    border: 1px solid transparent;
    transition: transform 0.15s ease, filter 0.15s ease, background 0.15s ease;
}

.vg-btn--primary {
    background: #141413;
    color: #faf8f5;
}

.vg-btn--secondary {
    background: rgba(255, 255, 255, 0.55);
    color: var(--vg-ink);
    border-color: var(--vg-border);
}

.vg-btn--sm {
    min-height: 38px;
    padding: 0 16px;
    font-size: 13px;
}

.vg-btn:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
}

.vg-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 9px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 650;
    letter-spacing: 0.02em;
}

.vg-badge--available {
    background: rgba(61, 139, 110, 0.14);
    color: var(--vg-ok);
}

.vg-badge--soon {
    background: rgba(183, 121, 31, 0.16);
    color: var(--vg-soon);
}

/* Feature scroll */
.vg-features {
    padding: clamp(48px, 8vw, 96px) 0 clamp(64px, 10vw, 120px);
    border-top: 1px solid var(--vg-border);
}

.vg-features-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(28px, 5vw, 56px);
    align-items: start;
}

.vg-features-rail {
    display: flex;
    flex-direction: column;
    gap: clamp(56px, 14vh, 140px);
}

.vg-feature-block {
    padding: clamp(32px, 6vh, 72px) 8px clamp(48px, 10vh, 96px) 0;
    min-height: min(72vh, 640px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0.38;
    transition: opacity 0.35s ease;
    border-bottom: 1px solid transparent;
}

.vg-feature-block.is-active {
    opacity: 1;
}

.vg-feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--vg-ink);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--vg-border);
    margin-bottom: 14px;
}

.vg-feature-block h2 {
    margin: 0 0 10px;
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    letter-spacing: -0.04em;
    font-weight: 750;
}

.vg-feature-block > p {
    margin: 0 0 16px;
    color: var(--vg-muted);
    line-height: 1.55;
    max-width: 38ch;
}

.vg-check-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.vg-check-list li {
    position: relative;
    padding-left: 26px;
    color: var(--vg-ink);
    font-size: 14px;
    line-height: 1.45;
}

.vg-check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.35em;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1.5px solid rgba(26, 26, 25, 0.28);
    background:
        linear-gradient(#faf8f5, #faf8f5) padding-box,
        linear-gradient(135deg, transparent 42%, var(--vg-ink) 42%, var(--vg-ink) 58%, transparent 58%) border-box;
    background-clip: padding-box, border-box;
    transform: rotate(40deg);
    opacity: 0.7;
}

.vg-features-stage-wrap {
    position: sticky;
    top: max(96px, calc(50vh - 230px));
    align-self: start;
    height: fit-content;
    width: 100%;
    max-width: 560px;
    margin-left: auto;
    z-index: 2;
}

.vg-features-stage {
    border-radius: 22px;
    background: var(--vg-soft);
    border: 1px solid var(--vg-border);
    min-height: 420px;
    padding: 22px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.65),
        0 18px 40px rgba(26, 26, 25, 0.06);
}

.vg-demo-panel {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 380px;
}

.vg-demo-panel[hidden] {
    display: none !important;
}

.vg-demo-thread {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    min-height: 0;
}

.vg-demo-bubble {
    max-width: 92%;
    padding: 12px 14px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.45;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.vg-demo-bubble.is-enter,
.vg-demo-bubble.is-shown.is-enter {
    opacity: 1;
    transform: translateY(0);
}

.vg-demo-bubble[hidden] {
    display: none !important;
}

.vg-demo-bubble--user {
    align-self: flex-end;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--vg-border);
    color: var(--vg-ink);
}

.vg-demo-bubble--ai {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid var(--vg-border);
}

.vg-demo-bubble--followup {
    align-self: flex-start;
    max-width: 88%;
    background: rgba(201, 100, 66, 0.08);
    border: 1px solid rgba(201, 100, 66, 0.22);
    color: var(--vg-ink);
    font-size: 13.5px;
}

.vg-demo-bubble--ai strong {
    display: block;
    margin-bottom: 6px;
}

.vg-demo-bubble--ai ul {
    margin: 0;
    padding-left: 18px;
}

.vg-demo-bubble--ai p {
    margin: 0;
    color: var(--vg-muted);
}

.vg-demo-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    font-size: 12px;
    color: var(--vg-muted);
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.vg-demo-meta.is-shown {
    opacity: 1;
    transform: translateY(0);
}

.vg-demo-meta[hidden] {
    display: none !important;
}

.vg-demo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--vg-accent);
    box-shadow: 0 0 0 3px rgba(201, 100, 66, 0.18);
    flex-shrink: 0;
}

.vg-demo-meta.is-thinking .vg-demo-dot {
    animation: vg-demo-pulse 0.9s ease-in-out infinite;
}

.vg-demo-meta.is-thinking [data-demo="meta-text"] {
    background: linear-gradient(90deg, var(--vg-muted) 0%, var(--vg-ink) 45%, var(--vg-muted) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: vg-demo-shimmer 1.2s linear infinite;
}

@keyframes vg-demo-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.35); opacity: 0.7; }
}

@keyframes vg-demo-shimmer {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

.vg-demo-composer {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--vg-border);
    backdrop-filter: blur(10px);
}

.vg-demo-composer-field {
    position: relative;
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    min-height: 1.35em;
    font-size: 13px;
    color: var(--vg-ink);
}

.vg-demo-placeholder {
    color: var(--vg-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vg-demo-placeholder[hidden] {
    display: none !important;
}

.vg-demo-typed {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vg-demo-caret {
    display: inline-block;
    width: 1.5px;
    height: 1em;
    margin-left: 1px;
    background: var(--vg-ink);
    animation: vg-demo-caret 0.7s steps(1) infinite;
    flex-shrink: 0;
}

.vg-demo-caret[hidden] {
    display: none !important;
}

@keyframes vg-demo-caret {
    50% { opacity: 0; }
}

.vg-demo-plus,
.vg-demo-send {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 26, 25, 0.06);
    font-size: 14px;
    flex-shrink: 0;
}

.vg-demo-send {
    background: #141413;
    color: #faf8f5;
    margin-left: auto;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.vg-demo-send.is-pulse {
    transform: scale(1.08);
    box-shadow: 0 0 0 4px rgba(201, 100, 66, 0.25);
    background: var(--vg-accent);
}

.vg-demo-send.is-sent {
    transform: scale(0.92);
}

.vg-demo-model {
    font-size: 12px;
    color: var(--vg-ink);
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(26, 26, 25, 0.05);
    flex-shrink: 0;
}

/* Report PDF card */
.vg-demo-report-card {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--vg-border);
}

.vg-demo-pdf {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    width: 44px;
    height: 48px;
    border-radius: 8px;
    background: linear-gradient(160deg, #f3ece6 0%, #e8ddd4 100%);
    color: #9a3412;
    flex-shrink: 0;
}

.vg-demo-pdf em {
    font-style: normal;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.vg-demo-report-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.vg-demo-report-title {
    font-size: 13px;
    font-weight: 650;
    color: var(--vg-ink);
}

.vg-demo-report-meta {
    font-size: 12px;
    color: var(--vg-muted);
}

/* Priority-coded alerts */
.vg-demo-alerts {
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.vg-demo-alert {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.35;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--vg-border);
}

.vg-demo-prio {
    flex-shrink: 0;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 999px;
    line-height: 1.4;
}

.vg-demo-alert--critical {
    border-color: rgba(185, 28, 28, 0.28);
    background: rgba(254, 226, 226, 0.55);
}

.vg-demo-alert--critical .vg-demo-prio {
    color: #991b1b;
    background: rgba(185, 28, 28, 0.12);
}

.vg-demo-alert--high {
    border-color: rgba(194, 65, 12, 0.28);
    background: rgba(255, 237, 213, 0.55);
}

.vg-demo-alert--high .vg-demo-prio {
    color: #9a3412;
    background: rgba(194, 65, 12, 0.12);
}

.vg-demo-alert--medium {
    border-color: rgba(161, 98, 7, 0.28);
    background: rgba(254, 249, 195, 0.45);
}

.vg-demo-alert--medium .vg-demo-prio {
    color: #854d0e;
    background: rgba(161, 98, 7, 0.12);
}

@media (prefers-reduced-motion: reduce) {
    .vg-demo-bubble,
    .vg-demo-meta {
        transition: none;
        opacity: 1;
        transform: none;
    }

    .vg-demo-meta.is-thinking .vg-demo-dot,
    .vg-demo-meta.is-thinking [data-demo="meta-text"],
    .vg-demo-caret {
        animation: none;
    }
}

/* Tools */
.vg-more {
    padding: clamp(48px, 8vw, 88px) 0;
    border-top: 1px solid var(--vg-border);
}

.vg-section-title {
    margin: 0 0 10px;
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    letter-spacing: -0.04em;
    font-weight: 750;
}

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

.vg-section-lead {
    margin: 0 0 36px;
    color: var(--vg-muted);
    font-size: 16px;
    line-height: 1.5;
    max-width: 46ch;
}

.vg-section-lead--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.vg-tools-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 24px;
}

.vg-tool {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 12px;
    text-align: left;
    background: transparent;
    border: none;
    padding: 8px;
    border-radius: 14px;
    cursor: pointer;
    color: inherit;
    transition: background 0.15s ease;
}

.vg-tool:hover {
    background: rgba(255, 255, 255, 0.55);
}

.vg-tool-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--vg-border);
    color: var(--vg-ink);
}

.vg-tool-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.vg-tool-copy strong {
    font-size: 15px;
    letter-spacing: -0.02em;
}

.vg-tool-copy em {
    font-style: normal;
    font-size: 13px;
    line-height: 1.4;
    color: var(--vg-muted);
}

/* Models */
.vg-models {
    padding: clamp(48px, 8vw, 88px) 0;
    border-top: 1px solid var(--vg-border);
}

.vg-models-table-wrap {
    background: var(--vg-soft);
    border-radius: 22px;
    border: 1px solid var(--vg-border);
    padding: clamp(16px, 3vw, 28px);
    overflow-x: auto;
}

.vg-models-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px;
}

.vg-models-table th {
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    color: var(--vg-muted);
    padding: 8px 12px 16px;
}

.vg-models-table td {
    padding: 16px 12px;
    border-top: 1px solid rgba(26, 26, 25, 0.08);
    vertical-align: middle;
}

.vg-models-table tr.is-featured td {
    background: rgba(255, 255, 255, 0.35);
}

.vg-models-table strong {
    display: block;
    letter-spacing: -0.02em;
}

.vg-model-note {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: var(--vg-muted);
}

.vg-bars {
    display: inline-flex;
    gap: 3px;
    align-items: flex-end;
    height: 18px;
}

.vg-bars i {
    width: 4px;
    height: 100%;
    border-radius: 2px;
    background: rgba(26, 26, 25, 0.14);
}

.vg-bars[data-level="1"] i:nth-child(-n+1),
.vg-bars[data-level="2"] i:nth-child(-n+2),
.vg-bars[data-level="3"] i:nth-child(-n+3),
.vg-bars[data-level="4"] i:nth-child(-n+4),
.vg-bars[data-level="5"] i:nth-child(-n+5) {
    background: #141413;
}

.vg-bars--muted i {
    background: rgba(26, 26, 25, 0.1) !important;
}

.vg-models-footnote {
    margin: 14px 0 0;
    text-align: center;
    font-size: 12px;
    color: var(--vg-muted);
}

/* Get started */
.vg-start {
    padding: clamp(48px, 8vw, 96px) 0;
    border-top: 1px solid var(--vg-border);
}

.vg-start-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    max-width: 960px;
    margin: 0 auto;
}

.vg-start-card {
    background: var(--vg-soft);
    border-radius: 18px;
    padding: 22px;
    border: 1px solid transparent;
}

.vg-start-n {
    display: block;
    margin-bottom: 14px;
    font-size: 12px;
    color: rgba(26, 26, 25, 0.4);
    letter-spacing: 0.06em;
}

.vg-start-card h3 {
    margin: 0 0 8px;
    font-size: 1.1rem;
    letter-spacing: -0.03em;
}

.vg-start-card p {
    margin: 0;
    color: var(--vg-muted);
    font-size: 14px;
    line-height: 1.5;
}

/* Tool modal */
.vg-tool-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: 20px;
}

.vg-tool-modal[hidden] {
    display: none !important;
}

.vg-tool-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 25, 0.28);
    backdrop-filter: blur(4px);
}

.vg-tool-dialog {
    position: relative;
    z-index: 1;
    width: min(420px, 100%);
    padding: 24px;
    border-radius: 22px;
    background: rgba(250, 248, 245, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow:
        0 24px 60px rgba(26, 26, 25, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(22px) saturate(1.2);
    -webkit-backdrop-filter: blur(22px) saturate(1.2);
}

.vg-tool-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    border: 1px solid var(--vg-border);
    background: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
}

.vg-tool-kicker {
    margin: 0 0 6px;
    font-size: 12px;
    color: var(--vg-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.vg-tool-dialog h3 {
    margin: 0 0 10px;
    font-size: 1.35rem;
    letter-spacing: -0.03em;
}

.vg-tool-dialog p {
    margin: 0 0 18px;
    color: var(--vg-muted);
    line-height: 1.5;
}

body.vg-modal-open {
    overflow: hidden;
}

@media (max-width: 960px) {
    .vg-features-layout {
        grid-template-columns: 1fr;
    }

    .vg-features-rail {
        gap: 28px;
    }

    .vg-features-stage-wrap {
        position: relative;
        top: 0;
        order: -1;
        max-width: none;
        margin-left: 0;
    }

    .vg-feature-block {
        opacity: 1;
        min-height: 0;
        padding: 24px 0;
        justify-content: flex-start;
    }

    .vg-tools-grid {
        grid-template-columns: 1fr;
    }

    .vg-start-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
}

@media (max-width: 720px) {
    .vg-hero-title {
        max-width: none;
    }
}

/* From the blog (Vigil landing) */
.vg-faq {
    padding: clamp(48px, 7vw, 80px) 0;
    border-top: 1px solid var(--vg-border);
}

.vg-faq .vg-section-lead {
    margin-bottom: 28px;
    max-width: 52ch;
}

.vg-faq-list {
    display: grid;
    gap: 10px;
    max-width: 720px;
}

.vg-faq-item {
    border: 1px solid var(--vg-border);
    border-radius: 12px;
    background: rgba(250, 248, 245, 0.88);
    padding: 0 16px;
}

.vg-faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 14px 0;
    font-weight: 650;
    font-size: 15px;
    letter-spacing: -0.01em;
}

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

.vg-faq-item p {
    margin: 0 0 14px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--vg-muted);
}

.vg-blog-section {
    padding: clamp(48px, 7vw, 80px) 0 clamp(56px, 8vw, 96px);
    border-top: 1px solid var(--vg-border);
    background: linear-gradient(180deg, rgba(245, 242, 236, 0.65) 0%, transparent 48%);
}

.vg-blog-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.vg-blog-head .vg-section-lead {
    margin: 10px 0 0;
    max-width: 46ch;
}

.vg-blog-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(26, 26, 25, 0.14);
    background: rgba(250, 248, 245, 0.9);
    color: var(--vg-ink);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.vg-blog-pill:hover {
    background: #fff;
    border-color: rgba(201, 100, 66, 0.45);
    color: var(--vg-accent);
}

.vg-blog-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 22px;
    grid-template-columns: 1fr;
}

@media (min-width: 720px) {
    .vg-blog-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.vg-blog-card {
    display: flex;
    flex-direction: column;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--vg-border);
    background: rgba(250, 248, 245, 0.88);
}

.vg-blog-card-media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #1a1a19;
}

.vg-blog-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vg-blog-card-copy {
    padding: 16px 16px 18px;
}

.vg-blog-meta {
    margin: 0 0 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12px;
    color: var(--vg-muted);
}

.vg-blog-card-title {
    margin: 0 0 8px;
    font-size: 1.05rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.vg-blog-card-title a {
    color: inherit;
    text-decoration: none;
}

.vg-blog-card-title a:hover {
    color: var(--vg-accent);
}

.vg-blog-card-excerpt {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--vg-muted);
}
