.gsc-home-screen {
    padding: 12px 18px 20px;
    background: #f4f5f7;
}

.gsc-home-play-section {
    margin: 0;
}

.gsc-home-play-section > h2 {
    margin: 0 3px 5px;
    color: var(--gsc-green);
    font-size: 24px;
    font-weight: 800;
    line-height: 1.1;
}

.gsc-home-play-carousel {
    margin-inline: -18px;
}

@media (max-width: 390px) {
    .gsc-home-play-carousel {
        margin-inline: -14px;
    }
}

.gsc-home-in-progress-row {
    display: flex;
    width: 100%;
    min-height: 48px;
    margin-top: 12px;
    padding: 0 15px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid rgba(15, 35, 60, 0.14);
    border-radius: 12px;
    background: #ffffff;
    color: var(--gsc-navy);
    font: inherit;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
    cursor: pointer;
}

.gsc-home-in-progress-row:focus-visible {
    outline: 3px solid rgba(46, 125, 50, 0.3);
    outline-offset: 2px;
}

.gsc-home-in-progress-chevron {
    flex: 0 0 auto;
    color: var(--gsc-green);
    font-size: 30px;
    font-weight: 500;
    line-height: 1;
}

.gsc-home-round-section {
    margin-top: 8px;
}

.gsc-home-in-progress-row + .gsc-home-round-section {
    margin-top: 26px;
}

.gsc-home-round-accordion {
    display: flex;
    width: 100%;
    min-height: 46px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 0 12px;
    border: 1px solid rgba(15, 35, 60, 0.14);
    border-radius: 12px;
    background: #ffffff;
    color: var(--gsc-green);
    font: inherit;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.1;
    text-align: left;
    cursor: pointer;
}

.gsc-home-round-accordion:focus-visible {
    outline: 3px solid rgba(46, 125, 50, 0.3);
    outline-offset: 2px;
}

.gsc-home-round-accordion-chevron {
    flex: 0 0 auto;
    color: var(--gsc-green);
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    transform: rotate(90deg);
    transition: transform 180ms ease;
}

.gsc-home-round-accordion[aria-expanded="true"]
    .gsc-home-round-accordion-chevron {
    transform: rotate(-90deg);
}

.gsc-home-round-accordion-panel {
    margin-top: 10px;
    margin-inline: -18px;
}

.gsc-home-round-accordion-panel[hidden] {
    display: none;
}

@media (max-width: 390px) {
    .gsc-home-screen {
        padding-inline: 14px;
    }

    .gsc-home-round-accordion-panel {
        margin-inline: -14px;
    }
}