﻿/* =========================
   BLOG LIST PAGE
========================= */

.blog-page {
    padding: 20px 0;
}

    /* Blog Card Content */
    .blog-page .blog-content {
        padding: 25px;
    }

    /* Category label */
    .blog-page .blog-category {
        color: #0d6efd;
        font-size: 13px;
        font-weight: 600;
        margin-bottom: 10px;
        text-transform: uppercase;
    }

    /* Blog title */
    .blog-page .blog-content h2 {
        font-size: 24px;
        margin-bottom: 15px;
        line-height: 1.4;
    }

        .blog-page .blog-content h2 a {
            color: #222;
            text-decoration: none;
            transition: 0.2s ease;
        }

            .blog-page .blog-content h2 a:hover {
                color: #0d6efd;
            }

    /* Blog description */
    .blog-page .blog-content p {
        color: #666;
        line-height: 1.7;
    }

    /* Blog footer area */
    .blog-page .blog-footer {
        margin-top: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Read more button */
    .blog-page .btn-read-more {
        background: #0d6efd;
        color: white;
        padding: 10px 18px;
        border-radius: 8px;
        text-decoration: none;
        transition: 0.2s ease;
    }

        .blog-page .btn-read-more:hover {
            background: #084298;
        }

    /* Blog image */
    .blog-page .blog-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 10px;
    }

/* =========================
   BLOG DETAIL PAGE
========================= */

.blog-detail-page {
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Title */
.blog-detail-header h1 {
    font-size: 48px;
    margin-top: 15px;
    margin-bottom: 20px;
}

/* Meta info */
.blog-meta {
    color: #777;
    margin-bottom: 30px;
}

/* Cover image */
.blog-cover-image img {
    border-radius: 20px;
    margin-bottom: 40px;
    width: 100%;
}

/* Content area */
.blog-content-area {
    font-size: 18px;
    line-height: 1.9;
    color: #333;
}

    /* Headings inside content */
    .blog-content-area h2,
    .blog-content-area h3 {
        margin-top: 35px;
        margin-bottom: 20px;
    }

/* =========================
   RESPONSIVE FIX
========================= */

@media (max-width: 768px) {

    .blog-page .blog-content h2 {
        font-size: 18px;
    }

    .blog-page .blog-content p {
        font-size: 14px;
    }

    .blog-detail-header h1 {
        font-size: 28px;
    }

    .blog-content-area {
        font-size: 16px;
        line-height: 1.7;
    }
}
