/* ============================================
   Achievement Detail Page — Specific Styles
   ============================================ */

/* ── Detail Header ── */
.detail-header {
    background: linear-gradient(rgba(0, 51, 102, 0.85), rgba(0, 51, 102, 0.85)), url('../images/hero.png');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: white;
    text-align: center;
    border-bottom: 5px solid var(--primary-orange);
}

/* ── Detail Meta Box ── */
.detail-meta {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    border-left: 5px solid var(--primary-orange);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    color: var(--dark-blue);
    font-size: 1.2rem;
}

.meta-item i {
    color: var(--primary-orange);
    width: 25px;
    font-size: 1.3rem;
}

/* ── Detail Content ── */
.detail-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-main);
    text-align: justify;
}

/* ── Photo Gallery ── */
.detail-gallery {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.gallery-photo {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    cursor: zoom-in;
    height: 250px;
    margin-bottom: 20px;
}

.gallery-photo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.gallery-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
