/* Vintage SEO Pages Frontend CSS */

.vseo-content-area {
    max-width: 1240px;
    width: 100%;
    margin: 40px auto;
    padding: 0 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    color: #2c3e50;
    line-height: 1.7;
}

.vseo-landing-page {
    /* background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05); */
}

.vseo-breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
}

.vseo-breadcrumb a {
    color: #4f46e5;
    text-decoration: none;
    font-weight: 600;
}

.vseo-breadcrumb a:hover {
    text-decoration: underline;
}

.vseo-entry-header {
    margin-bottom: 30px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 20px;
}

.vseo-entry-title {
    font-size: 32px;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.2;
    margin: 0 0 12px 0;
}

.vseo-location-badge {
    display: inline-block;
    background: #f1f5f9;
    color: #334155;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.vseo-entry-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-top: 28px;
    margin-bottom: 12px;
}

.vseo-entry-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #334155;
    margin-top: 24px;
    margin-bottom: 10px;
}

.vseo-entry-content p {
    margin-bottom: 16px;
}

.vseo-cta-banner {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.vseo-call-button {
    display: inline-block;
    background: #059669;
    color: #ffffff !important;
    font-size: 18px;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none !important;
    box-shadow: 0 10px 15px -3px rgba(5, 150, 105, 0.3);
    transition: all 0.2s ease;
}

.vseo-call-button:hover {
    background: #047857;
    transform: translateY(-2px);
}

/* Directory Shortcode */
.vseo-directory-container {
    margin: 20px 0;
}

.vseo-item-group {
    margin-bottom: 30px;
}

.vseo-item-heading {
    font-size: 22px;
    border-bottom: 2px solid #6366f1;
    padding-bottom: 8px;
    margin-bottom: 16px;
}

.vseo-city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.vseo-city-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 16px;
}

.vseo-city-link {
    font-weight: 700;
    color: #4338ca;
    text-decoration: none;
    display: block;
}

.vseo-subcity-list {
    margin: 8px 0 0 12px;
    padding: 0;
    list-style: none;
    font-size: 13px;
}

.vseo-subcity-list a {
    color: #475569;
    text-decoration: none;
}

.vseo-subcity-list a:hover {
    color: #4338ca;
    text-decoration: underline;
}

@media screen and (max-width:575px){
    body .vseo-entry-title {
        font-size: 20px;
    }
}


