/* ═══════════════════════════════════════════════════
   SINGLE BLOG POST  (single.php)
   Mobile-first. No author, no comments.
   ═══════════════════════════════════════════════════ */

/* ── HERO ── */
.vsp-hero {
    background: var(--victor-bg);
    padding: var(--victor-space-3xl) 0 var(--victor-space-2xl);
    border-bottom: 1px solid var(--victor-border-light);
    text-align: center;
}
.vsp-hero__cats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--victor-space-sm);
    max-width: 840px;
    margin: 0 auto var(--victor-space-md);
}
.vsp-hero__cat {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.9rem;
    background: var(--victor-accent);
    color: var(--victor-text-on-yellow);
    border-radius: 0.75rem;
    font-size: var(--victor-fs-xs);
    font-weight: var(--victor-fw-bold);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color var(--victor-transition);
}
.vsp-hero__cat:hover,
.vsp-hero__cat:focus-visible {
    background: var(--victor-accent-dark);
}
.vsp-hero__title {
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: var(--victor-fw-black);
    color: var(--victor-primary);
    line-height: 1.15;
    margin: 0 auto var(--victor-space-md);
    max-width: 840px;
}
.vsp-hero__date {
    display: block;
    font-size: var(--victor-fs-sm);
    font-weight: var(--victor-fw-bold);
    color: var(--victor-text-muted);
}

/* ── FEATURED IMAGE ── */
.vsp-thumb {
    padding: var(--victor-space-xl) 0 0;
}
.vsp-thumb img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
    display: block;
    border-radius: var(--victor-radius-lg);
}

/* ── BODY PROSE ── */
.vsp-body {
    padding: var(--victor-space-3xl) 0 var(--victor-space-4xl);
}
.vsp-body__prose {
    font-size: var(--victor-fs-md);
    color: var(--victor-text-light);
    line-height: var(--victor-lh-relaxed);
}
.vsp-body__prose > * + * {
    margin-top: var(--victor-space-lg);
}
.vsp-body__prose h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: var(--victor-fw-black);
    color: var(--victor-primary);
    line-height: 1.2;
    margin: 0;
}
.vsp-body__prose h3 {
    font-size: var(--victor-fs-lg);
    font-weight: var(--victor-fw-black);
    color: var(--victor-primary);
    line-height: 1.25;
    margin: 0;
}
.vsp-body__prose a {
    color: var(--victor-primary);
    font-weight: var(--victor-fw-bold);
}
.vsp-body__prose a:hover,
.vsp-body__prose a:focus-visible {
    text-decoration: underline;
}
.vsp-body__prose ul,
.vsp-body__prose ol {
    padding-left: 1.5rem;
    margin: 0;
}
.vsp-body__prose li + li {
    margin-top: var(--victor-space-xs);
}
.vsp-body__prose blockquote {
    border-left: 4px solid var(--victor-accent);
    padding: var(--victor-space-md) var(--victor-space-xl);
    background: var(--victor-bg-alt);
    border-radius: 0 var(--victor-radius-md) var(--victor-radius-md) 0;
    margin: 0;
}
.vsp-body__prose blockquote p {
    font-size: var(--victor-fs-lg);
    font-weight: var(--victor-fw-bold);
    color: var(--victor-primary);
}
.vsp-body__prose img {
    max-width: 100%;
    height: auto;
    border-radius: var(--victor-radius-md);
}

/* ── RECENT POSTS ── */
.vsp-recent {
    background: var(--victor-bg-alt);
    padding: var(--victor-space-3xl) 0 var(--victor-space-4xl);
    border-top: 1px solid var(--victor-border-light);
}
.vsp-recent__heading {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: var(--victor-fw-black);
    color: var(--victor-primary);
    margin: 0 0 var(--victor-space-2xl);
}
.vsp-recent__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--victor-space-lg);
}
.vsp-recent-card {
    background: #fff;
    border-radius: var(--victor-radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow var(--victor-transition);
}
.vsp-recent-card:hover,
.vsp-recent-card:focus-within {
    box-shadow: var(--victor-shadow-md);
}
.vsp-recent-card__img {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.vsp-recent-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.vsp-recent-card:hover .vsp-recent-card__img img {
    transform: scale(1.04);
}
.vsp-recent-card__body {
    padding: var(--victor-space-lg);
    display: flex;
    flex-direction: column;
    flex: 1;
}
.vsp-recent-card__date {
    display: block;
    font-size: var(--victor-fs-xs);
    font-weight: var(--victor-fw-bold);
    color: var(--victor-text-muted);
    letter-spacing: 0.04em;
    margin-bottom: var(--victor-space-xs);
}
.vsp-recent-card__title {
    font-size: var(--victor-fs-lg);
    font-weight: var(--victor-fw-black);
    line-height: 1.25;
    margin: 0 0 var(--victor-space-sm);
}
.vsp-recent-card__title a {
    color: var(--victor-primary);
    text-decoration: none;
}
.vsp-recent-card__title a:hover,
.vsp-recent-card__title a:focus-visible {
    text-decoration: underline;
}
.vsp-recent-card__excerpt {
    font-size: var(--victor-fs-sm);
    color: var(--victor-text-light);
    line-height: var(--victor-lh-relaxed);
    margin: 0 0 var(--victor-space-lg);
    flex: 1;
}
.vsp-recent-card__link {
    align-self: flex-start;
    font-size: var(--victor-fs-sm);
    font-weight: var(--victor-fw-bold);
    color: var(--victor-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ── RESPONSIVE — Tablet (768px+) ── */
@media (min-width: 48rem) {
    .vsp-recent__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
