.course-hero {
    overflow: hidden;
    padding: 54px 0 42px;
    background: linear-gradient(90deg, #fff 0%, #fff 50%, #f9fbff 100%);
}

.course-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(470px, 1.1fr);
    align-items: center;
    gap: 36px;
}

.course-kicker {
    margin: 0 0 18px;
    color: var(--color-accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.course-hero h1 {
    max-width: 620px;
    margin: 0;
    color: var(--color-heading);
    font-family: var(--font-heading);
    font-size: 50px;
    line-height: 1.07;
    letter-spacing: -.03em;
}

.course-hero__line {
    display: block;
}

.course-hero__line--nowrap {
    white-space: nowrap;
}

.course-hero__lead {
    max-width: 650px;
    margin: 22px 0 0;
    color: var(--color-muted);
    font-size: 15px;
    line-height: 1.55;
}

.course-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 38px;
}

.course-fact {
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 58px;
    padding-right: 18px;
    color: var(--color-heading);
    border-right: 1px solid var(--color-border);
}

.course-fact + .course-fact { padding-left: 22px; }
.course-fact:last-child { border-right: 0; }
.course-fact .icon { width: 38px; height: 38px; flex: 0 0 auto; color: #ff5b00; }
.course-fact strong { font-size: 13px; line-height: 1.4; }

.course-exclusive {
    display: flex;
    max-width: 540px;
    align-items: center;
    gap: 18px;
    margin-top: 34px;
    padding: 20px 22px;
    background: #f6f6f7;
    border-radius: 10px;
}
.course-exclusive .icon { width: 38px; height: 38px; flex: 0 0 auto; color: #ff5b00; }
.course-exclusive p { margin: 0; color: var(--color-muted); font-size: 14px; line-height: 1.5; }

.course-space-download {
    margin-top: 16px;
}

.course-space-download .button {
    min-height: 42px;
}

.course-space-download .button:hover,
.course-space-download .button:focus-visible {
    color: #ffffff;
    background: #EC8000;
    border-color: #EC8000;
}

.course-hero__visual img { width: 100%; object-fit: contain; }

.course-summary { padding: 38px 0 24px; background: #fafafa; }
.course-summary__grid { display: grid; grid-template-columns: 1.25fr repeat(3, 1fr); gap: 10px; }
.course-about { padding: 18px 28px 20px 0; }
.course-about h2, .course-section-title h2 { margin: 0; color: var(--color-heading); font-family: var(--font-heading); font-size: 28px; }
.heading-line, .course-section-title span { display: block; width: 40px; height: 2px; margin-top: 16px; background: #ff5b00; }
.course-about p { margin: 28px 0 0; color: var(--color-muted); font-size: 14px; line-height: 1.75; }

.course-info-card {
    padding: 28px 28px 30px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 10px;
}
.course-info-card .icon { width: 52px; height: 52px; color: #ff5b00; }
.course-info-card h3 { margin: 18px 0 10px; color: var(--color-heading); font-family: var(--font-heading); font-size: 21px; }
.course-info-card p { margin: 0; color: var(--color-muted); font-size: 13px; line-height: 1.7; }

.course-program { padding: 34px 0 16px; }
.course-section-title { margin-bottom: 12px; }
.course-module-list { margin: 0; padding: 0; list-style: none; }
.course-module {
    position: relative;
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    min-height: 72px;
    padding: 10px 20px 10px 0;
    border-bottom: 1px solid var(--color-border);
}
.course-module:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 44px;
    bottom: -28px;
    left: 15px;
    width: 1px;
    background: #d9dde4;
}
.course-module__number {
    position: relative;
    z-index: 1;
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    color: #fff;
    background: #ff5b00;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
}
.course-module:last-child .course-module__number { color: #ff5b00; background: #fff; border: 2px solid #ff5b00; }
.course-module__body h3 { margin: 0; color: var(--color-heading); font-size: 15px; }
.course-module__body p { margin: 3px 0 0; color: var(--color-muted); font-size: 13px; line-height: 1.45; }
.course-module__duration { display: flex; align-items: center; gap: 10px; color: var(--color-heading); font-size: 12px; white-space: nowrap; }
.course-module__duration .icon { width: 20px; height: 20px; }

.course-outcomes { padding: 28px 0 62px; }
.course-outcomes__grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); margin-top: 22px; }
.course-outcome { min-height: 150px; padding: 8px 18px; text-align: center; border-right: 1px solid var(--color-border); }
.course-outcome:last-child { border-right: 0; }
.course-outcome .icon { width: 48px; height: 48px; color: #ff5b00; }
.course-outcome p { margin: 15px 0 0; color: var(--color-muted); font-size: 12px; line-height: 1.45; }

@media (max-width: 1050px) {
    .course-hero__grid { grid-template-columns: 1fr 1fr; }
    .course-summary__grid { grid-template-columns: repeat(2, 1fr); }
    .course-about { padding-right: 20px; }
    .course-outcomes__grid { grid-template-columns: repeat(3, 1fr); gap: 20px 0; }
    .course-outcome:nth-child(3) { border-right: 0; }
}

@media (max-width: 760px) {
    .course-hero { padding-top: 34px; }
    .course-hero__grid { grid-template-columns: 1fr; }
    .course-hero__visual { order: -1; }
    .course-hero h1 { font-size: clamp(2.15rem, 10vw, 3.125rem); }
    .course-hero__line--nowrap { white-space: normal; }
    .course-facts { grid-template-columns: 1fr; gap: 12px; }
    .course-space-download .button { width: 100%; }
    .course-fact, .course-fact + .course-fact { padding: 0; border-right: 0; }
    .course-summary__grid { grid-template-columns: 1fr; }
    .course-about { padding-right: 0; }
    .course-module { grid-template-columns: 30px 1fr; padding-right: 0; }
    .course-module__duration { grid-column: 2; margin-top: -4px; }
    .course-outcomes__grid { grid-template-columns: repeat(2, 1fr); }
    .course-outcome, .course-outcome:nth-child(3) { border-right: 1px solid var(--color-border); }
    .course-outcome:nth-child(even) { border-right: 0; }
}

.course-module-list--without-duration .course-module {
    grid-template-columns: 32px minmax(0, 1fr);
    padding-right: 0;
}
