/* ============================================
   VENDREADY BLOG - editorial layout
   Structure adapted from a magazine-style blog template; recolored to
   VendReady's existing dark theme (#0d0d0d, #3d66ff accent, Inter) so it
   reads as part of the same site as landing.html / pos.html, not a
   separate sub-brand. Scoped under .vrblog-* everywhere.
   ============================================ */

.vrblog-page {
    background: #0d0d0d;
    color: #e7e7ea;
    min-height: 100vh;
}

.vrblog-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 48px;
}

/* Hero */
.vrblog-hero {
    max-width: 1120px;
    margin: 0 auto;
    padding: 160px 48px 32px;
}

.vrblog-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.vrblog-eyebrow-line {
    width: 26px;
    height: 1px;
    background: #3d66ff;
}

.vrblog-eyebrow-label {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #3d66ff;
    font-weight: 600;
}

.vrblog-hero h1 {
    font-size: clamp(34px, 4.5vw, 52px);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1px;
    color: #fff;
    margin: 0 0 18px;
    max-width: 16ch;
}

.vrblog-hero p {
    font-size: 18px;
    line-height: 1.6;
    color: #b7b7bd;
    max-width: 56ch;
    margin: 0;
}

/* Category filter pills */
.vrblog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 48px 28px;
    max-width: 1120px;
    margin: 0 auto;
    border-bottom: 1px solid #2a2a30;
}

.vrblog-pill {
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid #2a2a30;
    background: transparent;
    color: rgba(255, 255, 255, 0.65);
    font-family: inherit;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.vrblog-pill:hover {
    border-color: #3d66ff;
    color: #fff;
}

.vrblog-pill.active {
    background: #3d66ff;
    border-color: #3d66ff;
    color: #fff;
}

.vrblog-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #4a4a52;
    flex-shrink: 0;
}

/* Featured post */
.vrblog-featured-section {
    max-width: 1120px;
    margin: 0 auto;
    padding: 44px 48px 8px;
}

.vrblog-featured {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 48px;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.vrblog-featured-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-lg, 18px);
    background: linear-gradient(135deg, rgba(61, 102, 255, 0.18), rgba(61, 102, 255, 0.04));
    border: 1px solid #2a2a30;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vrblog-featured-image svg {
    width: 56px;
    height: 56px;
    opacity: 0.5;
}

.vrblog-featured-image img,
.vrblog-card-image img,
.vrblog-article-related-image img,
.vrblog-article-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit;
}

.vrblog-featured-tag {
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #3d66ff;
    font-weight: 700;
}

.vrblog-featured-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.vrblog-featured-meta-text {
    font-size: 13px;
    color: #7a7a82;
    font-weight: 500;
}

.vrblog-featured h2 {
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin: 0 0 18px;
    color: #fff;
}

.vrblog-featured p {
    font-size: 16.5px;
    line-height: 1.6;
    color: #b7b7bd;
    margin: 0 0 26px;
    max-width: 46ch;
}

.vrblog-featured-footer {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.vrblog-featured-footer-text {
    font-size: 13.5px;
    color: #7a7a82;
    font-weight: 500;
}

.vrblog-read-link {
    margin-left: 6px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 700;
    color: #3d66ff;
}

/* Grid */
.vrblog-grid-section {
    max-width: 1120px;
    margin: 0 auto;
    padding: 56px 48px 80px;
}

.vrblog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 44px;
}

.vrblog-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.vrblog-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: var(--radius-lg, 18px);
    background: linear-gradient(135deg, rgba(61, 102, 255, 0.14), rgba(61, 102, 255, 0.03));
    border: 1px solid #2a2a30;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vrblog-card-image svg {
    width: 40px;
    height: 40px;
    opacity: 0.45;
}

.vrblog-card-meta {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 12px;
}

.vrblog-card-tag {
    font-size: 11.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #3d66ff;
    font-weight: 700;
}

.vrblog-card-read {
    font-size: 12.5px;
    color: #7a7a82;
    font-weight: 500;
}

.vrblog-card h3 {
    font-size: 21px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.3px;
    margin: 0 0 11px;
    color: #fff;
}

.vrblog-card p {
    font-size: 15px;
    line-height: 1.58;
    color: #9c9ca3;
    margin: 0;
}

.vrblog-empty {
    font-size: 15px;
    color: #7a7a82;
    padding: 24px 0;
}

/* Newsletter / CTA band */
.vrblog-newsletter {
    background: linear-gradient(135deg, #14224d 0%, #0d0d0d 100%);
    border-top: 1px solid #2a2a30;
}

.vrblog-newsletter-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 72px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.vrblog-newsletter h2 {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.15;
    margin: 0 0 14px;
    color: #fff;
}

.vrblog-newsletter p {
    font-size: 16px;
    line-height: 1.6;
    color: #b7b7bd;
    margin: 0;
    max-width: 42ch;
}

.vrblog-newsletter-cta {
    display: flex;
    justify-content: flex-end;
}

.vrblog-newsletter-cta a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 15px 28px;
    border-radius: var(--radius-pill, 100px);
    background: #3d66ff;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    transition: background 0.2s;
}

.vrblog-newsletter-cta a:hover {
    background: #2d55f0;
}

/* ============= ARTICLE PAGE ============= */

.vrblog-article-page {
    background: #0d0d0d;
    color: #e7e7ea;
    min-height: 100vh;
}

.vrblog-article-title {
    max-width: 760px;
    margin: 0 auto;
    padding: 160px 32px 0;
}

.vrblog-article-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    color: #7a7a82;
    font-weight: 500;
    margin-bottom: 28px;
}

.vrblog-article-breadcrumb a {
    color: #7a7a82;
    text-decoration: none;
}

.vrblog-article-breadcrumb a:hover {
    color: #3d66ff;
}

.vrblog-article-breadcrumb .current {
    color: #3d66ff;
    font-weight: 600;
}

.vrblog-article-title h1 {
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -1px;
    margin: 0 0 20px;
    color: #fff;
}

.vrblog-article-deck {
    font-size: 19px;
    line-height: 1.5;
    color: #b7b7bd;
    margin: 0 0 32px;
}

.vrblog-article-byline {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 36px;
    border-bottom: 1px solid #2a2a30;
}

.vrblog-article-avatar {
    flex: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #3d66ff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
}

.vrblog-article-avatar--lg {
    width: 54px;
    height: 54px;
    font-size: 21px;
}

.vrblog-article-byline-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.vrblog-article-byline-name {
    font-size: 14.5px;
    font-weight: 600;
    color: #fff;
}

.vrblog-article-byline-meta {
    font-size: 13px;
    color: #7a7a82;
}

.vrblog-article-hero {
    max-width: 900px;
    margin: 40px auto 0;
    padding: 0 32px;
}

.vrblog-article-hero-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: var(--radius-lg, 18px);
    overflow: hidden;
    border: 1px solid #2a2a30;
}

.vrblog-article-body {
    max-width: 680px;
    margin: 0 auto;
    padding: 48px 32px 0;
    font-size: 17.5px;
    line-height: 1.75;
    color: #c4c4ca;
}

.vrblog-article-body h2 {
    font-size: 25px;
    line-height: 1.22;
    font-weight: 700;
    letter-spacing: -0.4px;
    color: #fff;
    margin: 44px 0 18px;
}

.vrblog-article-body > div:first-child h2 {
    margin-top: 0;
}

.vrblog-article-body p {
    margin: 0 0 22px;
}

.vrblog-article-list {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vrblog-article-list-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 20px;
    background: rgba(61, 102, 255, 0.06);
    border: 1px solid #23242b;
    border-radius: var(--radius, 10px);
}

.vrblog-article-list-badge {
    flex: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #3d66ff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12.5px;
    font-weight: 700;
    margin-top: 1px;
}

.vrblog-article-list-text {
    font-size: 15.5px;
    line-height: 1.55;
    color: #c4c4ca;
}

/* CTA */
.vrblog-article-cta {
    max-width: 680px;
    margin: 44px auto 0;
    padding: 0 32px;
}

.vrblog-article-cta-box {
    background: #3d66ff;
    color: #fff;
    border-radius: var(--radius-lg, 18px);
    padding: 36px;
}

.vrblog-article-cta-box h3 {
    font-size: 23px;
    font-weight: 800;
    letter-spacing: -0.4px;
    margin: 0 0 12px;
    color: inherit;
}

.vrblog-article-cta-box p {
    font-size: 15.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 22px;
    max-width: 48ch;
}

.vrblog-article-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 24px;
    border-radius: var(--radius-pill, 100px);
    background: #fff;
    color: #3d66ff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
}

.vrblog-article-cta-button:hover {
    background: #e5ebf1;
}

/* Author bio */
.vrblog-article-author {
    max-width: 680px;
    margin: 40px auto 0;
    padding: 32px 32px 0;
    border-top: 1px solid #2a2a30;
}

.vrblog-article-author-inner {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.vrblog-article-author-label {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #7a7a82;
    font-weight: 600;
}

.vrblog-article-author-name {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin: 4px 0 8px;
}

.vrblog-article-author-bio {
    font-size: 14.5px;
    line-height: 1.6;
    color: #9c9ca3;
    margin: 0;
    max-width: 52ch;
}

/* Related */
.vrblog-article-related {
    max-width: 1120px;
    margin: 0 auto;
    padding: 64px 48px 100px;
}

.vrblog-article-related-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 16px;
}

.vrblog-article-related-header h2 {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.4px;
    color: #fff;
    margin: 0;
}

.vrblog-article-related-header a {
    font-size: 14px;
    font-weight: 700;
    color: #3d66ff;
    text-decoration: none;
    white-space: nowrap;
}

.vrblog-article-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.vrblog-article-related-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.vrblog-article-related-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: var(--radius, 10px);
    background: linear-gradient(135deg, rgba(61, 102, 255, 0.14), rgba(61, 102, 255, 0.03));
    border: 1px solid #2a2a30;
    margin-bottom: 14px;
}

.vrblog-article-related-meta {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 8px;
}

.vrblog-article-related-tag {
    font-size: 10.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #3d66ff;
    font-weight: 700;
}

.vrblog-article-related-read {
    font-size: 11.5px;
    color: #7a7a82;
    font-weight: 500;
}

.vrblog-article-related-card h3 {
    font-size: 17px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -0.2px;
    margin: 0;
    color: #fff;
}

@media (max-width: 900px) {
    .vrblog-featured { grid-template-columns: 1fr; }
    .vrblog-grid { grid-template-columns: 1fr; }
    .vrblog-newsletter-inner { grid-template-columns: 1fr; }
    .vrblog-newsletter-cta { justify-content: flex-start; }
}

@media (max-width: 700px) {
    .vrblog-article-related-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .vrblog-hero, .vrblog-filters, .vrblog-featured-section, .vrblog-grid-section {
        padding-left: 24px;
        padding-right: 24px;
    }
    .vrblog-article-title, .vrblog-article-body, .vrblog-article-cta, .vrblog-article-author, .vrblog-article-related {
        padding-left: 20px;
        padding-right: 20px;
    }
    .vrblog-article-cta-box { padding: 28px 24px; }
}
