/* ===================================
   EDITORIAL SECTIONS - IMPROVED DESIGN
   =================================== */

/* Featured Stories Section */
.wv-story-card {
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
}

.wv-story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--icon-color, #d97706) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.wv-story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.wv-story-card:hover::before {
    opacity: 1;
}

.wv-story-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 1.25rem;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.wv-story-card:hover .wv-story-icon {
    transform: scale(1.1) rotate(5deg);
}

.wv-story-meta {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.wv-story-meta::before {
    content: '◆';
    font-size: 0.5rem;
    color: var(--wv-primary);
}

.wv-story-title {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.875rem;
    color: #1e293b;
    font-family: 'DM Serif Display', serif;
}

.wv-story-excerpt {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
    flex: 1;
}

/* City Guides Section */
.wv-guide-card {
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
}

.wv-guide-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--wv-primary-light) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.wv-guide-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    border-color: var(--wv-primary-light);
}

.wv-guide-card:hover::after {
    opacity: 0.3;
}

.wv-guide-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.wv-guide-header i {
    font-size: 36px;
    color: var(--wv-primary);
    transition: transform 0.3s;
}

.wv-guide-card:hover .wv-guide-header i {
    transform: scale(1.15);
}

.wv-guide-count {
    font-size: 0.85rem;
    color: #94a3b8;
    background: #f1f5f9;
    padding: 0.35rem 0.875rem;
    border-radius: 20px;
    font-weight: 600;
}

.wv-guide-city {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1e293b;
    font-family: 'DM Serif Display', serif;
}

.wv-guide-highlight {
    font-size: 1rem;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

/* Collections Section */
.wv-collection-card {
    padding: 1.75rem 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    border: 2px solid transparent;
    cursor: pointer;
}

.wv-collection-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-color: var(--wv-primary);
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

.wv-collection-name {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.625rem;
    color: #1e293b;
    line-height: 1.3;
}

.wv-collection-description {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #64748b;
    margin-bottom: 0.75rem;
}

.wv-collection-count {
    font-size: 0.8rem;
    color: var(--wv-primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.wv-collection-count::before {
    content: '→';
    font-size: 1rem;
    transition: transform 0.3s;
}

.wv-collection-card:hover .wv-collection-count::before {
    transform: translateX(4px);
}

/* Section Headers Enhancement */
.wv-section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--wv-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.wv-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
    font-family: 'DM Serif Display', serif;
    line-height: 1.2;
}

.wv-section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .wv-story-card,
    .wv-guide-card {
        padding: 1.75rem;
    }
    
    .wv-section-title {
        font-size: 2rem;
    }
    
    .wv-guide-city {
        font-size: 1.35rem;
    }
}

@media (max-width: 767px) {
    .wv-story-card,
    .wv-guide-card {
        padding: 1.5rem;
    }
    
    .wv-section-title {
        font-size: 1.75rem;
    }
    
    .wv-story-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }
    
    .wv-guide-header i {
        font-size: 28px;
    }
    
    .wv-collection-card {
        padding: 1.5rem 1.25rem;
    }
}

/* Background Patterns for Sections */
.section-padding {
    position: relative;
}

.section-padding.bg-alt {
    background: linear-gradient(135deg, #fffbf7 0%, #fef8f3 100%);
}

/* Add subtle animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.wv-story-icon {
    animation: float 3s ease-in-out infinite;
}

.wv-story-card:hover .wv-story-icon {
    animation: none;
}
