.course-detail-hero {
    background:
        radial-gradient(circle at 82% 18%, rgba(255, 223, 196, 0.48) 0, rgba(255, 223, 196, 0) 32%),
        linear-gradient(135deg, #fff8ef 0%, #ffe5da 58%, #f8d6df 100%);
    padding: 72px 0 64px;
    color: #2b201b;
}

.course-detail-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 48px;
    align-items: center;
}

.course-back-link {
    display: inline-flex;
    margin-bottom: 20px;
    color: rgba(43, 32, 27, 0.66);
    font-size: 14px;
    font-weight: 800;
}

.course-kicker {
    display: inline-flex;
    width: fit-content;
    padding: 7px 12px;
    border: 1px solid rgba(145, 88, 63, 0.18);
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.48);
    color: #8d4a55;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.course-detail-title {
    max-width: 760px;
    font-size: 54px;
    line-height: 1.04;
    letter-spacing: -2px;
    color: #2b201b;
    margin-bottom: 18px;
}

.course-detail-description {
    max-width: 660px;
    color: rgba(43, 32, 27, 0.72);
    font-size: 18px;
    line-height: 1.75;
}

.course-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.course-detail-meta span {
    padding: 8px 13px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(145, 88, 63, 0.14);
    color: #8d4a55;
    font-size: 13px;
    font-weight: 800;
}

.course-detail-visual {
    min-height: 360px;
    border-radius: 34px;
    overflow: hidden;
    background: #fffaf7;
    box-shadow: 0 28px 70px rgba(98, 52, 38, 0.16);
    border: 1px solid rgba(145, 88, 63, 0.12);
}

.course-detail-image,
.course-detail-placeholder {
    width: 100%;
    height: 100%;
    min-height: 360px;
}

.course-detail-image {
    display: block;
    object-fit: cover;
}

.course-detail-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 84px;
    background:
        radial-gradient(circle at 30% 25%, rgba(255, 59, 48, 0.16), transparent 28%),
        #fffaf7;
}

.course-stops-section {
    padding: 64px 0 88px;
    background: #faf9f7;
}

.course-stops-header {
    margin-bottom: 28px;
}

.course-stops-header h2 {
    font-size: 34px;
    letter-spacing: -1px;
    color: #2b201b;
}

.course-stop-list {
    display: grid;
    gap: 18px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.course-stop-card {
    border-radius: 28px;
    background: #fff;
    border: 1px solid rgba(145, 88, 63, 0.12);
    box-shadow: 0 16px 44px rgba(98, 52, 38, 0.08);
    overflow: hidden;
}

.course-stop-link {
    display: grid;
    grid-template-columns: 54px 180px minmax(0, 1fr);
    gap: 20px;
    padding: 18px;
    color: inherit;
}

.course-stop-order {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2b201b;
    color: #fff8ef;
    font-weight: 900;
}

.course-stop-image-wrap {
    min-height: 130px;
    border-radius: 20px;
    overflow: hidden;
    background: #fff4ef;
}

.course-stop-image,
.course-stop-placeholder {
    width: 100%;
    height: 100%;
    min-height: 130px;
}

.course-stop-image {
    display: block;
    object-fit: cover;
}

.course-stop-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
}

.course-stop-body {
    min-width: 0;
}

.course-stop-topline,
.course-stop-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.course-stop-category,
.course-stop-status,
.course-stop-stats span {
    padding: 5px 10px;
    border-radius: var(--radius-full);
    background: #fff0f3;
    color: #8d4a55;
    font-size: 12px;
    font-weight: 800;
}

.course-stop-body h3 {
    margin: 12px 0 8px;
    color: #2b201b;
    font-size: 24px;
    letter-spacing: -0.6px;
}

.course-stop-date,
.course-stop-address {
    color: rgba(43, 32, 27, 0.66);
    font-size: 14px;
    margin-bottom: 6px;
}

.course-stop-stats {
    margin-top: 12px;
}

.course-empty-state {
    padding: 36px;
    border-radius: 24px;
    background: #fff;
    color: rgba(43, 32, 27, 0.66);
    text-align: center;
}

@media (max-width: 900px) {
    .course-detail-hero-grid,
    .course-stop-link {
        grid-template-columns: 1fr;
    }

    .course-detail-title {
        font-size: 40px;
    }

    .course-stop-order {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 480px) {
    .course-detail-hero {
        padding: 48px 0;
    }

    .course-detail-title {
        font-size: 34px;
    }

    .course-detail-description {
        font-size: 15px;
    }
}
