/*
 Theme Name:   WestieVibes
 Theme URI:    https://westievibes.com
 Description:  WestieVibes child theme for GeneratePress.
 Author:       WestieVibes
 Author URI:   https://westievibes.com
 Template:     generatepress
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  https://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  westievibes
*/

/*@font-face*/

@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 400; font-display: swap; src: url(fonts/dm-sans-400.woff2) format('woff2'); }
@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 500; font-display: swap; src: url(fonts/dm-sans-500.woff2) format('woff2'); }
@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 600; font-display: swap; src: url(fonts/dm-sans-600.woff2) format('woff2'); }
@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 700; font-display: swap; src: url(fonts/dm-sans-700.woff2) format('woff2'); }
@font-face { font-family: 'Source Serif 4'; font-style: normal; font-weight: 400; font-display: swap; src: url(fonts/source-serif-4-400.woff2) format('woff2'); }
@font-face { font-family: 'Source Serif 4'; font-style: italic; font-weight: 400; font-display: swap; src: url(fonts/source-serif-4-400i.woff2) format('woff2'); }
@font-face { font-family: 'Source Serif 4'; font-style: normal; font-weight: 600; font-display: swap; src: url(fonts/source-serif-4-600.woff2) format('woff2'); }

/*Custom Properties*/

:root {
    --wv-bg: #FFFDF7;
    --wv-surface: #FFFFFF;
    --wv-primary: #C8973E;
    --wv-primary-hover: #B8872E;
    --wv-primary-light: #F5EDD8;
    --wv-secondary: #7A9E7E;
    --wv-secondary-light: #EDF4EE;
    --wv-text: #2E2A25;
    --wv-text-secondary: #6B6560;
    --wv-text-light: #9B9590;
    --wv-border: #EDE8E0;
    --wv-shadow: rgba(46, 42, 37, 0.06);
    --wv-shadow-hover: rgba(46, 42, 37, 0.12);
    --wv-radius: 12px;
    --wv-radius-sm: 8px;
    --wv-content-width: 720px;
    --wv-grid-width: 1200px;
}

/*Base*/

*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--wv-text);
    background-color: var(--wv-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--wv-text);
}
h1 { font-size: 2rem; font-weight: 700; }
h2 { font-size: 1.625rem; }
h3 { font-size: 1.375rem; }
h4 { font-size: 1.125rem; }

a { color: var(--wv-primary); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--wv-primary-hover); }
img { max-width: 100%; height: auto; }

/*GeneratePress Overrides*/

body, body.westievibes .site { background-color: var(--wv-bg); }
.site-content, body.westievibes .site-content { max-width: var(--wv-grid-width); margin: 0 auto; padding: 0 24px; }
.site-content .content-area { width: 100%; float: none; }
#right-sidebar, #left-sidebar, .sidebar { display: none; }
body.westievibes .inside-article { padding: 0; }

/*Header*/

.site-header {
    background-color: var(--wv-surface);
    border-bottom: 1px solid var(--wv-border);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
}
.site-header.wv-scrolled {
    box-shadow: 0 2px 20px var(--wv-shadow);
    background-color: rgba(255, 255, 255, 0.97);
}
.site-header .inside-header {
    max-width: var(--wv-grid-width);
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.site-header .site-branding { flex-shrink: 0; }
.site-header .main-title,
.site-header .site-title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    margin: 0;
    line-height: 1;
}
.site-header .main-title a,
.site-header .site-title a { color: var(--wv-text); position: relative; }
.site-header .main-title a::after,
.site-header .site-title a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--wv-primary);
    border-radius: 2px;
}

/* Navigation */
.main-navigation { font-family: 'DM Sans', sans-serif; }
.main-navigation .main-nav > ul > li > a,
.main-navigation .menu > li > a {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: var(--wv-text);
    padding: 8px 16px;
    position: relative;
    transition: color 0.2s ease;
}
.main-navigation .main-nav > ul > li > a::after,
.main-navigation .menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background-color: var(--wv-primary);
    transform: scaleX(0);
    transition: transform 0.2s ease;
}
.main-navigation .main-nav > ul > li > a:hover::after,
.main-navigation .main-nav > ul > li.current-menu-item > a::after,
.main-navigation .menu > li > a:hover::after,
.main-navigation .menu > li.current-menu-item > a::after { transform: scaleX(1); }
.main-navigation .main-nav > ul > li > a:hover,
.main-navigation .menu > li > a:hover { color: var(--wv-primary); }

/* Sub-menus */
.main-navigation ul ul { background-color: var(--wv-surface); border: 1px solid var(--wv-border); border-radius: var(--wv-radius-sm); box-shadow: 0 8px 24px var(--wv-shadow); padding: 8px 0; }
.main-navigation ul ul a { font-size: 14px; font-weight: 400; color: var(--wv-text); padding: 8px 20px; }
.main-navigation ul ul a:hover { background-color: var(--wv-primary-light); color: var(--wv-primary); }

/* Mobile menu toggle */
.menu-toggle { border: none; background: none; color: var(--wv-text); padding: 8px; cursor: pointer; }

/*Breadcrumbs*/

.wv-breadcrumbs { max-width: var(--wv-grid-width); margin: 0 auto; padding: 16px 24px; font-family: 'DM Sans', sans-serif; font-size: 13px; color: var(--wv-text-secondary); }
.wv-breadcrumbs a { color: var(--wv-text-secondary); }
.wv-breadcrumbs a:hover { color: var(--wv-primary); }
.wv-breadcrumbs .breadcrumb_last { color: var(--wv-text-light); }

/*Category Badge*/

.wv-category-badge {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--wv-primary);
    background-color: var(--wv-primary-light);
    padding: 3px 10px;
    border-radius: 4px;
}

/*Hero Card*/

.wv-hero-card {
    position: relative;
    margin-bottom: 48px;
    transition: box-shadow 0.3s ease;
}
.wv-hero-card a { display: block; color: #fff; }
.wv-hero-card .wv-hero-image {
    width: 100%;
    height: auto;
    display: block;
}
.wv-hero-card:hover { box-shadow: 0 12px 40px var(--wv-shadow-hover); }

/*Post Card Grid*/

.wv-posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}
.wv-post-card {
    background-color: var(--wv-surface);
    border-radius: var(--wv-radius);
    overflow: hidden;
    box-shadow: 0 2px 8px var(--wv-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wv-post-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px var(--wv-shadow-hover); }
.wv-post-card a.wv-card-link { display: block; color: inherit; }
.wv-post-card .wv-card-image-wrap { position: relative; overflow: hidden; }
.wv-post-card .wv-card-image { width: 100%; height: auto; display: block; transition: transform 0.3s ease; }
.wv-post-card:hover .wv-card-image { transform: scale(1.03); }
.wv-post-card .wv-card-body { padding: 20px; }
.wv-post-card .wv-category-badge { margin-bottom: 10px; }
.wv-post-card .wv-card-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--wv-text);
    margin: 0 0 8px;
    line-height: 1.3;
}
.wv-post-card .wv-card-excerpt {
    font-size: 15px;
    color: var(--wv-text-secondary);
    margin: 0 0 12px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.wv-post-card .wv-card-meta { font-family: 'DM Sans', sans-serif; font-size: 13px; color: var(--wv-text-light); }
.wv-post-card .wv-card-meta span + span::before { content: ' - '; }

/*Pagination*/

.wv-pagination, .nav-links { display: flex; justify-content: center; align-items: center; gap: 8px; padding: 32px 0 64px; font-family: 'DM Sans', sans-serif; }
.wv-pagination a, .wv-pagination span,
.nav-links a, .nav-links span {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 40px; height: 40px; padding: 0 12px;
    border-radius: var(--wv-radius-sm); font-size: 14px; font-weight: 500;
    color: var(--wv-text-secondary); background-color: var(--wv-surface);
    border: 1px solid var(--wv-border); transition: all 0.2s ease;
}
.wv-pagination a:hover, .nav-links a:hover { border-color: var(--wv-primary); color: var(--wv-primary); }
.wv-pagination .current, .nav-links .current { background-color: var(--wv-primary); color: #fff; border-color: var(--wv-primary); }

/*Single Post*/

.wv-single-featured {
    width: 100%;
    max-width: var(--wv-grid-width);
    margin: 0 auto 48px;
}
.wv-single-featured img {
    width: 100%;
    height: auto;
    display: block;
}
.single .inside-article, .page .inside-article { max-width: var(--wv-content-width); margin: 0 auto; padding: 0 24px; }
.single .entry-header { margin-bottom: 32px; }
.single .entry-header .wv-category-badge { margin-bottom: 16px; }
.single .entry-title { font-family: 'DM Sans', sans-serif; font-size: 2.25rem; font-weight: 700; line-height: 1.2; margin: 0 0 16px; }
.single .wv-post-meta { font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--wv-text-light); }
.single .wv-post-meta span + span::before { content: ' - '; }

/* Article body */
.single .entry-content, .page .entry-content { font-family: 'Source Serif 4', Georgia, serif; font-size: 18px; line-height: 1.7; }
.single .entry-content p, .page .entry-content p { margin-bottom: 1.5em; }
.single .entry-content h2 { font-size: 1.625rem; margin-top: 2.5em; margin-bottom: 0.75em; padding-left: 16px; border-left: 3px solid var(--wv-primary); }
.single .entry-content h3 { font-size: 1.375rem; margin-top: 2em; margin-bottom: 0.75em; }
.single .entry-content h4 { margin-top: 1.5em; margin-bottom: 0.75em; }

/* Blockquotes */
.single .entry-content blockquote, .page .entry-content blockquote {
    border-left: 3px solid var(--wv-primary);
    background-color: rgba(245, 237, 216, 0.3);
    margin: 2em 0;
    padding: 24px 28px;
    border-radius: 0 var(--wv-radius-sm) var(--wv-radius-sm) 0;
    font-style: italic;
}
.single .entry-content blockquote p:last-child, .page .entry-content blockquote p:last-child { margin-bottom: 0; }

/* Content images and captions */
.single .entry-content img, .page .entry-content img { border-radius: var(--wv-radius-sm); }
.single .entry-content .wp-caption-text { font-family: 'DM Sans', sans-serif; font-size: 13px; color: var(--wv-text-light); text-align: center; padding: 8px 0; }

/* Content lists */
.single .entry-content ul, .single .entry-content ol { margin-bottom: 1.5em; padding-left: 1.5em; }
.single .entry-content li { margin-bottom: 0.5em; }

/* Content links */
.single .entry-content a, .page .entry-content a { color: var(--wv-primary); text-decoration: underline; text-decoration-color: rgba(200, 151, 62, 0.3); text-underline-offset: 2px; transition: text-decoration-color 0.2s ease; }
.single .entry-content a:hover, .page .entry-content a:hover { text-decoration-color: var(--wv-primary); }

/*Newsletter CTA*/

.wv-newsletter-cta { background-color: rgba(245, 237, 216, 0.5); border-radius: var(--wv-radius); padding: 48px 32px; text-align: center; margin: 48px 0; }
.wv-newsletter-cta h3 { font-size: 1.5rem; margin: 0 0 8px; }
.wv-newsletter-cta .wv-newsletter-subtitle { font-style: italic; font-size: 16px; color: var(--wv-text-secondary); margin: 0 0 24px; }
.wv-newsletter-cta .wv-newsletter-form { display: flex; justify-content: center; gap: 12px; max-width: 480px; margin: 0 auto; }
.wv-newsletter-cta .wv-newsletter-form input[type="email"] { flex: 1; font-family: 'DM Sans', sans-serif; font-size: 15px; padding: 12px 20px; border: 1px solid var(--wv-border); border-radius: var(--wv-radius-sm); background-color: var(--wv-surface); color: var(--wv-text); outline: none; transition: border-color 0.2s ease; }
.wv-newsletter-cta .wv-newsletter-form input[type="email"]:focus { border-color: var(--wv-primary); }
.wv-newsletter-cta .wv-newsletter-form input[type="email"]::placeholder { color: var(--wv-text-light); }
.wv-newsletter-cta .wv-newsletter-form button,
.wv-newsletter-cta .wv-newsletter-form input[type="submit"] { font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600; padding: 12px 28px; background-color: var(--wv-primary); color: #fff; border: none; border-radius: var(--wv-radius-sm); cursor: pointer; transition: background-color 0.2s ease; white-space: nowrap; }
.wv-newsletter-cta .wv-newsletter-form button:hover,
.wv-newsletter-cta .wv-newsletter-form input[type="submit"]:hover { background-color: var(--wv-primary-hover); }

/*Author Box*/

.wv-author-box { display: flex; gap: 24px; align-items: flex-start; padding: 32px; background-color: var(--wv-surface); border: 1px solid var(--wv-border); border-radius: var(--wv-radius); margin: 48px 0; }
.wv-author-box .wv-author-avatar, .wv-author-box .wv-author-avatar-placeholder, .wv-author-box img.avatar { flex-shrink: 0; width: 80px; height: 80px; border-radius: 50%; object-fit: cover; }
.wv-author-box .wv-author-avatar-placeholder { background-color: var(--wv-primary-light); display: flex; align-items: center; justify-content: center; font-family: 'DM Sans', sans-serif; font-size: 28px; font-weight: 600; color: var(--wv-primary); }
.wv-author-box .wv-author-info h4 { font-size: 1rem; margin: 0 0 4px; }
.wv-author-box .wv-author-info p { font-size: 15px; color: var(--wv-text-secondary); margin: 0 0 8px; line-height: 1.5; }
.wv-author-box .wv-author-info a { font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500; }

/*Related Posts*/

.wv-related-posts { margin: 48px 0; }
.wv-related-posts h3 { font-size: 1.375rem; margin: 0 0 24px; }
.wv-related-posts .wv-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.wv-related-posts .wv-post-card .wv-card-title { font-size: 1rem; }
.wv-related-posts .wv-post-card .wv-card-body { padding: 16px; }
.wv-related-posts .wv-post-card .wv-card-excerpt { display: none; }

/*Archive Header*/

.wv-archive-header { text-align: center; padding: 48px 24px 32px; max-width: var(--wv-grid-width); margin: 0 auto; }
.wv-archive-header h1 { font-size: 2rem; margin: 0 0 12px; }
.wv-archive-header .wv-archive-description { font-size: 16px; color: var(--wv-text-secondary); max-width: 600px; margin: 0 auto; }

/*Footer*/

.site-footer, .site-info { background-color: var(--wv-text); color: rgba(255, 253, 247, 0.8); }
.wv-footer { max-width: var(--wv-grid-width); margin: 0 auto; padding: 64px 24px 32px; }
.wv-footer-columns { display: grid; grid-template-columns: 1.5fr 1fr 1.5fr; gap: 48px; margin-bottom: 48px; }
.wv-footer h4 { font-size: 1rem; color: #FFFDF7; margin: 0 0 20px; }
.wv-footer p { font-size: 15px; line-height: 1.6; color: rgba(255, 253, 247, 0.7); margin: 0 0 16px; }
.wv-footer a { color: rgba(255, 253, 247, 0.7); transition: color 0.2s ease; }
.wv-footer a:hover { color: var(--wv-primary); }

/* Social icons */
.wv-social-links { display: flex; gap: 16px; list-style: none; padding: 0; margin: 0; }
.wv-social-links a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background-color: rgba(255, 253, 247, 0.1); transition: background-color 0.2s ease; }
.wv-social-links a:hover { background-color: var(--wv-primary); }
.wv-social-links svg { width: 18px; height: 18px; fill: rgba(255, 253, 247, 0.8); }
.wv-social-links a:hover svg { fill: #fff; }

/* Footer categories */
.wv-footer-categories { list-style: none; padding: 0; margin: 0; }
.wv-footer-categories li { margin-bottom: 10px; }
.wv-footer-categories a { font-family: 'DM Sans', sans-serif; font-size: 14px; }

/* Footer newsletter */
.wv-footer-newsletter .wv-newsletter-form { display: flex; gap: 8px; }
.wv-footer-newsletter input[type="email"] { flex: 1; font-family: 'DM Sans', sans-serif; font-size: 14px; padding: 10px 16px; border: 1px solid rgba(255, 253, 247, 0.2); border-radius: var(--wv-radius-sm); background-color: rgba(255, 253, 247, 0.1); color: #FFFDF7; outline: none; }
.wv-footer-newsletter input[type="email"]::placeholder { color: rgba(255, 253, 247, 0.4); }
.wv-footer-newsletter input[type="email"]:focus { border-color: var(--wv-primary); }
.wv-footer-newsletter button { font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600; padding: 10px 20px; background-color: var(--wv-primary); color: #fff; border: none; border-radius: var(--wv-radius-sm); cursor: pointer; transition: background-color 0.2s ease; }
.wv-footer-newsletter button:hover { background-color: var(--wv-primary-hover); }

/* Footer bottom */
.wv-footer-bottom { border-top: 1px solid rgba(255, 253, 247, 0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-family: 'DM Sans', sans-serif; font-size: 13px; color: rgba(255, 253, 247, 0.5); }
.wv-footer-bottom a { color: rgba(255, 253, 247, 0.5); }
.wv-footer-bottom a:hover { color: var(--wv-primary); }
.wv-footer-links { display: flex; gap: 24px; list-style: none; padding: 0; margin: 0; }

/* Hide GP default footer */
.site-info .copyright-bar, .site-info .inside-site-info { display: none; }

/*Responsive*/

@media (max-width: 1024px) {
    .wv-posts-grid { gap: 24px; }
    .wv-related-posts .wv-related-grid { grid-template-columns: repeat(2, 1fr); }
    .wv-footer-columns { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    :root { --wv-radius: 8px; }
    body { font-size: 16px; }
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.375rem; }
    h3 { font-size: 1.25rem; }
    .site-header .inside-header { padding: 12px 16px; }
    .site-content, body.westievibes .site-content { padding: 0 16px; }
    /* Mobile nav */
    .main-navigation:not(.toggled) .main-nav > ul { display: none; }
    .main-navigation.toggled .main-nav > ul { position: fixed; top: 0; right: 0; width: 280px; height: 100vh; background-color: var(--wv-surface); box-shadow: -4px 0 24px var(--wv-shadow-hover); padding: 64px 24px 24px; display: flex; flex-direction: column; z-index: 200; overflow-y: auto; animation: wv-slide-in 0.3s ease; }
    .main-navigation.toggled .main-nav > ul > li { width: 100%; }
    .main-navigation.toggled .main-nav > ul > li > a { display: block; padding: 12px 0; border-bottom: 1px solid var(--wv-border); font-size: 16px; }
    .main-navigation.toggled .main-nav > ul > li > a::after { display: none; }
    .wv-mobile-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(46, 42, 37, 0.4); z-index: 199; animation: wv-fade-in 0.3s ease; }
    /* Grid */
    .wv-posts-grid { grid-template-columns: 1fr; gap: 24px; }
    /* Single */
    .single .entry-title { font-size: 1.75rem; }
    .single .inside-article, .page .inside-article { padding: 0 16px; }
    .single .entry-content h2 { font-size: 1.375rem; }
    /* Author box */
    .wv-author-box { flex-direction: column; align-items: center; text-align: center; padding: 24px; }
    /* Related */
    .wv-related-posts .wv-related-grid { grid-template-columns: 1fr; }
    /* Newsletter */
    .wv-newsletter-cta { padding: 32px 20px; }
    .wv-newsletter-cta .wv-newsletter-form { flex-direction: column; }
    /* Footer */
    .wv-footer-columns { grid-template-columns: 1fr; gap: 32px; }
    .wv-footer { padding: 48px 16px 24px; }
    .wv-footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    /* Misc */
    .wv-breadcrumbs { padding: 12px 16px; font-size: 12px; }
    .wv-pagination, .nav-links { padding: 24px 0 48px; }
}

@media (max-width: 480px) {
    .site-header .main-title a, .site-header .site-title a { font-size: 1.25rem; }
    .wv-post-card .wv-card-title { font-size: 1.1rem; }
}

@keyframes wv-slide-in { from { transform: translateX(100%); } to { transform: translateX(0); } }
@keyframes wv-fade-in { from { opacity: 0; } to { opacity: 1; } }

/*Utilities*/

.wv-sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/*WordPress Blocks*/

.entry-content .alignwide { max-width: var(--wv-grid-width); margin-left: auto; margin-right: auto; width: 100%; }
.entry-content .alignfull { width: 100vw; max-width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); }
.entry-content .aligncenter { display: block; margin-left: auto; margin-right: auto; }
.entry-content .alignleft { float: left; margin-right: 1.5em; margin-bottom: 1em; }
.entry-content .alignright { float: right; margin-left: 1.5em; margin-bottom: 1em; }
.wp-block-image img { border-radius: var(--wv-radius-sm); }
.wp-block-image figcaption { font-family: 'DM Sans', sans-serif; font-size: 13px; color: var(--wv-text-light); text-align: center; margin-top: 8px; }
.wp-block-separator { border: none; border-top: 1px solid var(--wv-border); margin: 2em 0; }
.wp-block-table td, .wp-block-table th { border: 1px solid var(--wv-border); padding: 12px 16px; }
.wp-block-table th { font-family: 'DM Sans', sans-serif; font-weight: 600; background-color: var(--wv-primary-light); }
.wp-block-button .wp-block-button__link { font-family: 'DM Sans', sans-serif; font-weight: 600; background-color: var(--wv-primary); color: #fff; border-radius: var(--wv-radius-sm); padding: 12px 28px; transition: background-color 0.2s ease; }
.wp-block-button .wp-block-button__link:hover { background-color: var(--wv-primary-hover); color: #fff; }

/* GP overrides */
.post-navigation { display: none; }
.entry-meta { font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--wv-text-light); }
