:root {
    --starter-ink: #202236;
    --starter-purple: #5d4aa6;
    --starter-orange: #f4840b;
    --starter-soft: #f5f1ff;
    --starter-line: #ded9ec;
}

* {
    box-sizing: border-box;
}

body.starter-week-page {
    margin: 0;
    color: var(--starter-ink);
    background: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
}

.starter-week-hero {
    min-height: 360px;
    padding: 32px max(24px, calc((100vw - 920px) / 2));
    color: #fff;
    background: var(--starter-purple);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.starter-week-brand {
    width: fit-content;
}

.starter-week-brand img {
    display: block;
    width: 174px;
    height: auto;
}

.starter-week-hero__copy {
    max-width: 620px;
}

.starter-week-hero__copy p,
.starter-week-episode small {
    margin: 0 0 6px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.starter-week-hero h1 {
    margin: 0 0 12px;
    font-size: clamp(34px, 6vw, 58px);
    line-height: 1.05;
    letter-spacing: 0;
}

.starter-week-hero__copy span {
    display: block;
    max-width: 580px;
    font-size: 18px;
}

.starter-week-list {
    width: min(920px, calc(100% - 40px));
    margin: 0 auto;
    padding: 42px 0 24px;
}

.starter-week-episode {
    min-height: 96px;
    padding: 18px 0;
    border-bottom: 1px solid var(--starter-line);
    display: grid;
    grid-template-columns: minmax(180px, 1fr) minmax(260px, 420px);
    gap: 24px;
    align-items: center;
}

.starter-week-episode h2 {
    margin: 0;
    font-size: 20px;
    line-height: 1.25;
    letter-spacing: 0;
}

.starter-week-episode audio {
    width: 100%;
}

.starter-week-footer {
    width: min(920px, calc(100% - 40px));
    margin: 0 auto;
    padding: 24px 0 56px;
    display: flex;
    gap: 18px;
    align-items: center;
}

.starter-week-footer a:first-child {
    min-height: 48px;
    padding: 13px 24px;
    border-radius: 6px;
    color: #fff;
    background: var(--starter-orange);
    font-weight: 700;
    text-decoration: none;
}

.starter-week-footer__resources {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.starter-week-footer__resources a {
    color: var(--starter-purple);
    font-weight: 700;
}

@media (max-width: 640px) {
    .starter-week-hero {
        min-height: 320px;
        padding: 24px;
    }

    .starter-week-episode {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .starter-week-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}
