/* ========================================
   INTERNAL LINKING SECTIONS
======================================== */

/* SEO Intro Enhancements */
.seo-intro h2 {
    font-size: 2rem;
    color: #c8aa6e;
    margin-bottom: 1.5rem;
    font-family: 'Cinzel', serif;
    text-align: center;
}

.seo-intro-content a {
    color: #c8aa6e;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

.seo-intro-content a:hover {
    color: #f0e6d2;
    border-bottom-color: #c8aa6e;
}

/* Explore More Section */
.explore-more {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
    margin-top: 3rem;
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.explore-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.explore-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c8aa6e, #785a28);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.explore-card:hover {
    background: rgba(200, 170, 110, 0.1);
    border-color: #c8aa6e;
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.explore-card:hover::before {
    transform: scaleX(1);
}

.explore-icon {
    width: 64px;
    height: 64px;
    background: rgba(200, 170, 110, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.explore-card:hover .explore-icon {
    background: rgba(200, 170, 110, 0.25);
    transform: scale(1.1);
}

.explore-icon i {
    font-size: 2rem;
    color: #c8aa6e;
}

.explore-card h3 {
    font-size: 1.4rem;
    color: #f0e6d2;
    margin-bottom: 0.75rem;
    font-family: 'Cinzel', serif;
    font-weight: 600;
}

.explore-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.explore-arrow {
    display: inline-block;
    color: #c8aa6e;
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.explore-card:hover .explore-arrow {
    transform: translateX(8px);
}

/* Inline "View All" links */
.view-all-inline {
    color: #c8aa6e;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    margin-left: 0.5rem;
    transition: color 0.2s ease;
}

.view-all-inline:hover {
    color: #f0e6d2;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .explore-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .explore-card {
        padding: 2rem;
    }
    
    .seo-intro h2 {
        font-size: 1.75rem;
    }
}