.kingen-newScores {
    margin: 32px 0 46px;
}

.kingen-newScores__heading.ec-secHeading {
    margin-bottom: 24px;
}

.kingen-newScores__viewport {
    position: relative;
}

.kingen-newScores__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 54px) / 4);
    gap: 18px;
    overflow-x: auto;
    padding: 2px 4px 12px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.kingen-newScores__track::-webkit-scrollbar {
    display: none;
}

.kingen-newScores__card {
    min-width: 0;
    scroll-snap-align: start;
}

.kingen-newScores__body {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    padding: 16px 16px 14px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
}

.kingen-newScores__title {
    margin: 0 0 4px;
    color: #0b173b;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
}

.kingen-newScores__artist {
    margin: 0 0 12px;
    color: #0b173b;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
}

.kingen-newScores__type {
    align-self: flex-start;
    min-width: 76px;
    margin-bottom: 14px;
    padding: 2px 12px 3px;
    border: 1px solid;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
}

.kingen-newScores__type--ensemble {
    border-color: #e08a2e;
    background: #fff4e6;
    color: #b45f0c;
}

.kingen-newScores__type--unison {
    border-color: #42a9c9;
    background: #eefaff;
    color: #247f9b;
}

.kingen-newScores__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 0;
    padding-top: 14px;
    border-top: 1px solid #d8d8d8;
}

.kingen-newScores__links a {
    display: grid;
    grid-template-columns: 24px 1fr 10px;
    column-gap: 6px;
    align-items: center;
    min-height: 44px;
    padding: 0 10px;
    border-radius: 8px;
    background: #f8f3ec;
    color: #0b173b;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
    text-decoration: none;
    transition: background-color .18s ease;
}

.kingen-newScores__links a:hover,
.kingen-newScores__links a:focus-visible {
    background: #efe5d8;
    text-decoration: none;
}

.kingen-newScores__links a:focus-visible {
    outline: 2px solid rgba(11, 23, 59, .18);
    outline-offset: 2px;
}

.kingen-newScores__links a > span:not(.kingen-newScores__chevron) {
    display: block;
    transform: translateY(1px);
}

.kingen-newScores__downloadNote {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    color: #777777;
    font-size: 11px;
    line-height: 1.45;
    text-align: center;
}

.kingen-newScores__linkIcon {
    display: block;
    justify-self: center;
    width: 15px;
    height: 15px;
    object-fit: contain;
}

.kingen-newScores__linkIcon--book {
    width: 15px;
    height: 15px;
}

.kingen-newScores__chevron {
    display: flex;
    align-self: stretch;
    align-items: center;
    justify-content: center;
    color: #777777;
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
}

.kingen-newScores__media {
    position: relative;
    display: block;
    width: 100%;
    margin-top: 12px;
    overflow: hidden;
    border-radius: 4px;
    background: #f3f3f3;
    aspect-ratio: 16 / 9;
}

.kingen-newScores__media iframe,
.kingen-newScores__media img {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.kingen-newScores__media img {
    object-fit: contain;
    object-position: top center;
}

.kingen-newScores__media--image img {
    object-fit: contain;
    object-position: top center;
}

.kingen-newScores__arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid #eeeeee;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.14);
    color: #0b173b;
    font-size: 0;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
}

.kingen-newScores__arrow::before {
    display: block;
    font-size: 30px;
    font-weight: 400;
    line-height: 1;
    transform: translateY(-1px);
}

.kingen-newScores__arrow--prev::before {
    content: '‹';
}

.kingen-newScores__arrow--next::before {
    content: '›';
}

.kingen-newScores__arrow--prev {
    left: -18px;
}

.kingen-newScores__arrow--next {
    right: -18px;
}

.kingen-newScores__arrow:disabled {
    display: none;
}

.kingen-newScores__dots {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-top: 10px;
}

.kingen-newScores__dots span {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #000000;
    opacity: .25;
}

.kingen-newScores__dots span.is-current {
    background: #000000;
    opacity: .75;
}

@media screen and (max-width: 767px) {
    .kingen-newScores {
        margin: 24px 0 34px;
    }

    .kingen-newScores__heading.ec-secHeading {
        margin-bottom: 18px;
    }

    .kingen-newScores__track {
        grid-auto-columns: 86%;
        gap: 14px;
        padding-right: 10px;
        padding-left: 10px;
    }

    .kingen-newScores__arrow {
        display: none;
    }

    .kingen-newScores__title {
        font-size: 18px;
    }
}
