﻿/* === BLOG PAGE STYLES === */

/* Page Background */
body.blog-page {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

/* Blog Hero Section */
.blog-hero {
    padding: 100px 0 0;
    text-align: center;
}

.blog-hero h1 {
    font-family: 'Unbounded', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.blog-hero p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto;
}

/* Blog Articles Grid */
.blog-articles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 350px));
    gap: 30px;
    margin-top: 60px;
    justify-content: start;
}

/* Blog Card */
.blog-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: scale(1.02);
}

/* Blog Card Image */
.blog-card-image {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, #192B63, #005b58);
    position: relative;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Blog Card Content */
.blog-card-content {
    padding: 30px;
    background: transparent;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Blog Card Meta */
.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.blog-card-date {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #6c757d;
}

.blog-card-category {
    background: #192B63;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
}

/* Blog Card Title */
.blog-card-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
}

/* Blog Card Description */
.blog-card-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Blog Card Link */
.blog-card-link {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #192B63;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.blog-card-link:hover {
    color: #005b58;
    transform: translateX(4px);
}

.blog-card-link .link-icon {
    width: 18px;
    height: 18px;
    stroke-width: 2;
    transition: transform 0.3s ease;
}

.blog-card-link:hover .link-icon {
    transform: translateX(4px);
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .blog-hero {
        padding: 40px 0 0;
    }
    
    .blog-hero h1 {
        font-size: 36px;
    }
    
    .blog-hero p {
        font-size: 16px;
    }
    
    .blog-articles {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .blog-card-content {
        padding: 25px;
    }
}
