.detail-section {
    padding: 4rem 0;
    background: var(--m5s-light-gray);
    min-height: calc(100vh - 200px);
}

.detail-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-premium);
    max-width: 1000px;
    margin: 0 auto;
}

.detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.detail-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: bold;
    font-size: 0.9rem;
}

.detail-status.approved {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.detail-type {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    background: var(--m5s-blue);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.detail-title {
    font-size: 2rem;
    color: var(--m5s-blue);
    margin-bottom: 2rem;
    line-height: 1.3;
    border-bottom: 3px solid var(--m5s-yellow);
    padding-bottom: 1rem;
}

.detail-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: var(--m5s-light-gray);
    border-radius: 15px;
}

.meta-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.meta-item i {
    color: var(--m5s-blue);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.detail-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.content-section {
    padding: 1.5rem;
    background: white;
    border-left: 4px solid var(--m5s-yellow);
    border-radius: 0 10px 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.content-section h2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--m5s-blue);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.content-section h2 i {
    color: var(--m5s-yellow);
}

.content-section p {
    color: var(--m5s-dark-gray);
    line-height: 1.8;
    text-align: justify;
}

.detail-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--m5s-blue), #004080);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.3);
}

.detail-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 51, 102, 0.4);
    background: linear-gradient(135deg, #004080, #005599);
}

.detail-btn i {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .detail-card {
        padding: 1.5rem;
        margin: 0 10px;
    }
    
    .detail-title {
        font-size: 1.5rem;
    }
    
    .detail-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .detail-meta {
        grid-template-columns: 1fr;
    }
    
    .content-section {
        padding: 1rem;
    }
    
    .content-section h2 {
        font-size: 1.1rem;
    }
}
