/* ================================
   Blog / Detail Kegiatan Page
================================ */

/* Hero */
.blog-hero {
    height: 70vh;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 80px;
}

.blog-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: brightness(0.65);
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    animation: heroFadeIn 1s ease forwards;
}

.blog-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    line-height: 1.3;
}

.blog-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.3);
    margin-bottom: 1.5rem;
}

.blog-date i {
    font-size: 1.1rem;
}

/* ================================
   Blog Content Body
================================ */
.blog-content {
    padding: 5rem 0;
}

.blog-section {
    max-width: 860px;
    margin: 0 auto 4rem;
    padding: 0 24px;
}

.blog-section h2 {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.blog-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55px;
    height: 4px;
    background: #dc2626;
    border-radius: 2px;
}

.blog-intro {
    font-size: 1.15rem;
    color: #4b5563;
    line-height: 1.9;
    background: #fef2f2;
    border-left: 4px solid #dc2626;
    padding: 1.4rem 1.6rem;
    border-radius: 0 12px 12px 0;
    margin-bottom: 0;
}

/* Story body */
.blog-cerita {
    font-size: 1.05rem;
    line-height: 1.95;
    color: #374151;
}

.blog-cerita p {
    margin-bottom: 1.6rem;
}

.blog-cerita p:last-child {
    margin-bottom: 0;
}

/* Pull quote highlight */
.blog-quote {
    background: linear-gradient(135deg, #fef2f2, #fff5f5);
    border: 1px solid #fca5a5;
    border-radius: 16px;
    padding: 1.6rem 2rem;
    margin: 2rem 0;
    font-size: 1.1rem;
    font-style: italic;
    color: #991b1b;
    line-height: 1.8;
    position: relative;
}

.blog-quote::before {
    content: '\201C';
    font-size: 4rem;
    color: #dc2626;
    opacity: 0.3;
    position: absolute;
    top: -10px;
    left: 16px;
    font-family: Georgia, serif;
    line-height: 1;
}

/* Fact / highlight box */
.blog-highlight {
    background: #f8fafc;
    border-radius: 16px;
    padding: 1.6rem 2rem;
    margin: 2rem 0;
    border: 1px solid #e2e8f0;
}

.blog-highlight h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #dc2626;
    margin-bottom: 0.8rem;
}

.blog-highlight ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.blog-highlight ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.97rem;
    color: #374151;
}

.blog-highlight ul li::before {
    content: '✦';
    color: #dc2626;
    font-size: 0.7rem;
    margin-top: 5px;
    flex-shrink: 0;
}

/* Back button */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #dc2626;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 28px;
    background: white;
    border: 2px solid #dc2626;
    border-radius: 50px;
    transition: all 0.3s;
    margin-top: 2.5rem;
    width: fit-content;
}

.back-link:hover {
    background: #dc2626;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220,38,38,0.3);
}

.back-link i {
    font-size: 1rem;
}

/* Divider */
.blog-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, #e5e7eb, transparent);
    margin: 1rem 0 3rem;
}

/* ================================
   Responsive
================================ */
@media (max-width: 768px) {
    .blog-hero {
        height: 60vh;
        padding-top: 100px;
    }

    .blog-hero h1 {
        font-size: 1.9rem;
    }

    .blog-date {
        font-size: 0.88rem;
        padding: 8px 16px;
    }

    .blog-content {
        padding: 3rem 0;
    }

    .blog-section {
        padding: 0 16px;
        margin-bottom: 2.5rem;
    }

    .blog-section h2 {
        font-size: 1.6rem;
    }

    .blog-intro {
        font-size: 1rem;
    }

    .blog-cerita {
        font-size: 0.98rem;
    }

    .blog-quote {
        padding: 1.2rem 1.4rem;
        font-size: 1rem;
    }
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}