﻿.blog-detail-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    font-family: 'Inter', sans-serif;
}

.blog-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    max-height: 350px;
}

.blog-content h1 {
    font-size: 2rem;
    color: #1e3c72;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
}

    .blog-content h1::after {
        content: "";
        position: absolute;
        bottom: -6px;
        left: 0;
        width: 50px;
        height: 2px;
        background: #f15a24;
        border-radius: 2px;
    }

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 20px;
}

    .blog-meta span {
        background: #f0f4f8;
        padding: 5px 10px;
        border-radius: 6px;
    }

.blog-content p {
    font-size: 1rem;
    color: #333;
    line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .blog-detail-container {
        gap: 20px;
    }

    .blog-content h1 {
        font-size: 1.6rem;
    }

    .blog-meta {
        flex-direction: column;
        gap: 5px;
    }
}
