  @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

    :root {
        --primary-color: #ff8c42;
        --primary-hover: #e67a35;
        --secondary-color: #0a1931;
        --bg-light: #f8fafc;
        --text-muted: #64748b;
    }

    body {
        background-color: #ffffff;
        color: var(--secondary-color);
        margin: 0;
        padding: 0;
    }

    /* --- DETAIL HERO --- */
    .detail-hero {
        background-color: var(--secondary-color);
        padding: 80px 0;
        color: white;
        text-align: center;
    }

    .breadcrumb-custom {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .breadcrumb-custom a {
        color: var(--primary-color);
        text-decoration: none;
    }

    .post-title {
        font-size: 42px;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 25px;
    }

    /* --- MAIN CONTENT --- */
    .main-post-img {
        width: 100%;
        max-height: 500px;
        object-fit: cover;
        border-radius: 40px;
        margin-top: -60px;
        box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    }

    .content-area {
        max-width: 800px;
        margin: 60px auto;
        font-size: 18px;
        line-height: 1.8;
        color: #444;
    }

    .content-area h2 {
        font-weight: 700;
        margin: 40px 0 20px;
        color: var(--secondary-color);
    }

    .content-area blockquote {
        border-left: 5px solid var(--primary-color);
        padding: 20px 30px;
        background: var(--bg-light);
        font-style: italic;
        border-radius: 0 20px 20px 0;
        margin: 40px 0;
    }

    /* --- AUTHOR BOX --- */
    .author-box {
        background: var(--bg-light);
        padding: 40px;
        border-radius: 30px;
        display: flex;
        align-items: center;
        gap: 30px;
        margin-top: 60px;
    }

    .author-img {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        object-fit: cover;
    }

    /* --- RELATED POSTS --- */
    .related-section {
        background: var(--bg-light);
        padding: 80px 0;
    }

    .related-card {
        background: white;
        border-radius: 25px;
        overflow: hidden;
        transition: 0.3s;
        border: 1px solid rgba(0,0,0,0.05);
        height: 100%;
    }

    .related-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    }

    .related-img {
        height: 200px;
        width: 100%;
        object-fit: cover;
    }

    @media (max-width: 768px) {
        .post-title { font-size: 30px; }
        .author-box { flex-direction: column; text-align: center; }
    }