/* ─── Breadcrumbs ──────────────────────────────────────────────────────────── */

.azm-breadcrumbs {
    padding: 12px 0;
    margin-bottom: 16px;
    font-size: 14px;
    color: #666;
}

.azm-breadcrumbs ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
}

.azm-breadcrumbs li {
    display: inline-flex;
    align-items: center;
}

.azm-breadcrumbs a {
    color: #f5b5d2;
    text-decoration: none;
    transition: color 0.2s;
}

.azm-breadcrumbs a:hover {
    color: #d4899e;
    text-decoration: underline;
}

.azm-breadcrumbs__separator {
    margin: 0 6px;
    color: #ccc;
}

/* ─── "Alle Kurse" Button ────────────────────────────────────────────────── */

.azm-all-courses-btn-wrap {
    padding: 12px 16px;
}

.azm-all-courses-btn {
    display: inline-block;
    padding: 8px 16px;
    background: #f5b5d2;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s;
}

.azm-all-courses-btn:hover {
    background: #d4899e;
    color: #fff;
    text-decoration: none;
}

/* ─── Course Sidebar Layout ───────────────────────────────────────────────── */

.azm-course-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.azm-course-layout__sidebar {
    flex: 0 0 280px;
    min-width: 0;
}

.azm-course-layout__content {
    flex: 1;
    min-width: 0;
}

/* Sidebar widgets */
.azm-sidebar-widget {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.azm-sidebar-widget__title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 12px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #f5b5d2;
    color: #333;
}

/* Responsive: stack sidebar on small screens */
@media (max-width: 768px) {
    .azm-course-layout {
        flex-direction: column;
    }

    .azm-course-layout__sidebar {
        flex: none;
        width: 100%;
        order: -1;
    }
}
