/* PRODUKTLISTE STYLING */
.kurs-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 12px 0;
    font-size: 13px;
}

.kurs-meta-badge {
    background: #f5f5f5;
    padding: 6px 10px;
    border-radius: 4px;
    display: inline-block;
    color: #555;
    font-size: 12px;
    line-height: 1.4;
}

.kurs-meta-badge.niveau-anfaenger {
    background: #e7f5e7;
    color: #2d7a2d;
}

.kurs-meta-badge.niveau-fortgeschritten {
    background: #fff3e0;
    color: #e65100;
}

.kurs-meta-badge.niveau-experte {
    background: #fce4ec;
    color: #c2185b;
}

/* PRODUKTSEITE KURSDETAILS BOX */
.kurs-details-box {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 25px;
    margin: 20px 0;
}

.kurs-details-titel {
    margin: 0 0 20px 0;
    font-size: 20px;
    color: #333;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 10px;
}

.kurs-details-liste {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kurs-details-liste li {
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #555;
}

.kurs-details-liste li:last-child {
    border-bottom: none;
}

.kurs-icon {
    font-size: 20px;
    margin-right: 12px;
    min-width: 30px;
    display: inline-block;
}

.kurs-details-liste strong {
    color: #0073aa;
    font-weight: 600;
}

/* LOOP META STYLING */
.kurs-meta-loop {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 10px 0;
    font-size: 12px;
}

.kurs-meta-item {
    background: #f0f8ff;
    padding: 5px 10px;
    border-radius: 3px;
    color: #0073aa;
    display: inline-flex;
    align-items: center;
}

.kurs-meta-item .kurs-icon {
    margin-right: 6px;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .kurs-details-box {
        padding: 15px;
    }

    .kurs-details-liste li {
        font-size: 14px;
        padding: 10px 0;
    }

    .kurs-meta-badge {
        font-size: 11px;
        padding: 5px 8px;
    }
}

/* ROLLOUT INFO STYLING - Premium Look */
.kurs-rollout-info {
    display: inline-flex;
    align-items: center;
    background: #fff9f0;
    /* Soft orange/cream background */
    border: 1px solid #ffcc80;
    /* Soft orange border */
    border-left: 5px solid #d2691e;
    /* Stronger accent border */
    padding: 12px 18px;
    border-radius: 8px;
    margin-bottom: 20px;
    /* Better distance from the price */
    box-shadow: 0 4px 10px rgba(210, 105, 30, 0.08);
    /* Professional subtle shadow */
    font-size: 15px;
    color: #444;
    width: auto;
    font-weight: 500;
}

.rollout-icon {
    font-size: 20px;
    margin-right: 12px;
    line-height: 1;
}

.rollout-text {
    line-height: 1.4;
    color: #d2691e;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Ensure it stands out in custom layouts */
.product-price-container .kurs-rollout-info {
    margin-top: 10px;
    margin-bottom: 25px;
}