/* Main Variables */
:root {
    --primary-color: #1a56db;
    --text-color: #1e293b;
    --bg-color: #f8fafc;
}

/* Featured Pages Section */
.featured-pages {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

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

.featured-card {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.25rem;
    transition: all 0.3s ease;
    background: #fff;
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: #cbd5e1;
}

.featured-card h3 {
    margin-top: 0;
    color: #1e40af;
    font-size: 1.2rem;
}

.featured-card p {
    font-size: 0.9rem;
    color: #475569;
    margin-bottom: 1rem;
}

.featured-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #1e40af;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: background-color 0.2s;
}

.featured-link:hover {
    background-color: #1e3a8a;
}

/* Story Layout */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
}

.story-header {
    text-align: center;
    margin: 2rem 0;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #4b5563;
}

/* Content Sections */
.content-section {
    margin-bottom: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Sidebar Styles */
.story-sidebar {
    position: sticky;
    top: 2rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr;
    }
    
    .story-sidebar {
        position: static;
    }
}