/* ====================================
   Blog Page Specific Styles
   ==================================== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a1f71 0%, #4c5fd5 100%);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Writings Section */
.writings-section {
    padding: 80px 0;
}

.writings-section h2 {
    text-align: center;
    color: #1a1f71;
    margin-bottom: 50px;
}

/* Articles Grid */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Article Card Styles */
.article-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article-content {
    padding: 25px;
}

.article-card h3 {
    color: #1a1f71;
    margin-bottom: 10px;
    font-size: 1.25rem;
    line-height: 1.4;
}

.article-date {
    color: #f9c74f;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.article-card p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    color: #4c5fd5;
    text-decoration: none;
    font-weight: 600;
}

.read-more:hover {
    color: #1a1f71;
}

/* Responsive Design */
@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .writings-section {
        padding: 40px 0;
    }
}

/* Animation Disable Support */
.no-animations .article-card {
    transition: none !important;
}

.no-animations .read-more {
    transition: none !important;
}