/* Blog Posts - Premium Editorial Design */
.wv-blog-archive,
.wv-blog-post {
    --wv-blog-cream: #f8f3ec;
    --wv-blog-beige: #f0e9df;
    --wv-blog-blush: #e8ddd4;
    --wv-blog-olive: #2c301d;
    --wv-blog-gold: #8e6542;
    --wv-blog-gold-light: #b8956a;
    --wv-blog-ink: #1d1812;
    --wv-blog-muted: #6b6055;
    --wv-blog-muted-light: #8a7d70;
    --wv-blog-line: rgba(44, 48, 29, 0.12);
    --wv-blog-line-light: rgba(44, 48, 29, 0.08);
    --wv-blog-shadow-soft: 0 12px 40px rgba(44, 48, 29, 0.08);
    --wv-blog-shadow-card: 0 16px 48px rgba(44, 48, 29, 0.1);
    --wv-blog-shadow-hero: 0 32px 64px rgba(44, 48, 29, 0.18);

    color: var(--wv-blog-ink);
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(142, 101, 66, 0.12), transparent 60%),
        radial-gradient(ellipse 60% 40% at 90% 10%, rgba(120, 111, 70, 0.08), transparent 40%),
        linear-gradient(180deg, var(--wv-blog-cream) 0%, var(--wv-blog-beige) 100%);
    min-height: 100vh;
}

.wv-blog-archive__container,
.wv-blog-post__article {
    width: 100%;
    margin: 0 auto;
}

/* Archive Hero */
.wv-blog-archive__hero {
    padding: clamp(80px, 12vh, 140px) 0 clamp(50px, 8vh, 80px);
    background: linear-gradient(180deg, var(--wv-blog-cream), var(--wv-blog-beige));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.wv-blog-archive__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, var(--wv-blog-gold));
    opacity: 0.6;
}

.wv-blog-archive__hero h1,
.wv-blog-post__title,
.wv-blog-post__cta h2,
.wv-related-posts h2,
.wv-blog-post__visit h2 {
    margin: 0;
    font-family: "Playfair Display", "Cormorant Garamond", Georgia, "Times New Roman", serif;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.wv-blog-archive__hero h1 {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    background: linear-gradient(135deg, var(--wv-blog-gold), var(--wv-blog-olive));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wv-blog-archive__hero p {
    margin: 1rem auto 0;
    max-width: 680px;
    color: var(--wv-blog-muted);
    line-height: 1.75;
    font-size: clamp(1rem, 1.5vw, 1.15rem);
}

.wv-blog-archive__content {
    padding: clamp(32px, 6vh, 64px) 0 clamp(64px, 10vh, 112px);
}

/* Archive Grid */
.wv-blog-archive__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

/* Blog Card */
.wv-blog-card {
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--wv-blog-line);
    box-shadow: var(--wv-blog-shadow-soft);
    display: grid;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
}

.wv-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--wv-blog-shadow-card);
}

.wv-blog-card__thumb {
    display: block;
    background: linear-gradient(135deg, var(--wv-blog-blush), var(--wv-blog-beige));
    overflow: hidden;
}

.wv-blog-card__thumb img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.wv-blog-card:hover .wv-blog-card__thumb img {
    transform: scale(1.05);
}

.wv-blog-card__body {
    padding: 1.6rem;
    display: grid;
    gap: 0.8rem;
}

.wv-blog-card__meta,
.wv-blog-post__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    color: var(--wv-blog-muted-light);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 600;
}

.wv-blog-card h2 {
    margin: 0;
    font-size: clamp(1.2rem, 2.2vw, 1.5rem);
    line-height: 1.25;
    font-weight: 500;
}

.wv-blog-card h2 a {
    color: var(--wv-blog-olive);
    text-decoration: none;
    transition: color 0.3s ease;
}

.wv-blog-card h2 a:hover {
    color: var(--wv-blog-gold);
}

.wv-blog-card p,
.wv-blog-post__excerpt,
.wv-blog-post__content p {
    margin: 0;
    color: var(--wv-blog-muted);
    line-height: 1.75;
}

/* Buttons */
.wv-blog-card__read-more,
.wv-blog-post__btn,
.wv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    border: 1px solid transparent;
    padding: 0.9rem 1.8rem;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.wv-blog-card__read-more {
    width: fit-content;
    background: var(--wv-blog-olive);
    color: #fff;
    box-shadow: 0 8px 24px rgba(44, 48, 29, 0.22);
}

.wv-blog-card__read-more:hover {
    opacity: 0.95;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(44, 48, 29, 0.28);
}

.wv-blog-post__btn:hover,
.wv-btn:hover {
    opacity: 0.92;
    transform: translateY(-3px);
}

.wv-blog-archive__pagination {
    margin-top: 2rem;
}

/* ============================================= */
/* SINGLE POST - Premium Editorial Design */
/* ============================================= */

.wv-blog-post {
    padding: 0;
}

.wv-blog-post__article {
    max-width: 100%;
    padding: 0;
}

/* ============================================= */
/* HERO - Premium Editorial Header */
/* ============================================= */

.wv-blog-post__hero {
    position: relative;
    background: linear-gradient(180deg, var(--wv-blog-cream) 0%, var(--wv-blog-beige) 100%);
    overflow: hidden;
}

.wv-blog-post__hero-inner {
    max-width: 860px;
    margin: 0 auto;
    padding: clamp(60px, 10vh, 100px) clamp(24px, 5vw, 48px) clamp(40px, 6vh, 60px);
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Breadcrumb */
.wv-blog-post__breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2rem;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--wv-blog-muted-light);
}

.wv-blog-post__breadcrumb a {
    color: var(--wv-blog-muted-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.wv-blog-post__breadcrumb a:hover {
    color: var(--wv-blog-gold);
}

.wv-blog-post__breadcrumb-sep {
    opacity: 0.5;
}

/* Category Label */
.wv-blog-post__category {
    display: inline-block;
    margin: 0 0 1.5rem;
    padding: 6px 18px;
    background: rgba(142, 101, 66, 0.1);
    border: 1px solid rgba(142, 101, 66, 0.25);
    border-radius: 999px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--wv-blog-gold);
    font-weight: 700;
}

/* Title */
.wv-blog-post__title {
    max-width: 820px;
    margin: 0 auto 1.5rem;
    font-size: clamp(2.8rem, 7vw, 5rem);
    line-height: 1.05;
    color: var(--wv-blog-olive);
    letter-spacing: -0.02em;
    position: relative;
}

/* Decorative title accent */
.wv-blog-post__title::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--wv-blog-gold), transparent);
    opacity: 0.6;
}

/* Excerpt */
.wv-blog-post__excerpt {
    max-width: 640px;
    margin: 0 auto 1.5rem;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    line-height: 1.7;
    color: var(--wv-blog-muted);
    font-style: italic;
}

/* Meta */
.wv-blog-post__meta {
    justify-content: center;
    font-size: 11px;
}

.wv-blog-post__meta span {
    color: var(--wv-blog-muted-light);
}

/* Featured Image - Hero Integration */
.wv-blog-post__featured {
    position: relative;
    margin: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 60px);
}

.wv-blog-post__featured img {
    width: 100%;
    max-height: 680px;
    object-fit: cover;
    border-radius: 32px;
    box-shadow: var(--wv-blog-shadow-hero);
    display: block;
}

.wv-blog-post__featured-overlay {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - clamp(48px, 10vw, 120px));
    height: 40%;
    background: linear-gradient(180deg, transparent, rgba(240, 233, 223, 0.6));
    pointer-events: none;
    border-radius: 0 0 32px 32px;
}

/* ============================================= */
/* POST BODY - Editorial Layout */
/* ============================================= */

.wv-blog-post__body {
    max-width: 1600px;
    margin: 0 auto;
    padding: clamp(48px, 8vh, 80px) clamp(24px, 5vw, 60px) clamp(64px, 10vh, 120px);
}

.wv-blog-post__content {
    max-width: 740px;
    margin: 0 auto;
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    line-height: 1.82;
    color: #2c301d;
}

/* Typography */
.wv-blog-post__content h2 {
    margin: 72px 0 20px;
    padding-top: 24px;
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    line-height: 1.15;
    color: var(--wv-blog-olive);
    position: relative;
}

.wv-blog-post__content h2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--wv-blog-gold), var(--wv-blog-gold-light));
    border-radius: 2px;
}

.wv-blog-post__content h3 {
    margin: 48px 0 16px;
    font-size: clamp(1.35rem, 2.5vw, 1.7rem);
    line-height: 1.25;
    color: var(--wv-blog-gold);
}

.wv-blog-post__content h4 {
    margin: 36px 0 12px;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.3;
    color: var(--wv-blog-olive);
}

.wv-blog-post__content p {
    margin: 0 0 28px;
}

.wv-blog-post__content p:first-of-type::first-letter {
    font-size: 3.5em;
    float: left;
    line-height: 0.8;
    margin: 0.1em 0.12em 0 0;
    color: var(--wv-blog-gold);
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 500;
}

/* Lists */
.wv-blog-post__content ul,
.wv-blog-post__content ol {
    margin: 32px 0 40px;
    padding-left: 0;
    list-style: none;
    color: #2c301d;
}

.wv-blog-post__content li {
    margin-bottom: 14px;
    padding-left: 28px;
    position: relative;
}

.wv-blog-post__content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--wv-blog-gold);
    border-radius: 50%;
    opacity: 0.7;
}

.wv-blog-post__content ol {
    counter-reset: list-counter;
}

.wv-blog-post__content ol li {
    counter-increment: list-counter;
}

.wv-blog-post__content ol li::before {
    content: counter(list-counter);
    position: absolute;
    left: 0;
    top: -2px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--wv-blog-gold), var(--wv-blog-gold-light));
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Blockquote */
.wv-blog-post__content blockquote {
    position: relative;
    margin: 52px 0;
    padding: 36px 40px 36px 56px;
    background: linear-gradient(135deg, rgba(142, 101, 66, 0.06), rgba(142, 101, 66, 0.03));
    border: 1px solid rgba(142, 101, 66, 0.15);
    border-radius: 20px;
    border-left: 4px solid var(--wv-blog-gold);
}

.wv-blog-post__content blockquote::before {
    content: '"';
    position: absolute;
    top: 16px;
    left: 20px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 4rem;
    color: var(--wv-blog-gold);
    opacity: 0.3;
    line-height: 1;
}

/* Images */
.wv-blog-post__content .wp-block-image {
    margin: 56px -40px;
}

.wv-blog-post__content .wp-block-image img,
.wv-blog-post__content figure img {
    width: 100%;
    max-height: 580px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--wv-blog-shadow-card);
}

.wv-blog-post__content figure {
    margin: 0;
}

/* Spacer */
.wv-blog-post__content .wp-block-spacer {
    max-height: 56px;
}

/* First/last child */
.wv-blog-post__content > *:first-child {
    margin-top: 0;
}

.wv-blog-post__content > *:last-child {
    margin-bottom: 0;
}

/* ============================================= */
/* STEP SECTIONS - Editorial Cards */
/* ============================================= */

.wv-post-step {
    margin: 64px -24px;
    padding: 48px;
    background: linear-gradient(145deg, #fff, rgba(248, 243, 236, 0.5));
    border: 1px solid var(--wv-blog-line-light);
    border-radius: 28px;
    box-shadow: var(--wv-blog-shadow-soft);
    position: relative;
    overflow: hidden;
}

.wv-post-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--wv-blog-gold), var(--wv-blog-gold-light), var(--wv-blog-gold));
    opacity: 0.7;
}

.wv-post-step::after {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(142, 101, 66, 0.08), transparent 60%);
    pointer-events: none;
}

.wv-post-step__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 14px;
    padding: 6px 16px;
    background: var(--wv-blog-olive);
    color: #fff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    border-radius: 999px;
}

.wv-post-step__eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--wv-blog-gold);
    border-radius: 50%;
}

.wv-post-step__title {
    margin: 0 0 20px;
    font-family: "Playfair Display", Georgia, serif;
    color: var(--wv-blog-olive);
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.2;
    font-weight: 500;
}

.wv-post-step__content > *:last-child {
    margin-bottom: 0;
}

/* ============================================= */
/* INLINE CTA */
/* ============================================= */

.wv-post-inline-cta {
    margin: 52px 0;
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(142, 101, 66, 0.08), rgba(142, 101, 66, 0.04));
    border: 1px solid rgba(142, 101, 66, 0.12);
    border-radius: 20px;
}

.wv-btn--inline {
    min-width: 260px;
    background: var(--wv-blog-olive);
    color: #fff;
    box-shadow: 0 8px 24px rgba(44, 48, 29, 0.2);
}

/* ============================================= */
/* CTA SECTION - Premium Booking Block */
/* ============================================= */

.wv-blog-post__cta {
    position: relative;
    margin: 80px 0;
    border-radius: 32px;
    overflow: hidden;
    background: linear-gradient(145deg, #343722 0%, #2a3020 50%, #3d3828 100%);
    box-shadow: 0 24px 64px rgba(44, 48, 29, 0.3);
}

.wv-blog-post__cta-inner {
    position: relative;
    z-index: 2;
    padding: clamp(48px, 8vh, 72px) clamp(32px, 6vw, 64px);
    text-align: center;
}

.wv-blog-post__cta-decoration {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--wv-blog-gold);
    opacity: 0.5;
}

.wv-blog-post__cta-eyebrow {
    margin: 0 0 12px;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--wv-blog-gold);
    font-weight: 700;
}

.wv-blog-post__cta h2 {
    margin: 0 0 16px;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.1;
    color: #fff;
}

.wv-blog-post__cta p {
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.75);
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    line-height: 1.6;
}

.wv-blog-post__cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.wv-blog-post__cta .wv-btn {
    min-width: 200px;
    background: linear-gradient(135deg, #f8f3ec, #eee6dc);
    color: var(--wv-blog-olive);
    border: none;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    font-size: 0.9rem;
    letter-spacing: 0.06em;
}

.wv-blog-post__cta .wv-btn:hover {
    background: #fff;
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.wv-blog-post__btn-link {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: color 0.3s ease;
}

.wv-blog-post__btn-link:hover {
    color: #fff;
    text-decoration: underline;
}

.wv-blog-post__cta-accent {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(142, 101, 66, 0.25), transparent 60%);
    pointer-events: none;
}

.wv-blog-post__cta::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--wv-blog-gold), var(--wv-blog-gold-light), var(--wv-blog-gold));
}

/* ============================================= */
/* RELATED POSTS - Elegant Cards */
/* ============================================= */

.wv-related-posts {
    max-width: 1280px;
    margin: 100px auto 0;
}

.wv-related-posts__header {
    text-align: center;
    margin-bottom: 48px;
}

.wv-related-posts__eyebrow {
    display: inline-block;
    margin: 0 0 12px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--wv-blog-gold);
    font-weight: 700;
}

.wv-related-posts h2 {
    margin: 0;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--wv-blog-olive);
}

.wv-related-posts__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

.wv-related-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--wv-blog-shadow-soft);
    border: 1px solid var(--wv-blog-line-light);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
}

.wv-related-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--wv-blog-shadow-card);
}

.wv-related-card__thumb {
    display: block;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--wv-blog-blush), var(--wv-blog-beige));
}

.wv-related-card__thumb img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.wv-related-card:hover .wv-related-card__thumb img {
    transform: scale(1.08);
}

.wv-related-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(44, 48, 29, 0.08) 100%);
    pointer-events: none;
}

.wv-related-card__placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, var(--wv-blog-blush), var(--wv-blog-beige));
}

.wv-related-card__body {
    padding: 28px;
    display: grid;
    gap: 12px;
}

.wv-related-card__cat {
    margin: 0;
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--wv-blog-gold);
    font-weight: 700;
}

.wv-related-card__body h3 {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    line-height: 1.25;
    font-weight: 500;
}

.wv-related-card__body h3 a {
    color: var(--wv-blog-olive);
    text-decoration: none;
    transition: color 0.3s ease;
}

.wv-related-card__body h3 a:hover {
    color: var(--wv-blog-gold);
}

.wv-related-card__excerpt {
    margin: 0;
    color: var(--wv-blog-muted);
    line-height: 1.65;
    font-size: 0.92rem;
}

.wv-related-card__read {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--wv-blog-olive);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    padding-top: 8px;
    border-top: 1px solid var(--wv-blog-line-light);
    margin-top: 4px;
    transition: all 0.3s ease;
}

.wv-related-card__read:hover {
    color: var(--wv-blog-gold);
    gap: 12px;
}

.wv-related-card__read svg {
    transition: transform 0.3s ease;
}

.wv-related-card__read:hover svg {
    transform: translateX(4px);
}

/* ============================================= */
/* VISIT BLOCK - Contact Section */
/* ============================================= */

.wv-blog-post__visit {
    margin-top: 80px;
    background: #fff;
    border: 1px solid var(--wv-blog-line-light);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--wv-blog-shadow-soft);
}

.wv-blog-post__visit-inner {
    padding: clamp(40px, 6vh, 60px) clamp(32px, 5vw, 56px);
    text-align: center;
}

.wv-blog-post__visit-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--wv-blog-gold);
}

.wv-blog-post__visit h2 {
    margin: 0 0 12px;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--wv-blog-olive);
}

.wv-blog-post__visit p {
    margin: 0 0 28px;
    color: var(--wv-blog-muted);
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    line-height: 1.65;
}

.wv-blog-post__visit-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

/* Visit Button Styles */
.wv-btn--outline {
    background: transparent;
    color: var(--wv-blog-olive);
    border: 2px solid var(--wv-blog-olive);
    box-shadow: none;
}

.wv-btn--outline:hover {
    background: var(--wv-blog-olive);
    color: #fff;
    transform: translateY(-3px);
}

.wv-btn--dark {
    background: var(--wv-blog-olive);
    color: #fff;
    box-shadow: 0 8px 24px rgba(44, 48, 29, 0.25);
}

.wv-btn--dark:hover {
    background: var(--wv-blog-ink);
    transform: translateY(-3px);
}

.wv-btn svg {
    flex-shrink: 0;
}

/* ============================================= */
/* RESPONSIVE DESIGN */
/* ============================================= */

@media (max-width: 1024px) {
    .wv-blog-archive__grid,
    .wv-related-posts__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .wv-blog-post__article {
        padding: 0;
    }

    .wv-blog-post__cta,
    .wv-blog-post__visit {
        margin: 64px 0;
        border-radius: 24px;
    }

    .wv-blog-post__content .wp-block-image {
        margin: 40px -20px;
    }

    .wv-post-step {
        margin: 56px -16px;
        padding: 36px;
        border-radius: 22px;
    }
}

@media (max-width: 767px) {
    .wv-blog-archive__grid,
    .wv-related-posts__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .wv-blog-post__hero-inner {
        padding: clamp(48px, 8vh, 72px) 20px clamp(32px, 5vh, 48px);
    }

    .wv-blog-post__title {
        font-size: clamp(2.2rem, 10vw, 3rem);
    }

    .wv-blog-post__featured img {
        max-height: 400px;
        border-radius: 20px;
    }

    .wv-blog-post__featured {
        padding: 0 16px;
    }

    .wv-blog-post__body {
        padding: clamp(32px, 6vh, 48px) 20px clamp(48px, 8vh, 72px);
    }

    .wv-blog-post__content {
        font-size: 1rem;
        line-height: 1.75;
    }

    .wv-blog-post__content > p:first-of-type::first-letter {
        font-size: 3em;
    }

    .wv-blog-post__content .wp-block-image {
        margin: 36px -8px;
        border-radius: 16px;
        overflow: hidden;
    }

    .wv-blog-post__content .wp-block-image img,
    .wv-blog-post__content figure img {
        border-radius: 16px;
    }

    .wv-blog-post__content blockquote {
        padding: 28px 24px 28px 36px;
        margin: 40px 0;
    }

    .wv-post-step {
        margin: 40px 0;
        padding: 28px 20px;
        border-radius: 18px;
    }

    .wv-post-step__eyebrow {
        font-size: 11px;
        padding: 5px 12px;
    }

    .wv-post-inline-cta {
        padding: 28px 20px;
    }

    .wv-btn--inline {
        min-width: 100%;
    }

    .wv-blog-post__cta {
        margin: 56px 0;
        border-radius: 20px;
    }

    .wv-blog-post__cta-inner {
        padding: 36px 24px;
    }

    .wv-blog-post__cta-actions {
        flex-direction: column;
    }

    .wv-blog-post__cta .wv-btn {
        width: 100%;
        min-width: unset;
    }

    .wv-related-posts {
        margin: 64px auto 0;
    }

    .wv-related-posts__header {
        margin-bottom: 32px;
    }

    .wv-related-card__body {
        padding: 20px;
    }

    .wv-blog-post__visit-inner {
        padding: 32px 20px;
    }

    .wv-blog-post__visit-actions {
        flex-direction: column;
    }

    .wv-blog-post__visit-actions .wv-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .wv-blog-post__breadcrumb {
        font-size: 10px;
        gap: 6px;
    }

    .wv-blog-post__title::before {
        top: -12px;
        width: 40px;
    }

    .wv-blog-post__meta {
        font-size: 10px;
    }

    .wv-related-card__body {
        padding: 16px;
        gap: 10px;
    }
}