.detail-header {
    min-height: 350px;
    display: flex;
    align-items: flex-end;
    border-radius: 1.5rem;
    position: relative;
    margin-bottom: 2rem;
}

.detail-header-overlay {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    border-radius: 1.5rem;
    padding: 2rem;
    width: 100%;
}

.detail-header .title {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    align-items: center;
}

.detail-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #2c3e50;
}

.detail-content p {
    margin-bottom: 1.25rem;
}

.detail-content img {
    max-width: 100%;
    border-radius: 1rem;
    margin: 1.5rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.nav-links {
    border-top: 1px solid #dee2e6;
    padding-top: 2rem;
    margin-top: 2rem;
}

.back-to-list {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.back-to-list:hover {
    transform: translateX(-5px);
}

.transition-hover {
    transition: all 0.3s;
}

.transition-hover:hover {
    background-color: #f8f9fa;
    border-color: #FEA116 !important;
}

@media (max-width: 768px) {
    .detail-header {
        min-height: 280px;
    }

    .detail-header .title {
        font-size: 1.5rem;
    }

    .detail-meta {
        gap: 1rem;
        font-size: 0.8rem;
    }
}
