/* ===== KURS DETAY SAYFASI OVERRIDE ===== */
/* Kurs detay sayfalarında hero/layout – header içerik üstünde kalmasın (spacer ile boşluk) */

/* Spacer: fixed header yüksekliği kadar yer aç (top bar + nav ~155px) */
body.course-detail-page-wrap .header-spacer {
    display: block !important;
    height: 155px !important;
    min-height: 155px !important;
    width: 100% !important;
}

main.course-detail-page {
    padding-top: 0 !important;
}

/* Hero altta kalsın, içerik (tabs) üstte görünsün */
.course-detail-page .hero-section {
    padding: 40px 0 80px 0;
    position: relative;
    z-index: 1;
}

.course-detail-page .course-details-section {
    position: relative;
    z-index: 5;
}

.course-detail-page .hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.course-detail-page .hero-content {
    display: flex !important;
    flex-direction: column;
    gap: 30px;
}

/* Responsive */
@media (max-width: 1024px) {
    .course-detail-page .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
}

