/* SEO Landing Pages Styles */

.vg-seo-landing-page {
    padding: 60px 20px;
    background: linear-gradient(135deg, #F2EFE8 0%, #A7967F 100%);
    min-height: 100vh;
}

.vg-container {
    max-width: 900px;
    margin: 0 auto;
}

.vg-seo-article {
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-bottom: 60px;
}

.entry-header {
    margin-bottom: 30px;
    border-bottom: 3px solid #C4A55A;
    padding-bottom: 20px;
}

.entry-title {
    font-size: 2.5rem;
    color: #2A271F;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.entry-meta {
    color: #897760;
    font-size: 0.95rem;
}

.entry-image {
    margin: 40px 0;
    border-radius: 8px;
    overflow: hidden;
}

.entry-image img {
    width: 100%;
    height: auto;
    display: block;
}

.entry-content {
    color: #2A271F;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.entry-content h2,
.entry-content h3 {
    color: #2A271F;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.entry-content h2 {
    font-size: 1.8rem;
    border-left: 4px solid #C4A55A;
    padding-left: 15px;
}

.entry-content h3 {
    font-size: 1.4rem;
}

.entry-content ul,
.entry-content ol {
    margin: 20px 0 20px 30px;
}

.entry-content li {
    margin-bottom: 10px;
}

.vg-seo-cta {
    margin: 40px 0;
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #C4A55A 0%, #897760 100%);
    border-radius: 8px;
}

.vg-button {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.vg-button-primary {
    background: white;
    color: #C4A55A;
}

.vg-button-primary:hover {
    background: #F2EFE8;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(196, 165, 90, 0.3);
}

.entry-footer {
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    color: #897760;
}

.entry-categories {
    font-size: 0.95rem;
}

.entry-categories a {
    color: #C4A55A;
    text-decoration: none;
    font-weight: 500;
}

.entry-categories a:hover {
    text-decoration: underline;
}

/* Related Pages Section */
.vg-related-pages {
    background: white;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 60px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.vg-related-pages h2 {
    color: #2A271F;
    font-size: 2rem;
    margin-bottom: 30px;
    border-bottom: 3px solid #C4A55A;
    padding-bottom: 15px;
}

.vg-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.vg-related-item {
    padding: 20px;
    background: #F2EFE8;
    border-radius: 6px;
    transition: all 0.3s ease;
    border-left: 4px solid #C4A55A;
}

.vg-related-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(196, 165, 90, 0.2);
}

.vg-related-item h3 {
    margin: 0 0 15px 0;
    color: #2A271F;
}

.vg-related-item h3 a {
    color: #C4A55A;
    text-decoration: none;
    font-weight: 600;
}

.vg-related-item h3 a:hover {
    text-decoration: underline;
}

.vg-related-item p {
    color: #2A271F;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.vg-link {
    color: #C4A55A;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.vg-link:hover {
    color: #897760;
    text-decoration: underline;
}

/* Post Navigation */
.post-navigation {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    gap: 20px;
}

.nav-previous,
.nav-next {
    flex: 1;
}

.nav-previous a,
.nav-next a {
    display: block;
    padding: 15px 20px;
    background: #F2EFE8;
    color: #2A271F;
    text-decoration: none;
    border-radius: 6px;
    border-left: 4px solid #C4A55A;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-previous a:hover,
.nav-next a:hover {
    background: #C4A55A;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .vg-seo-article {
        padding: 20px;
    }

    .entry-title {
        font-size: 1.8rem;
    }

    .entry-content {
        font-size: 1rem;
    }

    .vg-related-grid {
        grid-template-columns: 1fr;
    }

    .post-navigation {
        flex-direction: column;
    }
}
