/* Magazine Skin - Classic & Elegant */
:root {
    --primary-color: #0078d4;
    
}

.skin-magazine .main-header {
    border-bottom: 3px double #eee;
}

.skin-magazine h1,
.skin-magazine h2,
.skin-magazine h3 {
    font-family: var(--font-sans);
}

.skin-magazine .post-card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.skin-magazine .post-card:hover {
    transform: translateY(-5px);
}

.skin-magazine .banner {
    background: linear-gradient(135deg, #0078d4 0%, #00bcf2 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
    border-radius: 8px;
}