/*
Theme Name: Volza Blog Theme
Theme URI: https://volza.com
Author: Volza
Author URI: https://volza.com
Description: A professional trade intelligence blog theme for Volza - fully responsive with pixel-perfect design.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: volza
Tags: blog, custom-menu, featured-images, post-thumbnails, translation-ready
*/

/* =========================================
   POST NAVIGATION
   ========================================= */
.vz-post-navigation {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.vz-nav-prev,
.vz-nav-next {
    flex: 1;
    min-width: 200px;
    background: var(--white-color);
    border: 1px solid #D1D5DC;
    border-radius: 12px;
    padding: 15px 20px;
    text-decoration: none;
    color: var(--black-color);
    display: flex;
    flex-direction: column;
    gap: 5px;
    transition: all 0.3s ease;
}

.vz-nav-prev:hover,
.vz-nav-next:hover {
    border-color: var(--blue-light);
    box-shadow: 0 4px 12px rgba(0, 115, 242, 0.15);
}

.vz-nav-next {
    text-align: right;
}

.vz-nav-label {
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 500;
}

.vz-nav-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--black-color);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* =========================================
   SHARE & TAGS
   ========================================= */
.vz-share-section {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.vz-share-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--black-color);
}

.vz-share-links {
    display: flex;
    gap: 10px;
}

.vz-share-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #D1D5DC;
    color: var(--black-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.vz-share-link:hover {
    background: var(--blue-light);
    border-color: var(--blue-light);
    color: #fff;
}

.vz-post-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.vz-tags-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--black-color);
}

.vz-tag-link {
    display: inline-block;
    padding: 4px 12px;
    background: #EEF4FA;
    border-radius: 20px;
    font-size: 12px;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.vz-tag-link:hover {
    background: var(--blue-light);
    color: #fff;
}

/* =========================================
   RELATED POSTS
   ========================================= */
.vz-related-posts {
    margin-top: 40px;
    margin-bottom: 30px;
}

.vz-related-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--black-color);
    border-bottom: 2px solid var(--blue-light);
    padding-bottom: 10px;
    display: inline-block;
}

/* =========================================
   PAGINATION
   ========================================= */
.vz-pagination {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.vz-pagination .nav-links {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.vz-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #D1D5DC;
    font-size: 14px;
    font-weight: 500;
    color: var(--black-color);
    text-decoration: none;
    transition: all 0.3s ease;
    background: var(--white-color);
}

.vz-pagination .page-numbers:hover,
.vz-pagination .page-numbers.current {
    background: var(--blue-light);
    border-color: var(--blue-light);
    color: #fff;
}

.vz-pagination .page-numbers.dots {
    border: none;
    background: transparent;
    cursor: default;
}

/* =========================================
   SEARCH PAGE
   ========================================= */
.vz-search-header {
    background: var(--white-color);
    padding: 20px 0;
    border-bottom: 1px solid #E5E7EB;
    margin-bottom: 30px;
}

.vz-search-form-wrap {
    display: flex;
    justify-content: center;
    padding: 0 10px;
}

.vz-search-input-group {
    display: flex;
    align-items: center;
    border: 1.5px solid #D1D5DC;
    border-radius: 30px;
    padding: 10px 20px;
    gap: 12px;
    max-width: 580px;
    width: 100%;
    background: var(--white-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.vz-search-icon {
    color: #9CA3AF;
    flex-shrink: 0;
}

.vz-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: var(--font-poppins);
    color: var(--black-color);
    background: transparent;
}

.vz-search-input::placeholder {
    color: #9CA3AF;
}

.vz-search-cancel {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.vz-search-cancel:hover {
    color: var(--blue-light);
}

.vz-search-body {
    padding: 0 10px;
}

.vz-search-results-count {
    font-size: 18px;
    font-weight: 600;
    color: var(--black-color);
    margin-bottom: 24px;
}

.vz-load-more-wrap {
    text-align: center;
    margin: 30px 0;
}

.vz-load-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--black-color);
    text-decoration: none;
    transition: color 0.3s;
}

.vz-load-more:hover {
    color: var(--blue-light);
}

/* No Results */
.vz-no-results {
    text-align: center;
    padding: 60px 20px;
}

.vz-no-results-icon {
    width: 100px;
    height: auto;
    margin: 0 auto 20px;
    opacity: 0.6;
}

.vz-no-results h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 10px;
}

.vz-no-results p {
    font-size: 14px;
    color: var(--primary-color);
    max-width: 380px;
    margin: 0 auto;
    line-height: 22px;
}

/* =========================================
   404 PAGE
   ========================================= */
.vz-404-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.vz-404-wrap {
    max-width: 500px;
}

.vz-404-number {
    font-size: 120px;
    font-weight: 700;
    color: var(--blue-light);
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.15;
}

.vz-404-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 15px;
}

.vz-404-text {
    font-size: 15px;
    color: var(--primary-color);
    line-height: 24px;
    margin-bottom: 30px;
}

.vz-404-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue-light);
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.vz-404-btn:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
}

/* =========================================
   WORDPRESS DEFAULT WIDGETS
   ========================================= */
.widget {
    margin-bottom: 30px;
}

.widget-title {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    margin-bottom: 18px;
    border-bottom: 1px solid #949494;
    padding-bottom: 8px;
    color: var(--black-color);
}

.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget ul li {
    padding: 5px 0;
}

.widget ul li a {
    color: var(--blue-light);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.widget ul li a:hover {
    color: var(--blue-dark);
}