.results-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    align-items: center;
    padding: 0 30px;
}

.results-header h2{
    color: #ab875c;
    font-family: med;
    font-size: 35px;
    margin: 0;
}

.results-header h2 span{
    color: #707070;
    font-family: reg;
    font-size: 12px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.perf-carousel-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-width: 1000px;
    margin: 0 auto 20px;
}

.perf-prev,
.perf-next {
    font-size: 40px;
    padding: 8px 20px;
}

.perf-carousel {
    flex: 1;
    overflow: hidden;
    height: auto;
    position: relative;
    height: 500px;
}

.perf-track {
    display: flex;
    gap: 10px;
    transition: transform 0.3s ease;
    height: 500px;
}

.perf-card {
    width: 340px;
    min-width: 340px;
    padding: 20px;
    padding-top: 0px;
    opacity: .35;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: scale(.8);
    transition: 0.3s ease-in-out;
    background: #F3EDE7;
    background: linear-gradient(0deg, rgba(243, 237, 231, 1) 0%, rgba(255, 255, 255, 1) 40%, rgba(255, 255, 255, 1) 100%);
}

.perf-card .perf-brand,
.perf-card .perf-name{
    text-align: center;
}

.perf-card .perf-notes-rows{
    display: none;
}

.perf-card.active {
    opacity: 1;
    transform: scale(1.15);
}

.perf-card.active .perf-notes-rows{
    display: flex;
}

.perf-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 30px;
}

.perf-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.perf-notes {
    display: flex;
    justify-content: space-between;
    margin-top: 14px;
}

.perf-carousel {
    touch-action: pan-y; /* allow vertical page scroll, but capture horizontal swipes */
}

.perf-track {
    touch-action: none; /* let JS fully control dragging */
}

/* Notes now displayed as vertical rows */
.perf-notes-rows {
    margin-top: 16px;
    flex-direction: column;
    gap: 6px;
}

.note-row {
    display: flex;
    gap: 6px;
    font-size: 13px;
    line-height: 1.3em;
}

.note-label {
    color: #ab875c;
    min-width: 60px;
    font-family: med;
    font-size: 11px;
}

.note-values {
    color: #707070;
    flex: 1;
    font-family: body;
    font-size: 11px;
    line-height: 13px;
}

.perf-brand{
    font-family: reg;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 11px;
    margin-bottom: 3px;
}

.perf-name{
    font-family: med;
    color: #ab875c;
    font-size: 20px;
}

.left-fade{
    position: absolute;
    height: 100%;
    width: 120px;
    left: 0;
    top: 0;
    background-size: contain;
    background-position: left center;
    background-repeat: no-repeat;
    z-index: 1;
}

.right-fade{
    position: absolute;
    height: 100%;
    width: 120px;
    right: 0;
    top: 0;
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    z-index: 1;
}

@media (min-width: 1400px) {
  
}

@media (min-width: 1200px) {

}

@media (min-width: 992px) {

}

@media (min-width: 768px) {

}

@media (min-width: 576px) {

}