body.new-start-layout {
    --ns-ink: #111111;
    --ns-muted: #565656;
    --ns-bg: #f4f4f1;
    --ns-surface: #ffffff;
    --ns-line: #dad8d2;
    --ns-red: #d61f2c;
    --ns-blue: #166b91;
    --ns-yellow: #faed23;
    --ns-glasgow-yellow: #f3dc17;
    --ns-green: #78a833;
    --ns-pink: #ec0c8c;
    --ns-shadow: 0 18px 44px rgba(0, 0, 0, 0.15);
    background: var(--ns-bg);
    color: var(--ns-ink);
    font-family: "Rubik", Arial, sans-serif;
}

body.new-start-layout * {
    letter-spacing: 0;
}

.new-start-page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.new-start-container {
    width: min(100% - 32px, 1240px);
    margin: 0 auto;
}

.new-start-sr-only,
.new-start-skip-link:not(:focus) {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.new-start-skip-link:focus {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 10000;
    padding: 12px 16px;
    background: var(--ns-yellow);
    color: var(--ns-ink);
    font-weight: 800;
}

.new-start-eyebrow {
    margin: 0 0 8px;
    color: var(--ns-red);
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 900;
    text-transform: uppercase;
}

.new-start-section {
    padding: 52px 0;
}

.new-start-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 22px;
}

.new-start-section-heading h2,
.new-start-listings-search h2,
.new-start-living-wage h2 {
    margin: 0;
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 2.6rem;
    line-height: 0.98;
    font-weight: 900;
    text-transform: uppercase;
}

.new-start-button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border: 0;
    border-radius: 6px;
    background: var(--ns-red);
    color: #ffffff;
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
}

.new-start-button:hover,
.new-start-button:focus {
    color: #ffffff;
    filter: brightness(0.94);
}

.new-start-button--primary {
    background: var(--ns-red);
}

.new-start-button--secondary {
    background: #ffffff;
    color: var(--ns-ink);
}

.new-start-button--secondary:hover,
.new-start-button--secondary:focus {
    color: var(--ns-ink);
}

.new-start-button--dark {
    background: var(--ns-ink);
}

.new-start-button--full {
    width: 100%;
}

.new-start-icon-button {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    cursor: pointer;
}

.new-start-icon-button:hover,
.new-start-icon-button:focus {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
}

.new-start-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #0d0d0d;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.new-start-header__inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-areas:
        "brand actions"
        "nav nav";
    align-items: center;
    column-gap: 18px;
    row-gap: 8px;
    width: min(100% - 32px, 1240px);
    min-height: 118px;
    margin: 0 auto;
    padding: 12px 0 10px;
}

.new-start-header__brand {
    grid-area: brand;
    display: inline-flex;
    align-items: center;
}

.new-start-header__logo {
    width: 260px;
    max-height: 72px;
    object-fit: contain;
}

.new-start-nav {
    grid-area: nav;
    position: static !important;
    min-height: 0;
    background: transparent;
}

.new-start-nav .navbar-brand {
    display: none;
}

.new-start-nav__menu {
    display: block;
    background: transparent;
    box-shadow: none;
}

.new-start-nav__items {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    width: 100%;
}

.new-start-nav .navbar-item,
.new-start-nav .navbar-link {
    color: #ffffff;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
}

.new-start-nav .navbar-item:hover,
.new-start-nav .navbar-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.new-start-nav .navbar-item.has-dropdown:hover,
.new-start-nav .navbar-item.has-dropdown:focus-within {
    background: transparent;
}

.new-start-nav .navbar-item.has-dropdown:hover > .navbar-link,
.new-start-nav .navbar-item.has-dropdown:focus-within > .navbar-link {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

.new-start-nav .navbar-dropdown {
    border: 0;
    border-radius: 0 0 8px 8px;
    background: #ffffff;
    box-shadow: var(--ns-shadow);
}

.new-start-nav .navbar-dropdown .navbar-item {
    color: var(--ns-ink) !important;
}

.new-start-nav .navbar-dropdown .navbar-item:hover,
.new-start-nav .navbar-dropdown .navbar-item:focus {
    color: var(--ns-ink) !important;
    background: #f2f2ef !important;
}

.new-start-header__actions {
    grid-area: actions;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.new-start-header__search {
    width: min(36vw, 380px);
}

.new-start-header__search .input,
.new-start-mobile-search .input,
.new-start-listings-search .input,
.new-start-listings-search select,
.new-start-footer .input {
    min-height: 48px;
    border: 1px solid var(--ns-line);
    border-radius: 6px;
    box-shadow: none;
}

.new-start-header__search .icon {
    top: 4px;
}

.new-start-header__search .material-icons {
    color: var(--ns-muted);
}

.new-start-header__search-toggle {
    display: none;
}

.new-start-mobile-search {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: start center;
    padding: 96px 16px 16px;
    background: rgba(0, 0, 0, 0.72);
}

.new-start-mobile-search.is-hidden {
    display: none;
}

.new-start-mobile-search__panel {
    width: min(100%, 520px);
    padding: 22px;
    border-radius: 8px;
    background: #ffffff;
    color: var(--ns-ink);
    box-shadow: var(--ns-shadow);
}

.new-start-mobile-search__title {
    margin: 0 0 14px;
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
}

.new-start-mobile-search__close {
    float: right;
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 6px;
    background: var(--ns-ink);
    color: #ffffff;
    cursor: pointer;
}

.new-start-mobile-search .input {
    margin-bottom: 14px;
}

.new-start-hero {
    position: relative;
    height: calc(100vh - 140px);
    min-height: 560px;
    max-height: 650px;
    overflow: hidden;
    background: #000000;
    color: #ffffff;
}

.new-start-hero__video,
.new-start-hero__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.new-start-hero__video {
    object-fit: cover;
}

.new-start-hero__overlay {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.62) 46%, rgba(0, 0, 0, 0.28) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0) 42%);
}

.new-start-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.72fr 1fr;
    gap: 42px;
    min-height: 100%;
    height: 100%;
    align-items: center;
    padding: 54px 0;
}

.new-start-hero__logo-wrap {
    display: flex;
    justify-content: center;
}

.new-start-hero__logo {
    width: min(100%, 420px);
    aspect-ratio: 1;
    object-fit: contain;
}

.new-start-hero h1 {
    max-width: 760px;
    margin: 0;
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 5.6rem;
    font-weight: 900;
    line-height: 0.88;
    text-transform: uppercase;
}

.new-start-hero__summary {
    max-width: 640px;
    margin: 18px 0 0;
    font-size: 1.16rem;
    line-height: 1.55;
    color: #f0f0f0;
}

.new-start-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.new-start-hero__action-space {
    min-height: 48px;
    margin-top: 24px;
}

.new-start-hero__quotes {
    position: relative;
    min-height: 102px;
    margin-top: 34px;
    padding-left: 18px;
    border-left: 5px solid var(--ns-yellow);
}

.new-start-hero__quote {
    position: absolute;
    inset: 0 auto auto 18px;
    max-width: 700px;
    margin: 0;
    opacity: 0;
    transition: opacity 220ms ease;
    color: #ffffff;
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 1.65rem;
    font-weight: 900;
    line-height: 1.08;
    text-transform: uppercase;
}

.new-start-hero__quote.is-active {
    opacity: 1;
}

.new-start-hero__quote span {
    display: block;
    margin-top: 8px;
    color: var(--ns-yellow);
    font-size: 0.92rem;
}

.new-start-venues {
    padding: 34px 0 28px;
    background: #111111;
    color: #ffffff;
}

.new-start-venues .new-start-section-heading h2 {
    color: #ffffff;
}

.new-start-venue-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.new-start-venue-card {
    display: flex;
    min-height: 154px;
    flex-direction: column;
    justify-content: end;
    padding: 18px;
    border-radius: 8px;
    color: #ffffff;
    box-shadow: inset 0 -72px 64px rgba(0, 0, 0, 0.22);
    transition: transform 160ms ease, filter 160ms ease;
}

.new-start-venue-card:hover,
.new-start-venue-card:focus {
    color: #ffffff;
    filter: brightness(0.96);
    transform: translateY(-3px);
}

.new-start-venue-card span {
    font-weight: 900;
    text-transform: uppercase;
}

.new-start-venue-card strong {
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 2.45rem;
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
}

.new-start-venue-card--edinburgh,
.new-start-venue-pill--edinburgh {
    background: var(--ns-blue);
}

.new-start-venue-card--glasgow,
.new-start-venue-pill--glasgow {
    background: var(--ns-glasgow-yellow);
    color: var(--ns-ink);
}

.new-start-venue-card--glasgow:hover,
.new-start-venue-card--glasgow:focus {
    color: var(--ns-ink);
}

.new-start-venue-card--newcastle,
.new-start-venue-pill--newcastle {
    background: var(--ns-green);
}

.new-start-venue-card--fringe,
.new-start-venue-pill--fringe {
    background: var(--ns-pink);
}

.new-start-search-section {
    padding: 28px 0 18px;
}

.new-start-listings-search {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 24px;
    align-items: end;
    padding: 24px;
    border: 1px solid var(--ns-line);
    border-radius: 8px;
    background: var(--ns-surface);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.new-start-listings-search__fields {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
    gap: 14px;
    align-items: end;
}

.new-start-field {
    display: grid;
    grid-template-rows: auto 48px;
}

.new-start-field label {
    display: block;
    margin-bottom: 8px;
    font-family: neue-kabel, Arial, sans-serif;
    font-weight: 900;
    text-transform: uppercase;
}

.new-start-field .select,
.new-start-field select {
    width: 100%;
}

.new-start-field .select {
    display: block;
    height: 48px;
}

.new-start-field select {
    height: 48px;
}

.new-start-featured-carousel {
    position: relative;
    overflow: hidden;
}

.new-start-featured-slide {
    height: auto;
}

.new-start-featured-slide .new-start-featured-slide__link {
    position: relative;
    inset: auto;
    display: block;
    width: auto;
    height: auto;
    overflow: hidden;
    border-radius: 8px;
    background: #000000;
}

.new-start-featured-slide img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 180ms ease;
}

.new-start-featured-slide__link:hover img,
.new-start-featured-slide__link:focus img {
    transform: scale(1.035);
}

.new-start-featured-control {
    top: calc(50% - 31px);
}

.new-start-featured-control--prev {
    left: 10px;
}

.new-start-featured-control--next {
    right: 10px;
}

.new-start-rail-shell {
    position: relative;
    background: none;
}

.new-start-rail-shell::before,
.new-start-rail-shell::after {
    display: none;
    content: none;
}

.new-start-card-rail {
    display: grid;
    grid-auto-columns: calc((100% - 54px) / 4);
    grid-auto-flow: column;
    gap: 18px;
    overflow-x: auto;
    padding: 4px 2px 20px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.new-start-card-rail::-webkit-scrollbar {
    display: none;
}

.new-start-card {
    display: flex;
    min-width: 0;
    min-height: 100%;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    scroll-snap-align: start;
    border: 1px solid var(--ns-line);
    border-radius: 8px;
    background: var(--ns-surface);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.09);
}

.new-start-card__image-wrap,
.new-start-card__image-link {
    position: relative;
    display: block;
    overflow: hidden;
    background: #111111;
}

.new-start-card img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.new-start-show-card img,
.new-start-search-card img,
.new-start-promo-card img,
.new-start-fringe-card img {
    aspect-ratio: 16 / 9;
    background: #111111;
    object-fit: contain;
}

.new-start-card__body {
    padding: 16px;
}

.new-start-show-card .new-start-card__body {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.new-start-card h3 {
    margin: 10px 0 0;
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 1.45rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.new-start-show-card h3 {
    min-height: 4.6rem;
    line-height: 1.06;
}

.new-start-card__date-text {
    display: block;
    min-height: 1rem;
    margin-top: 8px;
    color: var(--ns-muted);
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.25;
    text-transform: uppercase;
}

.new-start-card-acts {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    min-height: 34px;
    margin: 12px 0 0;
}

.new-start-card-acts li {
    position: relative;
    display: inline-flex;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
}

.new-start-show-card .new-start-card-acts img {
    width: 34px;
    height: 34px;
    aspect-ratio: 1;
    border: 2px solid #ffffff;
    border-radius: 50%;
    background: #111111;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
    object-fit: cover;
}

.new-start-card-acts span {
    position: absolute;
    bottom: calc(100% + 7px);
    left: 50%;
    z-index: 3;
    max-width: 180px;
    padding: 6px 8px;
    transform: translateX(-50%);
    border-radius: 6px;
    background: var(--ns-ink);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 900;
    line-height: 1.15;
    text-align: center;
    text-transform: uppercase;
    white-space: normal;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.16s ease;
}

.new-start-card-acts span::after {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 0;
    height: 0;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--ns-ink);
    content: "";
}

.new-start-card-acts li:hover span {
    opacity: 1;
}

.new-start-card-acts a {
    display: inline-flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: inherit;
    text-decoration: none;
}

.new-start-card-acts a:focus-visible {
    outline: 2px solid var(--ns-red);
    outline-offset: 3px;
}

.new-start-card__meta {
    margin: 0;
    color: var(--ns-muted);
    font-size: 0.88rem;
    line-height: 1.35;
}

.new-start-card__meta a,
.new-start-news-card__tags a {
    color: var(--ns-red);
    font-weight: 700;
}

.new-start-date-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    display: grid;
    min-width: 66px;
    padding: 8px 10px;
    place-items: center;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--ns-ink);
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.new-start-date-badge strong {
    color: var(--ns-red);
    font-size: 1.75rem;
}

.new-start-venue-pill,
.new-start-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    min-height: 32px;
    padding: 6px 10px;
    border-radius: 6px;
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.new-start-venue-pill--glasgow {
    color: var(--ns-ink);
}

.new-start-card__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    min-height: 32px;
    margin-top: 12px;
    align-content: flex-start;
}

.new-start-card__badges:empty {
    margin-top: 12px;
}

.new-start-show-card .new-start-venue-pill,
.new-start-show-card .new-start-status-badge {
    align-self: flex-start;
    white-space: nowrap;
}

.new-start-status-badge--sold-out {
    background: var(--ns-red);
}

.new-start-status-badge--limited {
    background: #b4870d;
}

.new-start-status-badge--food {
    background: var(--ns-ink);
}

.new-start-status-badge .material-icons {
    font-size: 1rem;
}

.new-start-event-details {
    display: grid;
    gap: 8px;
    margin: 14px 0 0;
    color: var(--ns-muted);
    font-size: 0.92rem;
}

.new-start-event-details li {
    display: grid;
    grid-template-columns: 24px 82px 1fr;
    align-items: center;
    gap: 6px;
}

.new-start-event-details .material-icons {
    color: var(--ns-red);
    font-size: 1.1rem;
}

.new-start-event-details span:not(.material-icons) {
    color: var(--ns-ink);
    font-weight: 800;
}

.new-start-card > .new-start-button {
    margin: 0 16px 16px;
    width: calc(100% - 32px);
}

.new-start-merch-advert-section {
    padding: 24px 0 6px;
}

.new-start-advert-stack {
    display: grid;
    gap: 14px;
}

.new-start-membership-voucher-advert {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    min-width: 0;
    padding: 18px;
    border: 1px solid var(--ns-line);
    border-left: 6px solid var(--ns-red);
    border-radius: 8px;
    background: var(--ns-surface);
    color: var(--ns-ink);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.new-start-membership-voucher-advert__icon {
    display: inline-flex;
    width: 62px;
    height: 62px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--ns-red);
    color: #ffffff;
    font-size: 2rem;
}

.new-start-membership-voucher-advert__copy {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.new-start-membership-voucher-advert__copy .new-start-eyebrow {
    margin: 0;
    color: var(--ns-red);
}

.new-start-membership-voucher-advert__copy strong {
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 1.65rem;
    font-weight: 900;
    line-height: 0.98;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.new-start-membership-voucher-advert__copy > span:last-child {
    color: var(--ns-muted);
    font-weight: 700;
}

.new-start-membership-voucher-advert__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.new-start-membership-voucher-advert__actions a,
.new-start-basket-page .new-start-membership-voucher-advert__actions a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 14px;
    border-radius: 6px;
    background: var(--ns-ink);
    color: #ffffff;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.new-start-membership-voucher-advert__actions a:hover,
.new-start-membership-voucher-advert__actions a:focus,
.new-start-basket-page .new-start-membership-voucher-advert__actions a:hover,
.new-start-basket-page .new-start-membership-voucher-advert__actions a:focus {
    color: #ffffff;
    filter: brightness(0.94);
}

.new-start-membership-voucher-advert__actions .material-icons {
    font-size: 1.2rem;
}

.new-start-merch-advert,
.new-start-basket-page a.new-start-merch-advert {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    min-width: 0;
    padding: 14px;
    border: 1px solid var(--ns-line);
    border-left: 6px solid var(--ns-green);
    border-radius: 8px;
    background: var(--ns-surface);
    color: var(--ns-ink);
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.new-start-merch-advert:hover,
.new-start-merch-advert:focus,
.new-start-basket-page a.new-start-merch-advert:hover,
.new-start-basket-page a.new-start-merch-advert:focus {
    color: var(--ns-ink);
    filter: brightness(0.98);
}

.new-start-merch-advert__images {
    display: grid;
    grid-template-columns: repeat(2, 58px);
    gap: 6px;
}

.new-start-merch-advert__images img {
    display: block;
    width: 58px;
    height: 58px;
    border: 1px solid var(--ns-line);
    border-radius: 6px;
    background: #f7f7f4;
    object-fit: contain;
}

.new-start-merch-advert__copy {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.new-start-merch-advert__copy .new-start-eyebrow {
    margin: 0;
}

.new-start-merch-advert__copy strong {
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 1.55rem;
    font-weight: 900;
    line-height: 0.98;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.new-start-merch-advert__copy > span:last-child {
    color: var(--ns-muted);
    font-weight: 700;
}

.new-start-merch-advert__cta {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 14px;
    border-radius: 6px;
    background: var(--ns-ink);
    color: #ffffff;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.new-start-merch-advert__cta .material-icons {
    font-size: 1.2rem;
}

.new-start-rail-control {
    position: absolute;
    top: calc(50% - 31px);
    display: inline-flex;
    width: 46px;
    height: 62px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 6px;
    background: #111111;
    background-image: none;
    color: #ffffff;
    cursor: pointer;
    box-shadow: none;
}

.new-start-rail-control[hidden] {
    display: none;
}

.new-start-rail-control--prev {
    left: -14px;
}

.new-start-rail-control--next {
    right: -14px;
}

.new-start-living-wage {
    padding-top: 22px;
}

.new-start-living-wage__panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: 28px;
    border: 3px solid #20c4f4;
    border-radius: 8px;
    background: #ffffff;
}

.new-start-living-wage__panel h2 {
    max-width: 780px;
    margin-bottom: 18px;
}

.new-start-living-wage__logo {
    width: 190px;
    max-width: 28vw;
}

.new-start-news-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
    font-size: 0.84rem;
}

.new-start-listings-page {
    padding: 34px 0 54px;
}

.new-start-listings-page--connected {
    padding-top: 0;
}

.new-start-listings-hero {
    display: grid;
    gap: 14px;
    margin: 26px 0 20px;
    padding: 32px;
    border-radius: 8px;
    background: #111111;
    color: #ffffff;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
}

.new-start-listings-hero--connected {
    margin: 0;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.new-start-listings-hero__inner {
    display: grid;
    gap: 14px;
    padding: 54px 0 38px;
}

.new-start-listings-hero .new-start-eyebrow {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.84);
}

.new-start-listings-hero--edinburgh {
    background: var(--ns-blue);
}

.new-start-listings-hero--glasgow {
    background: var(--ns-glasgow-yellow);
    color: var(--ns-ink);
}

.new-start-listings-hero--newcastle {
    background: var(--ns-green);
}

.new-start-listings-hero h1 {
    margin: 0;
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 0.95;
    text-transform: uppercase;
}

.new-start-listings-hero h1 span {
    display: block;
}

.new-start-listings-hero .new-start-listings-hero__summary {
    margin: 0;
}

.new-start-listings-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 2px 0 0;
    padding: 0;
}

.new-start-listings-hero__meta div {
    display: grid;
    min-width: 142px;
    gap: 3px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
}

.new-start-listings-hero__meta dt {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.76rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.new-start-listings-hero__meta dd {
    margin: 0;
    color: #ffffff;
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.new-start-listings-hero--glasgow .new-start-eyebrow {
    color: var(--ns-red);
}

.new-start-listings-hero--glasgow .new-start-listings-hero__summary {
    color: rgba(17, 17, 17, 0.78);
}

.new-start-listings-hero--glasgow .new-start-listings-hero__meta div {
    border-color: rgba(17, 17, 17, 0.18);
    background: rgba(17, 17, 17, 0.06);
}

.new-start-listings-hero--glasgow .new-start-listings-hero__meta dt {
    color: rgba(17, 17, 17, 0.68);
}

.new-start-listings-hero--glasgow .new-start-listings-hero__meta dd {
    color: var(--ns-ink);
}

.new-start-show-tag-hero {
    display: grid;
    gap: 14px;
    border-bottom: 6px solid var(--ns-red);
}

.new-start-show-tag-hero h1 {
    max-width: 960px;
    overflow-wrap: anywhere;
}

.new-start-show-tag-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0 0;
    padding: 0;
}

.new-start-show-tag-hero__meta div {
    display: grid;
    min-width: 142px;
    gap: 3px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
}

.new-start-show-tag-hero__meta dt {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.76rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.new-start-show-tag-hero__meta dd {
    margin: 0;
    color: #ffffff;
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.new-start-show-tag-results {
    padding-top: 28px;
}

.new-start-show-tag-empty .new-start-empty-state {
    margin-top: 24px;
}

.new-start-show-tag-empty .new-start-empty-state h1 {
    margin: 0;
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 0.95;
    text-transform: uppercase;
}

.new-start-show-tag-empty .new-start-empty-state span {
    max-width: 620px;
    color: var(--ns-muted);
    line-height: 1.55;
}

.new-start-act-hero {
    border-bottom-color: var(--ns-red);
}

.new-start-act-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
}

.new-start-act-hero__copy {
    min-width: 0;
}

.new-start-act-hero__image {
    min-width: 0;
    margin: 0;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
}

.new-start-act-hero__image img {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 6px;
    background: #111111;
    object-fit: cover;
}

.new-start-act-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0 0;
    padding: 0;
}

.new-start-act-hero__meta div {
    display: grid;
    min-width: 142px;
    gap: 3px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
}

.new-start-act-hero__meta dt {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.76rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.new-start-act-hero__meta dd {
    margin: 0;
    color: #ffffff;
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.new-start-act-results {
    padding-top: 34px;
}

.new-start-act-empty .new-start-empty-state {
    margin-top: 24px;
}

.new-start-act-empty .new-start-empty-state h1 {
    margin: 0;
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 0.95;
    text-transform: uppercase;
}

.new-start-act-empty .new-start-empty-state span {
    max-width: 620px;
    color: var(--ns-muted);
    line-height: 1.55;
}

.new-start-month-nav {
    margin: 18px 0 24px;
}

.new-start-month-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 8px;
}

.new-start-month-link {
    display: inline-grid;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 8px 6px;
    border-radius: 6px;
    background: #111111;
    color: #ffffff;
    font-weight: 900;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
}

.new-start-month-link small {
    display: block;
    color: inherit;
    font-family: "Rubik", Arial, sans-serif;
    font-size: 0.68rem;
    font-weight: 800;
    opacity: 0.72;
}

.new-start-month-link:hover,
.new-start-month-link:focus {
    color: #ffffff;
    filter: brightness(0.94);
}

.new-start-month-link:focus-visible {
    outline: 3px solid var(--ns-ink);
    outline-offset: 2px;
}

.new-start-month-link.is-active {
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.82), 0 0 0 2px var(--ns-ink);
    filter: none;
}

.new-start-month-link--edinburgh {
    background: var(--ns-blue);
}

.new-start-month-link--glasgow {
    background: var(--ns-glasgow-yellow);
    color: var(--ns-ink);
}

.new-start-month-link--glasgow:hover,
.new-start-month-link--glasgow:focus {
    color: var(--ns-ink);
}

.new-start-month-link--glasgow.is-active {
    box-shadow: inset 0 0 0 2px var(--ns-ink), 0 0 0 2px var(--ns-ink);
}

.new-start-month-link--newcastle {
    background: var(--ns-green);
}

.new-start-listings-results {
    padding-top: 24px;
}

.new-start-listings-results-heading {
    align-items: center;
}

.new-start-listings-month-heading {
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid var(--ns-line);
}

.new-start-listings-empty-note {
    padding-block: 30px;
}

.new-start-listings-load-more {
    display: grid;
    min-height: 1px;
    justify-items: center;
    gap: 10px;
    margin-top: 28px;
    color: var(--ns-muted);
    text-align: center;
}

.new-start-listings-load-more__spinner {
    display: none;
    width: 28px;
    height: 28px;
    border: 3px solid var(--ns-line);
    border-top-color: var(--ns-red);
    border-radius: 50%;
    animation: new-start-spin 0.8s linear infinite;
}

.new-start-listings-load-more__status {
    display: none;
    font-size: 0.88rem;
    font-weight: 800;
    text-transform: uppercase;
}

.new-start-listings-load-more.is-active .new-start-listings-load-more__spinner,
.new-start-listings-load-more.is-active .new-start-listings-load-more__status,
.new-start-listings-load-more.is-error .new-start-listings-load-more__status {
    display: inline-flex;
}

.new-start-listings-load-more.is-error {
    color: var(--ns-red);
}

@keyframes new-start-spin {
    to {
        transform: rotate(360deg);
    }
}

.new-start-performance-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.new-start-promo-card .new-start-eyebrow {
    color: var(--ns-pink);
}

.new-start-promo-card .new-start-card__meta {
    margin-top: 12px;
}

.new-start-promo-card .new-start-button {
    background: var(--ns-pink);
}

.new-start-empty-state {
    grid-column: 1 / -1;
    display: grid;
    justify-items: center;
    gap: 16px;
    padding: 48px 16px;
    border: 1px solid var(--ns-line);
    border-radius: 8px;
    background: var(--ns-surface);
    text-align: center;
}

.new-start-empty-state p {
    margin: 0;
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 1.55rem;
    font-weight: 900;
    text-transform: uppercase;
}

.new-start-performance-page {
    padding-bottom: 54px;
}

.new-start-performance-hero {
    position: relative;
    overflow: hidden;
    background: #111111;
    color: #ffffff;
}

.new-start-performance-hero__backdrop {
    position: absolute;
    inset: 0;
    background-image: var(--performance-hero-img);
    background-position: center;
    background-size: cover;
    opacity: 0.16;
}

.new-start-performance-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(280px, 0.44fr) minmax(0, 1fr);
    gap: 34px;
    align-items: center;
    padding: 46px 0;
}

.new-start-performance-hero__image {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    background: #000000;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
}

.new-start-performance-hero__image img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
    object-fit: contain;
}

.new-start-performance-hero h1 {
    max-width: 860px;
    margin: 0;
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 4.8rem;
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.new-start-performance-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.new-start-performance-badges .new-start-venue-pill {
    background: var(--ns-ink);
}

.new-start-performance-badges .new-start-venue-pill--edinburgh {
    background: var(--ns-blue);
}

.new-start-performance-badges .new-start-venue-pill--glasgow {
    background: #f3dc17;
}

.new-start-performance-badges .new-start-venue-pill--newcastle {
    background: var(--ns-green);
}

.new-start-performance-badges .new-start-venue-pill--fringe {
    background: var(--ns-pink);
}

.new-start-performance-hero__date,
.new-start-performance-price {
    display: block;
    margin-top: 18px;
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1.05;
    text-transform: uppercase;
}

.new-start-performance-price {
    margin-top: 8px;
    color: var(--ns-yellow);
    font-size: 1.15rem;
}

.new-start-performance-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    max-width: 720px;
    margin: 24px 0 0;
}

.new-start-performance-facts li {
    display: grid;
    grid-template-columns: 28px minmax(74px, auto) 1fr;
    gap: 8px;
    align-items: center;
    min-height: 48px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
}

.new-start-performance-facts .material-icons {
    color: var(--ns-yellow);
    font-size: 1.25rem;
}

.new-start-performance-facts span:not(.material-icons) {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 800;
    text-transform: uppercase;
}

.new-start-performance-facts strong {
    color: #ffffff;
    font-weight: 900;
}

.new-start-performance-content {
    padding-top: 34px;
}

.new-start-performance-layout {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(360px, 2fr);
    gap: 30px;
    align-items: start;
}

.new-start-performance-copy {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
}

.new-start-performance-aside {
    position: sticky;
    top: 116px;
    grid-column: 2;
    grid-row: 1;
    display: grid;
    gap: 18px;
    min-width: 0;
}

.new-start-performance-panel {
    padding: 20px;
    border: 1px solid var(--ns-line);
    border-radius: 8px;
    background: var(--ns-surface);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.new-start-performance-panel h2,
.new-start-ticket-form__heading h2,
.new-start-performance-copy h2,
.new-start-performance-empty h1,
.new-start-performance-gate h1 {
    margin: 0;
    font-family: neue-kabel, Arial, sans-serif;
    font-weight: 900;
    line-height: 0.98;
    text-transform: uppercase;
}

.new-start-performance-panel h2,
.new-start-ticket-form__heading h2 {
    font-size: 1.8rem;
}

.new-start-performance-copy h2,
.new-start-performance-empty h1,
.new-start-performance-gate h1 {
    font-size: 2.6rem;
}

.new-start-performance-heading {
    display: block;
    margin-bottom: 22px;
    text-align: left;
}

.new-start-performance-heading .new-start-eyebrow {
    margin: 8px 0 0;
}

.new-start-performance-page .alert {
    margin: 0 0 18px;
    padding: 14px 16px;
    border: 1px solid var(--ns-line);
    border-left: 6px solid var(--ns-red);
    border-radius: 8px;
    background: #ffffff;
    color: var(--ns-ink);
}

.new-start-performance-page .alert p {
    margin: 0;
}

.new-start-performance-page .alert p + p {
    margin-top: 8px;
}

.new-start-performance-page .alert-title {
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
}

.new-start-performance-page .alert.warning {
    border-left-color: #b4870d;
    background: #fff9d8;
}

.new-start-performance-page .alert.success {
    border-left-color: var(--ns-green);
    background: #eef6e7;
}

.new-start-performance-page .alert.danger {
    border-left-color: var(--ns-red);
    background: #fff0f1;
}

.new-start-performance-blurb {
    color: var(--ns-ink);
    font-size: 1.02rem;
    line-height: 1.7;
}

.new-start-performance-blurb p,
.new-start-performance-third-party p {
    margin: 0 0 18px;
}

.new-start-performance-blurb h2,
.new-start-performance-blurb h3,
.new-start-performance-acts h3 {
    margin: 28px 0 12px;
    font-family: neue-kabel, Arial, sans-serif;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.new-start-performance-blurb h2 {
    font-size: 2rem;
}

.new-start-performance-blurb h3,
.new-start-performance-acts h3 {
    font-size: 1.45rem;
}

.new-start-performance-blurb a,
.new-start-performance-third-party a {
    color: var(--ns-red);
    font-weight: 800;
}

.new-start-performance-blurb img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.new-start-performance-acts {
    margin: 22px 0;
}

.new-start-performance-acts ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
}

.new-start-performance-acts li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 48px;
    padding: 6px 10px 6px 6px;
    border: 1px solid var(--ns-line);
    border-radius: 8px;
    background: var(--ns-surface);
    font-weight: 800;
}

.new-start-performance-acts img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}

.new-start-performance-acts a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: inherit;
    text-decoration: none;
}

.new-start-performance-acts a:focus-visible {
    border-radius: 6px;
    outline: 2px solid var(--ns-red);
    outline-offset: 3px;
}

.new-start-performance-third-party {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid var(--ns-line);
    color: var(--ns-muted);
    font-size: 0.95rem;
}

.new-start-performance-food p,
.new-start-performance-venue p {
    margin: 12px 0;
}

.new-start-performance-food img {
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    aspect-ratio: auto;
    object-fit: contain;
    border: 1px solid var(--ns-line);
    border-radius: 8px;
    background: #ffffff;
}

.new-start-performance-venue address {
    display: grid;
    gap: 5px;
    margin: 12px 0 16px;
    font-style: normal;
    line-height: 1.45;
}

.new-start-performance-venue address strong {
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
}

.new-start-performance-venue iframe {
    display: block;
    width: 100%;
    height: 320px;
    border: 4px solid var(--ns-ink);
    border-radius: 8px;
    background: #eeeeee;
}

.new-start-ticket-form {
    display: grid;
    gap: 20px;
}

.new-start-ticket-form__heading {
    margin-bottom: 12px;
}

.new-start-ticket-form__fee-note {
    margin: 0 0 12px;
    color: var(--ns-muted);
    font-size: 0.88rem;
    line-height: 1.35;
}

.new-start-ticket-list {
    display: grid;
    gap: 8px;
    padding: 0;
    background: transparent;
}

.new-start-ticket-row {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(112px, 0.82fr) 82px;
    gap: 8px;
    align-items: stretch;
}

.new-start-ticket-row:empty,
#additionalPriceBands:empty {
    display: none;
}

.new-start-ticket-row .show-info-col {
    display: grid;
    align-items: center;
    min-width: 0;
    padding: 10px;
    border: 1px solid var(--ns-line);
    border-radius: 6px;
    background: #f8f8f5;
}

.new-start-ticket-row__name,
.new-start-ticket-row .show-info-col:first-child {
    font-weight: 900;
}

.new-start-ticket-row__price,
.new-start-ticket-row .show-info-col:nth-child(2) {
    color: var(--ns-muted);
    font-weight: 800;
}

.new-start-ticket-row__price span,
.new-start-ticket-row .show-info-col:nth-child(2) span {
    color: var(--ns-ink);
}

.new-start-ticket-row__price small {
    display: block;
    margin-top: 3px;
    color: var(--ns-muted);
    font-size: 0.74rem;
    line-height: 1.2;
}

.new-start-ticket-row__quantity,
.new-start-ticket-row .show-info-col:nth-child(3) {
    padding: 0;
}

.new-start-ticket-form .select,
.new-start-ticket-form select,
.new-start-ticket-form .input,
.new-start-presale-form .input {
    width: 100%;
}

.new-start-ticket-form .select {
    height: 100%;
}

.new-start-ticket-form select,
.new-start-ticket-form .input,
.new-start-presale-form .input {
    min-height: 48px;
    border: 1px solid var(--ns-line);
    border-radius: 6px;
    box-shadow: none;
}

.new-start-ticket-form select {
    height: 100%;
    min-width: 72px;
    font-weight: 900;
}

.new-start-ticket-form__promo-toggle {
    display: inline-flex;
    justify-self: start;
    margin-top: 12px;
    color: var(--ns-red);
    font-weight: 900;
}

.new-start-promo-code {
    width: 100%;
    margin-top: 12px;
}

.new-start-promo-code__controls {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(120px, 0.42fr);
    gap: 10px;
    width: 100%;
    align-items: stretch;
}

.new-start-promo-code .input {
    display: block;
    width: 100%;
    min-width: 0;
}

.new-start-promo-code button,
.new-start-promo-code .new-start-button {
    position: static;
    width: 100%;
}

.new-start-promo-code__label,
.new-start-presale-form label {
    display: block;
    margin-bottom: 8px;
    font-family: neue-kabel, Arial, sans-serif;
    font-weight: 900;
    text-transform: uppercase;
}

.new-start-ticket-form__actions {
    display: grid;
}

.new-start-performance-gate,
.new-start-performance-empty {
    padding: 54px 0;
}

.new-start-performance-gate__panel {
    max-width: 680px;
    padding: 28px;
    border: 1px solid var(--ns-line);
    border-radius: 8px;
    background: var(--ns-surface);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.new-start-performance-gate__panel p:not(.new-start-eyebrow) {
    margin: 14px 0 0;
    color: var(--ns-muted);
    line-height: 1.55;
}

.new-start-presale-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: end;
    margin-top: 22px;
}

.new-start-presale-form label {
    grid-column: 1 / -1;
    margin-bottom: -4px;
}

.new-start-performance-empty .new-start-empty-state {
    text-align: left;
    justify-items: start;
}

.new-start-performance-empty .new-start-empty-state p {
    max-width: 720px;
    color: var(--ns-muted);
    font-family: "Rubik", Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.55;
    text-transform: none;
}

.new-start-performance-modal .box {
    border-radius: 8px;
}

.new-start-fringe-show-page .new-start-eyebrow {
    color: var(--ns-pink);
}

.new-start-fringe-show-page .new-start-button--primary {
    background: var(--ns-pink);
}

.new-start-fringe-show-hero {
    border-bottom: 6px solid var(--ns-pink);
}

.new-start-fringe-show-hero .new-start-performance-facts strong {
    overflow-wrap: anywhere;
}

.new-start-fringe-show-category-list {
    max-width: 760px;
    max-height: none;
    margin-top: 16px;
}

.new-start-fringe-show-layout {
    grid-template-columns: minmax(0, 2.35fr) minmax(410px, 1.65fr);
}

.new-start-fringe-booking-flow {
    display: grid;
    gap: 18px;
}

.new-start-fringe-ticket-heading {
    display: grid;
    gap: 12px;
}

.new-start-fringe-ticket-heading .new-start-eyebrow,
.new-start-fringe-ticket-heading h2 {
    margin-left: 0;
}

.new-start-fringe-venue-jump {
    justify-self: stretch;
}

.new-start-fringe-venue-jump .material-icons {
    font-size: 1.15rem;
}

.new-start-fringe-booking-step {
    min-width: 0;
    padding: 16px;
    border: 1px solid var(--ns-line);
    border-radius: 8px;
    background: #f7f7f4;
}

.new-start-fringe-booking-step h3,
.new-start-fringe-ticket-form h3 {
    margin: 0 0 12px;
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.new-start-fringe-performance-picker__heading .new-start-ticket-form__fee-note {
    margin-bottom: 0;
}

.new-start-fringe-performance-list {
    display: grid;
    gap: 10px;
    overflow: visible;
    padding-right: 0;
}

.new-start-fringe-performance-picker[hidden] {
    display: none;
}

.new-start-fringe-performance-group {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 10px;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--ns-line);
    border-radius: 8px;
    background: #ffffff;
}

.new-start-fringe-performance-group.is-sold-out {
    border-color: #efb1b6;
    background: #fff8f8;
}

.new-start-fringe-performance-group__date {
    display: grid;
    align-content: center;
    justify-items: center;
    margin: 0;
    padding: 10px 8px;
    border: 1px solid #f2b8dc;
    border-left: 4px solid var(--ns-pink);
    border-radius: 6px;
    background: #fff3fb;
    color: var(--ns-ink);
    font-family: neue-kabel, Arial, sans-serif;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
}

.new-start-fringe-performance-group__date.sold-out {
    border-color: var(--ns-red);
    border-left-color: var(--ns-red);
    background: #fff0f1;
    color: #8f1019;
}

.new-start-fringe-performance-group__date span {
    color: #821056;
    font-size: 0.78rem;
    font-weight: 900;
}

.new-start-fringe-performance-group__date.sold-out span {
    color: var(--ns-red);
}

.new-start-fringe-performance-group__date strong {
    margin-top: 4px;
    font-size: 1.25rem;
    font-weight: 900;
}

.new-start-fringe-performance-group__status {
    display: inline-flex;
    justify-content: center;
    margin-top: 7px;
    padding: 4px 6px;
    border-radius: 999px;
    background: var(--ns-red);
    color: #ffffff !important;
    font-size: 0.68rem !important;
    line-height: 1;
}

.new-start-fringe-performance-group__times {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
    gap: 8px;
    min-width: 0;
}

.new-start-fringe-performance-option {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 3px 6px;
    align-items: center;
    min-height: 56px;
    padding: 9px 10px;
    border: 1px solid var(--ns-line);
    border-radius: 6px;
    background: #ffffff;
    color: var(--ns-ink);
    cursor: pointer;
    font: inherit;
    line-height: 1.05;
    text-align: left;
}

.new-start-fringe-performance-option .material-icons {
    grid-row: 1 / span 2;
    color: var(--ns-pink);
    font-size: 1.1rem;
}

.new-start-fringe-performance-option strong {
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 1.15rem;
    font-weight: 900;
}

.new-start-fringe-performance-option span:not(.material-icons) {
    color: var(--ns-muted);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.new-start-fringe-performance-option:hover,
.new-start-fringe-performance-option:focus,
.new-start-fringe-performance-option.is-selected {
    border-color: var(--ns-pink);
    background: var(--ns-pink);
    color: #ffffff;
    outline: none;
}

.new-start-fringe-performance-option:hover .material-icons,
.new-start-fringe-performance-option:focus .material-icons,
.new-start-fringe-performance-option.is-selected .material-icons,
.new-start-fringe-performance-option:hover span:not(.material-icons),
.new-start-fringe-performance-option:focus span:not(.material-icons),
.new-start-fringe-performance-option.is-selected span:not(.material-icons) {
    color: #ffffff;
}

.new-start-fringe-performance-option.limited {
    border-color: #b4870d;
    background: #fff9d8;
}

.new-start-fringe-performance-option.limited:hover,
.new-start-fringe-performance-option.limited:focus,
.new-start-fringe-performance-option.limited.is-selected {
    border-color: #b4870d;
    background: #b4870d;
    color: #ffffff;
}

.new-start-fringe-performance-option.sold-out-button,
.new-start-fringe-performance-option:disabled {
    border-color: #e24a54;
    background: #fff3f4;
    color: #8f1019;
    cursor: not-allowed;
    opacity: 1;
}

.new-start-fringe-performance-option.sold-out-button .material-icons,
.new-start-fringe-performance-option:disabled .material-icons,
.new-start-fringe-performance-option.sold-out-button span:not(.material-icons),
.new-start-fringe-performance-option:disabled span:not(.material-icons) {
    color: var(--ns-red);
}

.new-start-fringe-performance-option.sold-out-button:hover,
.new-start-fringe-performance-option.sold-out-button:focus {
    border-color: #e24a54;
    background: #fff3f4;
    color: #8f1019;
}

.new-start-fringe-selected-performance {
    display: grid;
    gap: 8px;
    padding: 12px;
    border: 1px solid #f2b8dc;
    border-left: 4px solid var(--ns-pink);
    border-radius: 8px;
    background: #ffffff;
}

.new-start-fringe-change-performance {
    display: inline-flex;
    justify-self: start;
    min-height: 40px;
    align-items: center;
    gap: 7px;
    padding: 8px 11px;
    border: 1px solid var(--ns-pink);
    border-radius: 6px;
    background: #fff3fb;
    color: #821056;
    cursor: pointer;
    font: inherit;
    font-size: 0.86rem;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
}

.new-start-fringe-change-performance:hover,
.new-start-fringe-change-performance:focus {
    background: var(--ns-pink);
    color: #ffffff;
    outline: none;
}

.new-start-fringe-change-performance .material-icons {
    font-size: 1rem;
}

.new-start-fringe-change-performance[hidden] {
    display: none;
}

.new-start-fringe-ticket-placeholder {
    padding: 14px;
    border: 1px dashed var(--ns-line);
    border-radius: 6px;
    background: #ffffff;
    color: var(--ns-muted);
    font-weight: 800;
    text-align: center;
}

.new-start-fringe-ticket-step--pending .new-start-promo-code {
    opacity: 0.6;
}

.new-start-fringe-ticket-step--pending #addToBasketButton {
    opacity: 0.62;
    cursor: not-allowed;
}

.new-start-fringe-calendar-month + .new-start-fringe-calendar-month {
    margin-top: 18px;
}

.new-start-fringe-calendar-title {
    margin: 0 0 12px;
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 1.18rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.new-start-fringe-show-calendar {
    width: 100%;
    border-collapse: separate;
    border-spacing: 5px;
    margin: -5px;
    table-layout: fixed;
}

.new-start-fringe-show-calendar th {
    padding: 0 0 4px;
    border: 0;
    background: transparent;
    color: var(--ns-muted);
    font-size: 0.72rem;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
}

.new-start-fringe-show-calendar td {
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
}

.new-start-fringe-show-calendar-day {
    display: inline-flex;
    width: 100%;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--ns-line);
    border-radius: 6px;
    background: #ffffff;
    color: var(--ns-ink);
    font: inherit;
    font-weight: 900;
    line-height: 1;
}

button.new-start-fringe-show-calendar-day {
    cursor: pointer;
}

.new-start-fringe-show-calendar-day.active {
    border-color: #4e7c1e;
    background: #eef6e7;
    color: #31580e;
}

.new-start-fringe-show-calendar-day.limited {
    border-color: #b4870d;
    background: #fff1b8;
    color: #6c4904;
}

.new-start-fringe-show-calendar-day.sold-out {
    border-color: var(--ns-red);
    background: #fff0f1;
    color: var(--ns-red);
}

.new-start-fringe-show-calendar-day.inactive {
    background: #eeeeea;
    color: #8c8c86;
}

button.new-start-fringe-show-calendar-day:hover,
button.new-start-fringe-show-calendar-day:focus,
.new-start-fringe-show-calendar-day.selected-fringe-calendar-date {
    border-color: var(--ns-pink);
    background: var(--ns-pink);
    color: #ffffff;
    outline: none;
}

.new-start-fringe-selected-date {
    margin: 0;
    color: var(--ns-ink);
    font-weight: 800;
    line-height: 1.35;
}

.new-start-fringe-show-time-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.new-start-fringe-time-button {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
}

.new-start-fringe-time-button.sold-out-button {
    opacity: 0.58;
}

.new-start-fringe-ticket-form {
    gap: 16px;
}

.new-start-fringe-ticket-form .new-start-ticket-form__section {
    display: grid;
    gap: 12px;
}

.new-start-fringe-ticket-form #fringe-price-band-container {
    gap: 8px;
}

.new-start-fringe-ticket-form .new-start-promo-code {
    margin-top: 0;
}

.new-start-fringe-show-venue__item + .new-start-fringe-show-venue__item {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--ns-line);
}

.new-start-fringe-show-venue {
    scroll-margin-top: 96px;
}

.new-start-fringe-show-venue h2 {
    margin-bottom: 20px;
}

.new-start-fringe-show-venue > .alert {
    margin-bottom: 22px;
}

.new-start-fringe-show-venue__item {
    display: grid;
    gap: 14px;
}

.new-start-fringe-show-venue__address {
    display: grid;
    gap: 5px;
    margin: 0;
    padding: 14px;
    border: 1px solid var(--ns-line);
    border-left: 4px solid var(--ns-pink);
    border-radius: 8px;
    background: #ffffff;
    color: var(--ns-ink);
    font-style: normal;
    line-height: 1.45;
}

.new-start-fringe-show-venue__address strong {
    margin-bottom: 2px;
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 1.18rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.new-start-fringe-show-venue__address a {
    color: var(--ns-pink);
    font-weight: 900;
}

.new-start-fringe-show-venue iframe {
    display: block;
    width: 100%;
    min-height: 320px;
    border: 1px solid var(--ns-line);
    border-radius: 8px;
    background: #eeeeee;
}

.new-start-fringe-show-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.new-start-fringe-show-share {
    display: flex;
    flex: 0 0 auto;
    gap: 8px;
}

.new-start-fringe-show-share__button {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--ns-line);
    border-radius: 6px;
    background: #ffffff;
}

.new-start-fringe-show-share__button:hover,
.new-start-fringe-show-share__button:focus {
    border-color: var(--ns-pink);
}

.new-start-fringe-show-share__button img {
    display: block;
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.new-start-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.new-start-info-card {
    display: grid;
    align-content: start;
    gap: 14px;
    min-width: 0;
    padding: 22px;
    border: 1px solid var(--ns-line);
    border-radius: 8px;
    background: var(--ns-surface);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.new-start-info-card > .material-icons {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: var(--ns-ink);
    color: #ffffff;
}

.new-start-info-card h3,
.new-start-embed-panel h3,
.new-start-embed-panel h4 {
    margin: 0;
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 1.45rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.new-start-info-card p {
    margin: 0;
    color: var(--ns-muted);
    line-height: 1.55;
}

.new-start-info-card .new-start-button {
    justify-self: start;
    margin-top: 4px;
}

.new-start-form-panel {
    padding: 24px;
    border: 1px solid var(--ns-line);
    border-radius: 8px;
    background: var(--ns-surface);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.new-start-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.new-start-form-field {
    min-width: 0;
}

.new-start-form-field--full {
    grid-column: 1 / -1;
}

.new-start-form-field label {
    display: inline-block;
    font-family: neue-kabel, Arial, sans-serif;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
}

.new-start-form-required {
    margin-left: 4px;
    color: var(--ns-red);
    font-weight: 900;
}

.new-start-form-field .input,
.new-start-form-field .textarea,
.new-start-form-field select {
    display: block;
    width: 100%;
    min-height: 48px;
    margin-top: 8px;
    border: 1px solid var(--ns-line);
    border-radius: 6px;
    box-shadow: none;
}

.new-start-form-field .textarea {
    min-height: 168px;
    resize: vertical;
}

.new-start-form-field .input:focus,
.new-start-form-field .textarea:focus,
.new-start-form-field select:focus {
    border-color: var(--ns-ink);
    box-shadow: 0 0 0 3px rgba(214, 31, 44, 0.16);
}

.new-start-form-field .text-danger,
.new-start-form-validation {
    display: block;
    margin-top: 7px;
    color: var(--ns-red);
    font-size: 0.88rem;
    font-weight: 800;
}

.new-start-form-validation:empty {
    display: none;
}

.new-start-form-note {
    display: block;
    margin-top: 8px;
    color: var(--ns-muted);
    font-size: 0.86rem;
    line-height: 1.4;
}

.new-start-static-page {
    padding-bottom: 54px;
}

.new-start-static-hero {
    border-bottom: 6px solid var(--ns-yellow);
    background: #111111;
    color: #ffffff;
}

.new-start-static-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.44fr);
    gap: 34px;
    align-items: center;
    padding: 54px 0;
}

.new-start-static-hero h1 {
    max-width: 820px;
    margin: 0;
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 4.6rem;
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.new-start-static-hero__summary {
    max-width: 720px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.12rem;
    line-height: 1.55;
}

.new-start-static-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.new-start-static-hero__panel {
    display: grid;
    gap: 12px;
    justify-items: start;
    min-width: 0;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    background: #ffffff;
    color: var(--ns-ink);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
}

.new-start-static-hero__panel p {
    margin: 0;
    color: var(--ns-red);
    font-family: neue-kabel, Arial, sans-serif;
    font-weight: 900;
    text-transform: uppercase;
}

.new-start-static-hero__panel strong {
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 2rem;
    font-weight: 900;
    line-height: 0.98;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.new-start-static-page .alert {
    padding: 14px 16px;
    border: 1px solid var(--ns-line);
    border-left: 6px solid var(--ns-red);
    border-radius: 8px;
    background: #fff0f1;
    color: var(--ns-ink);
}

.new-start-static-page .alert.warning {
    border-left-color: #b4870d;
    background: #fff9df;
}

.new-start-static-page .alert.success {
    border-left-color: var(--ns-green);
    background: #eef6e7;
}

.new-start-static-page .alert.danger {
    border-left-color: var(--ns-red);
    background: #fff0f1;
}

.new-start-static-page .alert p {
    margin: 0;
}

.new-start-static-page .alert p + p {
    margin-top: 8px;
}

.new-start-static-page .alert-title {
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
}

.new-start-static-page .alert a {
    color: var(--ns-red);
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 0.16em;
}

.new-start-subscribe-hero,
.new-start-error-hero {
    border-bottom-color: var(--ns-red);
}

.new-start-subscribe-hero__panel,
.new-start-error-hero__panel {
    border-top: 6px solid var(--ns-red);
}

.new-start-subscribe-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.34fr);
    gap: 24px;
    align-items: start;
}

.new-start-subscribe-form-panel {
    min-width: 0;
}

.new-start-subscribe-sidebar {
    position: sticky;
    top: 140px;
    display: grid;
    gap: 18px;
}

.new-start-subscribe-state {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, 760px);
}

.new-start-subscribe-state .new-start-button {
    margin-top: 4px;
}

.new-start-error-layout {
    display: grid;
    gap: 22px;
}

.new-start-error-message {
    display: grid;
    gap: 12px;
}

.new-start-error-message h2 {
    margin: 0;
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 2.45rem;
    font-weight: 900;
    line-height: 0.98;
    text-transform: uppercase;
}

.new-start-error-message p:not(.new-start-eyebrow) {
    margin: 0;
    color: var(--ns-muted);
    line-height: 1.6;
}

.new-start-error-actions .new-start-button--secondary {
    border: 1px solid var(--ns-line);
}

.new-start-living-wage-hero {
    border-bottom-color: #20c4f4;
}

.new-start-living-wage-hero__badge {
    border-top: 6px solid #20c4f4;
}

.new-start-living-wage-hero__badge img {
    width: min(100%, 230px);
    height: auto;
}

.new-start-living-wage-video-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.new-start-living-wage-story__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
    gap: 28px;
    align-items: start;
}

.new-start-living-wage-video-panel h2,
.new-start-living-wage-story__copy h2,
.new-start-red-raw-application-intro h2 {
    margin: 0;
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 0.98;
    text-transform: uppercase;
}

.new-start-living-wage-video-panel video {
    display: block;
    width: 100%;
    margin-top: 18px;
    aspect-ratio: 16 / 9;
    border: 4px solid var(--ns-ink);
    border-radius: 8px;
    background: #111111;
}

.new-start-living-wage-quote {
    margin: 0;
    padding: 24px;
    border: 1px solid var(--ns-line);
    border-left: 8px solid #20c4f4;
    border-radius: 8px;
    background: var(--ns-surface);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.new-start-living-wage-quote blockquote {
    margin: 0;
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 2.15rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.new-start-living-wage-quote figcaption {
    margin-top: 14px;
    color: var(--ns-muted);
    font-weight: 800;
}

.new-start-living-wage-story__copy {
    display: grid;
    gap: 14px;
    justify-items: start;
}

.new-start-living-wage-story__copy p:not(.new-start-eyebrow) {
    margin: 0;
    color: var(--ns-muted);
    line-height: 1.65;
}

.new-start-living-wage-info-grid {
    grid-template-columns: 1fr;
}

.new-start-living-wage-info-grid .new-start-info-card:nth-child(1) > .material-icons {
    background: #20c4f4;
}

.new-start-living-wage-info-grid .new-start-info-card:nth-child(2) > .material-icons {
    background: var(--ns-green);
}

.new-start-living-wage-info-grid .new-start-info-card:nth-child(3) > .material-icons {
    background: var(--ns-red);
}

.new-start-merch-hero {
    border-bottom-color: var(--ns-green);
}

.new-start-merch-hero__grid {
    grid-template-columns: minmax(0, 1fr);
}

.new-start-merch-product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.new-start-merch-card {
    display: grid;
    grid-template-rows: auto 1fr;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--ns-line);
    border-radius: 8px;
    background: var(--ns-surface);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.new-start-merch-card__media {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 0;
    padding: 8px;
    background: #111111;
}

.new-start-merch-card__media img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 6px;
    background: #f7f7f4;
    object-fit: contain;
}

.new-start-merch-card__body {
    display: grid;
    gap: 16px;
    padding: 24px;
}

.new-start-merch-card__heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: start;
}

.new-start-merch-card h3,
.new-start-merch-callout h2 {
    margin: 0;
    font-family: neue-kabel, Arial, sans-serif;
    font-weight: 900;
    line-height: 0.98;
    text-transform: uppercase;
}

.new-start-merch-card h3 {
    font-size: 2.1rem;
}

.new-start-merch-card__body > p:not(.new-start-eyebrow),
.new-start-merch-card__availability p,
.new-start-merch-callout p:not(.new-start-eyebrow) {
    margin: 0;
    color: var(--ns-muted);
    line-height: 1.58;
}

.new-start-merch-card__price {
    margin: 0;
    padding: 8px 12px;
    border-radius: 6px;
    background: var(--ns-blue);
    color: #ffffff;
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    line-height: 1;
}

.new-start-merch-card:nth-child(2) .new-start-merch-card__price {
    background: var(--ns-red);
}

.new-start-merch-card__availability {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-top: 2px;
    padding: 12px;
    border: 1px solid #cadfba;
    border-radius: 8px;
    background: #eef6e7;
}

.new-start-merch-card__availability .material-icons {
    color: var(--ns-green);
    font-size: 1.45rem;
}

.new-start-merch-callout {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 24px;
    border: 1px solid var(--ns-line);
    border-left: 8px solid var(--ns-yellow);
    border-radius: 8px;
    background: var(--ns-surface);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.new-start-merch-callout > .material-icons {
    display: inline-flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: var(--ns-yellow);
    color: var(--ns-ink);
    font-size: 2rem;
}

.new-start-merch-callout h2 {
    font-size: 2.4rem;
}

.new-start-merch-callout p:not(.new-start-eyebrow) {
    max-width: 760px;
    margin-top: 10px;
}

.new-start-red-raw-hero {
    border-bottom-color: var(--ns-red);
}

.new-start-red-raw-hero__image {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    background: #111111;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
}

.new-start-red-raw-hero__image img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.new-start-red-raw-week-grid .new-start-info-card:nth-child(1) > .material-icons {
    background: var(--ns-blue);
}

.new-start-red-raw-week-grid .new-start-info-card:nth-child(2) > .material-icons {
    background: var(--ns-red);
}

.new-start-red-raw-week-grid .new-start-info-card:nth-child(3) > .material-icons {
    background: var(--ns-green);
}

.new-start-red-raw-application-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.new-start-red-raw-application-intro {
    position: sticky;
    top: 140px;
    display: grid;
    gap: 18px;
}

.new-start-red-raw-application-intro p:not(.new-start-eyebrow),
.new-start-red-raw-process-list li {
    margin: 0;
    color: var(--ns-muted);
    line-height: 1.58;
}

.new-start-red-raw-application-panel {
    display: grid;
    gap: 18px;
    min-width: 0;
}

.new-start-red-raw-process-card {
    display: grid;
    gap: 14px;
    padding: 22px;
    border: 1px solid var(--ns-line);
    border-radius: 8px;
    background: var(--ns-surface);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.new-start-red-raw-process-card h3 {
    margin: 0;
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 1.45rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.new-start-red-raw-process-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.new-start-red-raw-process-list li {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
}

.new-start-red-raw-process-list li::before {
    width: 10px;
    height: 10px;
    margin-top: 7px;
    border-radius: 999px;
    background: var(--ns-red);
    content: "";
}

.new-start-red-raw-form {
    display: grid;
    gap: 18px;
}

.new-start-red-raw-form .new-start-form-grid {
    gap: 18px;
}

.new-start-red-raw-form .new-start-form-field .textarea {
    min-height: 132px;
}

.new-start-red-raw-form-actions {
    display: flex;
    justify-content: flex-end;
}

.new-start-red-raw-form-actions .new-start-button,
.new-start-red-raw-form-actions button,
.new-start-red-raw-form-actions input[type="submit"] {
    min-width: 190px;
}

@media screen and (max-width: 980px) {
    .new-start-static-page {
        padding-bottom: 38px;
    }

    .new-start-static-hero__grid,
    .new-start-living-wage-video-layout,
    .new-start-living-wage-story__grid,
    .new-start-merch-product-grid,
    .new-start-subscribe-layout,
    .new-start-red-raw-application-layout {
        grid-template-columns: 1fr;
    }

    .new-start-static-hero__grid {
        gap: 22px;
        padding: 32px 0;
    }

    .new-start-static-hero h1 {
        font-size: 2.65rem;
    }

    .new-start-static-hero__summary {
        font-size: 1rem;
    }

    .new-start-static-hero__actions .new-start-button {
        flex: 1 1 190px;
    }

    .new-start-subscribe-sidebar {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .new-start-red-raw-application-intro {
        position: static;
    }
}

@media screen and (max-width: 760px) {
    .new-start-static-hero__panel,
    .new-start-error-message,
    .new-start-living-wage-quote,
    .new-start-merch-card__body,
    .new-start-merch-callout,
    .new-start-red-raw-process-card {
        padding: 18px;
    }

    .new-start-subscribe-sidebar {
        grid-template-columns: 1fr;
    }

    .new-start-error-message h2 {
        font-size: 2.05rem;
    }

    .new-start-living-wage-video-panel h2,
    .new-start-living-wage-story__copy h2,
    .new-start-merch-card h3,
    .new-start-merch-callout h2,
    .new-start-red-raw-application-intro h2 {
        font-size: 2.05rem;
    }

    .new-start-red-raw-form-actions {
        justify-content: stretch;
    }

    .new-start-red-raw-form-actions .new-start-button,
    .new-start-red-raw-form-actions button,
    .new-start-red-raw-form-actions input[type="submit"] {
        width: 100%;
    }
}

@media screen and (max-width: 430px) {
    .new-start-static-hero h1 {
        font-size: 2.35rem;
    }

    .new-start-static-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .new-start-static-hero__panel strong,
    .new-start-living-wage-quote blockquote {
        font-size: 1.65rem;
    }

    .new-start-merch-card__heading,
    .new-start-merch-callout {
        grid-template-columns: 1fr;
    }

    .new-start-merch-card__price {
        justify-self: start;
    }

    .new-start-red-raw-hero__image img {
        aspect-ratio: 4 / 3;
    }
}

.new-start-embed-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.new-start-embed-panel {
    min-width: 0;
    padding: 18px;
    border: 1px solid var(--ns-line);
    border-radius: 8px;
    background: var(--ns-surface);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.new-start-embed-panel h3,
.new-start-embed-panel h4 {
    margin-bottom: 14px;
}

.new-start-embed-panel iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: 4px solid var(--ns-ink);
    border-radius: 8px;
    background: #eeeeee;
}

.new-start-embed-panel {
    scroll-margin-top: 128px;
}

.new-start-contact-page {
    padding-bottom: 54px;
}

.new-start-contact-hero {
    background: #111111;
    color: #ffffff;
}

.new-start-contact-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.46fr);
    gap: 34px;
    align-items: center;
    padding: 54px 0;
}

.new-start-contact-hero h1 {
    max-width: 820px;
    margin: 0;
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 4.6rem;
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.new-start-contact-hero__summary {
    max-width: 720px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.12rem;
    line-height: 1.55;
}

.new-start-contact-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.new-start-contact-hero__panel {
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    background: #ffffff;
    color: var(--ns-ink);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
}

.new-start-contact-hero__panel h2,
.new-start-contact-form-intro h2,
.new-start-contact-success__panel h2 {
    margin: 0;
    font-family: neue-kabel, Arial, sans-serif;
    font-weight: 900;
    line-height: 0.98;
    text-transform: uppercase;
}

.new-start-contact-hero__panel h2 {
    font-size: 1.8rem;
}

.new-start-contact-mini-list {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.new-start-contact-mini-list__item {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding: 10px;
    border: 1px solid var(--ns-line);
    border-radius: 8px;
    color: var(--ns-ink);
}

.new-start-contact-mini-list__item:hover,
.new-start-contact-mini-list__item:focus {
    color: var(--ns-ink);
    border-color: var(--ns-ink);
}

.new-start-contact-mini-list__item strong {
    font-weight: 900;
}

.new-start-contact-mini-list__item .new-start-venue-pill {
    justify-content: center;
    width: 100%;
}

.new-start-contact-alert-anchor {
    margin-top: 18px;
}

.new-start-contact-page .alert {
    padding: 14px 16px;
    border: 1px solid var(--ns-line);
    border-left: 6px solid var(--ns-red);
    border-radius: 8px;
    background: #fff0f1;
    color: var(--ns-ink);
}

.new-start-contact-page .alert p {
    margin: 0;
}

.new-start-contact-page .alert p + p {
    margin-top: 8px;
}

.new-start-contact-page .alert-title {
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
}

.new-start-contact-success {
    padding: 48px 0 0;
}

.new-start-contact-success__panel {
    display: grid;
    gap: 14px;
    justify-items: start;
    max-width: 760px;
    padding: 28px;
    border: 1px solid var(--ns-line);
    border-radius: 8px;
    background: var(--ns-surface);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.new-start-contact-success__panel h2,
.new-start-contact-form-intro h2 {
    font-size: 2.6rem;
}

.new-start-contact-success__panel p:not(.new-start-eyebrow),
.new-start-contact-form-intro p {
    margin: 0;
    color: var(--ns-muted);
    line-height: 1.6;
}

.new-start-contact-action-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.new-start-contact-venue-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.new-start-contact-venue-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 22px;
    border: 1px solid var(--ns-line);
    border-radius: 8px;
    background: var(--ns-surface);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.new-start-contact-venue-card {
    grid-template-columns: 1fr;
    align-items: start;
}

.new-start-contact-venue-panel h3 {
    margin: 0;
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.new-start-contact-list {
    display: grid;
    gap: 10px;
    margin: 0;
}

.new-start-contact-list li {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
}

.new-start-contact-list .material-icons {
    color: var(--ns-red);
    font-size: 1.25rem;
}

.new-start-contact-list a {
    color: var(--ns-ink);
    font-weight: 900;
}

.new-start-contact-venue-card__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    align-self: end;
}

.new-start-contact-venue-card__actions .new-start-button {
    width: 100%;
}

.new-start-contact-form-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
    gap: 30px;
    align-items: start;
}

.new-start-contact-form-intro {
    display: grid;
    gap: 14px;
    position: sticky;
    top: 116px;
}

.new-start-contact-form-note span {
    color: var(--ns-red);
    font-weight: 900;
}

.new-start-contact-form {
    min-width: 0;
}

.new-start-contact-form__actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.new-start-contact-form__actions .new-start-button,
.new-start-contact-form__actions button {
    min-width: 180px;
}

.new-start-contact-media-list {
    display: grid;
    gap: 28px;
}

.new-start-contact-media-venue {
    display: grid;
    gap: 14px;
}

.new-start-contact-media-venue h3 {
    margin: 0;
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.new-start-voucher-page {
    padding-bottom: 54px;
}

.new-start-voucher-hero {
    border-bottom: 6px solid var(--ns-yellow);
    background: #111111;
    color: #ffffff;
}

.new-start-voucher-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
    gap: 34px;
    align-items: center;
    padding: 54px 0;
}

.new-start-voucher-hero h1 {
    max-width: 820px;
    margin: 0;
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 4.6rem;
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.new-start-voucher-hero__summary {
    max-width: 720px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.12rem;
    line-height: 1.55;
}

.new-start-voucher-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.new-start-voucher-hero__voucher {
    display: grid;
    gap: 12px;
    justify-items: start;
    min-width: 0;
    padding: 28px;
    border: 4px solid var(--ns-yellow);
    border-radius: 8px;
    background: #ffffff;
    color: var(--ns-ink);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
    transform: rotate(-1.5deg);
}

.new-start-voucher-hero__voucher--digital {
    border-color: var(--ns-red);
}

.new-start-voucher-hero__voucher .material-icons {
    display: inline-flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: var(--ns-ink);
    color: #ffffff;
    font-size: 2rem;
}

.new-start-voucher-hero__voucher p {
    margin: 6px 0 0;
    color: var(--ns-red);
    font-family: neue-kabel, Arial, sans-serif;
    font-weight: 900;
    text-transform: uppercase;
}

.new-start-voucher-hero__voucher strong {
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 0.95;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.new-start-voucher-hero__voucher small {
    color: var(--ns-muted);
    font-weight: 900;
    text-transform: uppercase;
}

.new-start-voucher-alert-wrap {
    margin-top: 22px;
}

.new-start-voucher-page .alert {
    padding: 14px 16px;
    border: 1px solid var(--ns-line);
    border-left: 6px solid var(--ns-red);
    border-radius: 8px;
    background: #fff0f1;
    color: var(--ns-ink);
}

.new-start-voucher-page .alert.warning {
    border-left-color: #b4870d;
    background: #fff9df;
}

.new-start-voucher-page .alert p {
    margin: 0;
}

.new-start-voucher-page .alert p + p {
    margin-top: 8px;
}

.new-start-voucher-page .alert-title {
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
}

.new-start-voucher-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.new-start-voucher-option-card {
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    gap: 16px;
    min-width: 0;
    padding: 24px;
    border: 1px solid var(--ns-line);
    border-radius: 8px;
    background: var(--ns-surface);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.new-start-voucher-option-card__icon {
    display: inline-flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: var(--ns-ink);
    color: #ffffff;
    font-size: 2rem;
}

.new-start-voucher-option-card h3,
.new-start-voucher-panel-heading h2,
.new-start-voucher-detail-intro h2,
.new-start-voucher-summary-card h2,
.new-start-voucher-modal h2 {
    margin: 0;
    font-family: neue-kabel, Arial, sans-serif;
    font-weight: 900;
    line-height: 0.98;
    text-transform: uppercase;
}

.new-start-voucher-option-card h3 {
    font-size: 1.9rem;
}

.new-start-voucher-option-card p:not(.new-start-eyebrow),
.new-start-voucher-panel-heading p:not(.new-start-eyebrow),
.new-start-voucher-detail-intro p:not(.new-start-eyebrow),
.new-start-voucher-summary-card p {
    margin: 0;
    color: var(--ns-muted);
    line-height: 1.58;
}

.new-start-voucher-option-card .new-start-button {
    width: 100%;
}

.new-start-voucher-detail-grid,
.new-start-voucher-purchase-layout,
.new-start-voucher-form-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(340px, 0.64fr);
    gap: 28px;
    align-items: start;
}

.new-start-voucher-form-layout {
    grid-template-columns: minmax(300px, 0.45fr) minmax(0, 1fr);
}

.new-start-voucher-detail-intro {
    display: grid;
    gap: 14px;
    justify-items: start;
}

.new-start-voucher-detail-intro h2,
.new-start-voucher-panel-heading h2 {
    font-size: 2.6rem;
}

.new-start-voucher-details-panel,
.new-start-voucher-summary-card {
    min-width: 0;
    padding: 22px;
    border: 1px solid var(--ns-line);
    border-radius: 8px;
    background: var(--ns-surface);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.new-start-voucher-detail-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.new-start-voucher-detail-list li {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    color: var(--ns-muted);
    line-height: 1.5;
}

.new-start-voucher-detail-list .material-icons {
    color: var(--ns-red);
    font-size: 1.25rem;
    line-height: 1.35;
}

.new-start-voucher-purchase-panel,
.new-start-voucher-form {
    min-width: 0;
}

.new-start-voucher-panel-heading {
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
}

.new-start-voucher-panel-heading .new-start-eyebrow {
    margin-bottom: 0;
}

.new-start-voucher-sidebar {
    display: grid;
    gap: 18px;
    position: sticky;
    top: 116px;
}

.new-start-voucher-summary-card {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}

.new-start-voucher-summary-card > .material-icons {
    display: inline-flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: var(--ns-ink);
    color: #ffffff;
    font-size: 2rem;
}

.new-start-voucher-summary-card h2 {
    font-size: 1.7rem;
}

.new-start-voucher-form__actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 22px;
}

.new-start-voucher-form__actions .new-start-button {
    min-width: 190px;
}

body.new-start-modal-open {
    overflow: hidden;
}

.new-start-voucher-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.68);
}

.new-start-voucher-modal[hidden] {
    display: none;
}

.new-start-voucher-modal__content {
    width: min(100%, 760px);
    max-height: calc(100vh - 48px);
    overflow: auto;
    padding: 24px;
    border-radius: 8px;
    background: var(--ns-surface);
    color: var(--ns-ink);
    box-shadow: var(--ns-shadow);
}

.new-start-voucher-preview {
    display: grid;
    gap: 20px;
    margin-top: 18px;
    padding: 24px;
    border: 1px solid var(--ns-line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.new-start-voucher-preview__header {
    display: grid;
    gap: 4px;
    padding-bottom: 14px;
    border-bottom: 3px solid var(--ns-yellow);
}

.new-start-voucher-preview__header p,
.new-start-voucher-preview__header strong {
    margin: 0;
    font-family: neue-kabel, Arial, sans-serif;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.new-start-voucher-preview__header p {
    color: var(--ns-red);
}

.new-start-voucher-preview__header strong {
    font-size: 1.8rem;
}

.new-start-voucher-preview__address p,
.new-start-voucher-preview__message p,
.new-start-voucher-preview__footer p {
    margin: 0;
    line-height: 1.5;
}

.new-start-voucher-preview__message {
    min-height: 86px;
    padding: 16px;
    border-radius: 8px;
    background: #f4f4f1;
    font-size: 1.08rem;
}

.new-start-voucher-preview__footer {
    color: var(--ns-muted);
    font-size: 0.92rem;
}

.new-start-voucher-modal__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.new-start-fringe-page {
    padding-bottom: 54px;
}

.new-start-fringe-page .new-start-eyebrow {
    color: var(--ns-pink);
}

.new-start-fringe-page .new-start-button--primary,
.new-start-fringe-card > .new-start-button {
    background: var(--ns-pink);
}

.new-start-fringe-hero {
    border-bottom: 6px solid var(--ns-pink);
    background: #111111;
    color: #ffffff;
}

.new-start-fringe-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.38fr);
    gap: 34px;
    align-items: center;
    padding: 54px 0;
}

.new-start-fringe-hero h1 {
    max-width: 820px;
    margin: 0;
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 5.1rem;
    font-weight: 900;
    line-height: 0.88;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.new-start-fringe-hero h1 span {
    display: block;
}

.new-start-fringe-hero__summary {
    max-width: 720px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.12rem;
    line-height: 1.55;
}

.new-start-fringe-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.new-start-fringe-hero__panel {
    display: grid;
    gap: 18px;
    min-width: 0;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: #ffffff;
    color: var(--ns-ink);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
}

.new-start-fringe-hero__panel > .material-icons {
    display: inline-flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: var(--ns-pink);
    color: #ffffff;
    font-size: 2rem;
}

.new-start-fringe-hero__panel dl {
    display: grid;
    gap: 12px;
    margin: 0;
}

.new-start-fringe-hero__panel dl div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: baseline;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--ns-line);
}

.new-start-fringe-hero__panel dl div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.new-start-fringe-hero__panel dt {
    color: var(--ns-muted);
    font-weight: 800;
    text-transform: uppercase;
}

.new-start-fringe-hero__panel dd {
    margin: 0;
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.new-start-fringe-filter-section {
    padding-bottom: 28px;
}

.new-start-fringe-filter {
    padding: 24px;
    border: 1px solid var(--ns-line);
    border-top: 6px solid var(--ns-pink);
    border-radius: 8px;
    background: var(--ns-surface);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.new-start-fringe-filter__header {
    align-items: flex-start;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    margin-bottom: 20px;
}

.new-start-fringe-filter__header h2 {
    margin: 0;
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 0.98;
    text-transform: uppercase;
}

.new-start-fringe-filter__header .fringe-filter-intro {
    margin: 10px 0 0;
    color: var(--ns-muted);
    line-height: 1.55;
}

.new-start-fringe-filter__layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.78fr) minmax(360px, 1.22fr);
    gap: 18px;
    align-items: stretch;
}

.new-start-fringe-filter__controls,
.new-start-fringe-filter__calendar {
    min-width: 0;
    padding: 18px;
    border: 1px solid var(--ns-line);
    border-radius: 8px;
    background: #f7f7f4;
}

.new-start-fringe-filter__controls {
    display: grid;
    gap: 16px;
}

.new-start-fringe-filter .fringe-filter-field {
    display: grid;
    gap: 8px;
}

.new-start-fringe-filter .fringe-filter-label {
    color: var(--ns-ink);
    font-family: neue-kabel, Arial, sans-serif;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
}

.new-start-fringe-filter select,
.new-start-fringe-filter input[type="search"] {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid var(--ns-line);
    border-radius: 6px;
    background: #ffffff;
    box-shadow: none;
}

.new-start-fringe-filter select:focus,
.new-start-fringe-filter input[type="search"]:focus {
    border-color: var(--ns-ink);
    box-shadow: 0 0 0 3px rgba(236, 12, 140, 0.16);
    outline: none;
}

.new-start-fringe-filter .fringe-sort-toggle {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.new-start-fringe-filter .fringe-sort-toggle-button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border: 1px solid var(--ns-line);
    border-radius: 6px;
    background: #ffffff;
    color: var(--ns-ink);
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
}

.new-start-fringe-filter .fringe-sort-toggle-button:hover,
.new-start-fringe-filter .fringe-sort-toggle-button:focus,
.new-start-fringe-filter .fringe-sort-toggle-button.is-active {
    border-color: var(--ns-pink);
    background: var(--ns-pink);
    color: #ffffff;
}

.new-start-fringe-filter .fringe-applied-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
    max-width: 52%;
}

.new-start-fringe-filter .fringe-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--ns-pink);
    color: #ffffff;
    font-weight: 900;
    line-height: 1;
}

.new-start-fringe-filter .fringe-pill-clear {
    background: var(--ns-ink);
}

.new-start-fringe-filter .fringe-pill button {
    display: inline-flex;
    width: 22px;
    height: 22px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    color: #ffffff;
    cursor: pointer;
    font-weight: 900;
    line-height: 1;
}

.new-start-fringe-filter .fringe-listings-calendar-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.new-start-fringe-filter .fringe-listings-calendar-title {
    margin: 0;
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.new-start-fringe-filter .fringe-calendar-clear {
    display: none;
    min-height: 38px;
    align-items: center;
    gap: 4px;
    padding: 7px 11px;
    border: 1px solid var(--ns-line);
    border-radius: 999px;
    background: #ffffff;
    color: var(--ns-ink);
    font-weight: 900;
    cursor: pointer;
}

.new-start-fringe-filter .fringe-calendar-clear:hover,
.new-start-fringe-filter .fringe-calendar-clear:focus {
    border-color: var(--ns-pink);
    background: var(--ns-pink);
    color: #ffffff;
}

.new-start-fringe-filter .fringe-calendar-clear .material-icons {
    font-size: 1rem;
}

.new-start-fringe-filter table.fringe-listings-calendar {
    width: 100%;
    border-collapse: separate;
    border-spacing: 6px;
    margin: -6px;
    table-layout: fixed;
}

.new-start-fringe-filter table.fringe-listings-calendar th {
    padding: 0 0 4px;
    border: 0;
    background: transparent;
    color: var(--ns-muted);
    font-size: 0.75rem;
    font-weight: 900;
    text-align: center;
}

.new-start-fringe-filter table.fringe-listings-calendar td {
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
}

.new-start-fringe-filter .fringe-listings-calendar-day {
    display: inline-flex;
    width: 100%;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--ns-line);
    border-radius: 6px;
    background: #ffffff;
    color: var(--ns-ink);
    font-weight: 900;
    cursor: pointer;
}

.new-start-fringe-filter .fringe-listings-calendar-day:hover,
.new-start-fringe-filter .fringe-listings-calendar-day:focus,
.new-start-fringe-filter .fringe-listings-calendar-day.selected-fringe-calendar-date {
    border-color: var(--ns-pink);
    background: var(--ns-pink);
    color: #ffffff;
    outline: none;
}

.new-start-fringe-results {
    padding-top: 24px;
}

.new-start-fringe-results-filter-summary {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    margin: 0 0 20px;
    padding: 18px;
    border: 1px solid var(--ns-line);
    border-left: 6px solid var(--ns-pink);
    border-radius: 8px;
    background: #fff3fb;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.new-start-fringe-results-filter-summary p {
    margin: 0;
}

.new-start-fringe-results-filter-summary #FringeResultsFilterSummaryText {
    margin-top: 6px;
    color: var(--ns-ink);
    font-weight: 900;
    line-height: 1.35;
}

.new-start-fringe-results-filter-summary__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.new-start-fringe-results-filter-summary__pills > span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 32px;
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--ns-ink);
    color: #ffffff;
    font-size: 0.86rem;
    font-weight: 800;
    line-height: 1;
}

.new-start-fringe-results-filter-summary__pills strong {
    color: var(--ns-yellow);
    font-family: neue-kabel, Arial, sans-serif;
    font-weight: 900;
    text-transform: uppercase;
}

.new-start-fringe-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.new-start-fringe-grid__item {
    min-width: 0;
}

.new-start-fringe-card {
    display: grid;
    grid-template-rows: auto 1fr auto;
    min-height: 100%;
}

.new-start-fringe-card__body {
    display: grid;
    flex: 1 1 auto;
    grid-template-rows: 32px 5.85rem 62px 87px minmax(124px, 1fr);
    gap: 12px;
    align-items: stretch;
}

.new-start-fringe-card__title-row {
    display: flex;
    min-height: 32px;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 0;
}

.new-start-fringe-card__title-row .new-start-eyebrow {
    margin: 0;
}

.new-start-fringe-card h3 {
    display: -webkit-box;
    height: 5.85rem;
    margin: 0;
    overflow-wrap: anywhere;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.new-start-fringe-card h3 a {
    color: var(--ns-ink);
}

.new-start-fringe-card h3 a:hover,
.new-start-fringe-card h3 a:focus {
    color: var(--ns-pink);
}

.new-start-fringe-category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    min-height: 0;
    max-height: 62px;
    align-content: flex-start;
    margin-top: 0;
    overflow: hidden;
}

.new-start-fringe-category-list span {
    display: inline-flex;
    align-items: center;
    min-height: 27px;
    padding: 5px 8px;
    border-radius: 6px;
    background: #f7d7eb;
    color: #821056;
    font-size: 0.76rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.new-start-fringe-date-strip {
    display: grid;
    grid-template-columns: repeat(9, minmax(0, 1fr));
    gap: 4px;
    align-self: start;
    margin-top: 0;
}

.new-start-fringe-date-strip span {
    display: inline-flex;
    min-width: 0;
    min-height: 25px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--ns-line);
    border-radius: 5px;
    background: #eeeeea;
    color: #8c8c86;
    font-size: 0.74rem;
    font-weight: 900;
    line-height: 1;
}

.new-start-fringe-date-strip span.active {
    border-color: #4e7c1e;
    background: #eef6e7;
    color: #31580e;
}

.new-start-fringe-date-strip span.limited {
    border-color: #b4870d;
    background: #fff1b8;
    color: #6c4904;
}

.new-start-fringe-date-strip span.sold-out {
    border-color: var(--ns-red);
    background: var(--ns-red);
    color: #ffffff;
}

.new-start-fringe-card__details {
    display: grid;
    grid-template-rows: 56px 30px 30px;
    align-content: start;
    margin-top: 0;
    overflow: hidden;
}

.new-start-fringe-card__details li {
    grid-template-columns: 24px 78px minmax(0, 1fr);
    align-items: start;
    min-width: 0;
}

.new-start-fringe-time-list {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    min-width: 0;
    max-height: 52px;
    align-content: flex-start;
    overflow: hidden;
}

.new-start-event-details .new-start-fringe-time-list .times-badge {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 4px 6px;
    border-radius: 5px;
    background: var(--ns-ink);
    color: #ffffff;
    font-size: 0.76rem;
    font-weight: 900;
    line-height: 1;
}

.new-start-event-details .new-start-fringe-card__value {
    min-width: 0;
    color: var(--ns-muted);
    font-weight: 700;
    overflow-wrap: anywhere;
}

.new-start-fringe-card__meta {
    margin: 0;
    color: var(--ns-muted);
    line-height: 1.5;
    overflow: hidden;
}

.new-start-fringe-empty {
    margin-top: 18px;
}

.new-start-search-page {
    padding-bottom: 54px;
}

.new-start-search-hero {
    border-bottom: 6px solid var(--ns-yellow);
    background: #111111;
    color: #ffffff;
}

.new-start-search-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.52fr);
    gap: 34px;
    align-items: end;
    padding: 54px 0;
}

.new-start-search-hero h1 {
    max-width: 820px;
    margin: 0;
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 4.6rem;
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.new-start-search-hero__summary,
.new-start-listings-hero__summary {
    max-width: 720px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.08rem;
    line-height: 1.55;
}

.new-start-search-form {
    display: grid;
    gap: 12px;
    min-width: 0;
    padding: 22px;
    border: 1px solid var(--ns-line);
    border-radius: 8px;
    background: var(--ns-surface);
    color: var(--ns-ink);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.new-start-search-form label {
    font-family: neue-kabel, Arial, sans-serif;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
}

.new-start-search-form__controls {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}

.new-start-search-form .input {
    min-height: 48px;
    border: 1px solid var(--ns-line);
    border-radius: 6px;
    box-shadow: none;
}

.new-start-search-form .input:focus {
    border-color: var(--ns-ink);
    box-shadow: 0 0 0 3px rgba(214, 31, 44, 0.16);
}

.new-start-search-results-heading {
    align-items: center;
}

.new-start-search-count {
    margin: 0;
    color: var(--ns-muted);
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 900;
    text-transform: uppercase;
}

.new-start-search-alert {
    margin-bottom: 18px;
    padding: 14px 16px;
    border: 1px solid var(--ns-line);
    border-left: 6px solid #b4870d;
    border-radius: 8px;
    background: #fff9df;
    color: var(--ns-ink);
}

.new-start-search-alert p {
    margin: 0;
}

.new-start-search-alert p + p {
    margin-top: 8px;
}

.new-start-search-alert .alert-title {
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
}

.new-start-search-card .new-start-card__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.new-start-search-card h3 a {
    color: var(--ns-ink);
}

.new-start-search-card h3 a:hover,
.new-start-search-card h3 a:focus {
    color: var(--ns-red);
}

.new-start-search-card__meta {
    min-height: 1rem;
    margin: 8px 0 0;
    color: var(--ns-muted);
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.3;
    text-transform: uppercase;
}

.new-start-search-empty {
    min-height: 220px;
}

.new-start-search-date-results {
    padding-top: 30px;
}

.new-start-membership-page {
    padding-bottom: 54px;
}

.new-start-membership-hero {
    position: relative;
    display: grid;
    min-height: clamp(480px, calc(100vh - 150px), 620px);
    align-items: center;
    overflow: hidden;
    border-bottom: 6px solid var(--ns-yellow);
    background: #111111;
    color: #ffffff;
}

.new-start-membership-hero__image,
.new-start-membership-hero__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.new-start-membership-hero__image {
    object-fit: cover;
    object-position: center;
}

.new-start-membership-hero__overlay {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.68) 52%, rgba(0, 0, 0, 0.26) 100%),
        rgba(0, 0, 0, 0.28);
}

.new-start-membership-hero__content {
    position: relative;
    z-index: 1;
    padding: 58px 0;
}

.new-start-membership-hero h1 {
    max-width: 820px;
    margin: 0;
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 5.1rem;
    font-weight: 900;
    line-height: 0.88;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.new-start-membership-hero__summary {
    max-width: 690px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.14rem;
    line-height: 1.55;
}

.new-start-membership-hero__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    max-width: 780px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.new-start-membership-hero__facts li {
    display: grid;
    min-width: 148px;
    gap: 4px;
    padding-left: 14px;
    border-left: 5px solid var(--ns-yellow);
}

.new-start-membership-hero__facts strong {
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 1.7rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.new-start-membership-hero__facts span {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

.new-start-membership-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.new-start-membership-actions form,
.new-start-membership-purchase-actions form {
    display: flex;
    margin: 0;
}

.new-start-membership-actions .new-start-button {
    min-width: 190px;
}

.new-start-membership-voucher {
    padding-bottom: 34px;
}

.new-start-membership-callout {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 24px;
    border: 1px solid var(--ns-line);
    border-radius: 8px;
    background: var(--ns-surface);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.new-start-membership-callout > .material-icons {
    display: inline-flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: var(--ns-red);
    color: #ffffff;
    font-size: 2rem;
}

.new-start-membership-callout h2,
.new-start-membership-story__copy h2,
.new-start-membership-details-panel h2,
.new-start-membership-purchase-card h2 {
    margin: 0;
    font-family: neue-kabel, Arial, sans-serif;
    font-weight: 900;
    line-height: 0.98;
    text-transform: uppercase;
}

.new-start-membership-callout h2 {
    font-size: 2rem;
}

.new-start-membership-callout p:not(.new-start-eyebrow) {
    margin: 8px 0 0;
    color: var(--ns-muted);
    line-height: 1.55;
}

.new-start-membership-highlight-grid .new-start-info-card:nth-child(1) > .material-icons {
    background: var(--ns-red);
}

.new-start-membership-highlight-grid .new-start-info-card:nth-child(2) > .material-icons {
    background: var(--ns-blue);
}

.new-start-membership-highlight-grid .new-start-info-card:nth-child(3) > .material-icons {
    background: var(--ns-green);
}

.new-start-membership-story {
    background: #111111;
    color: #ffffff;
}

.new-start-membership-story .new-start-eyebrow {
    color: var(--ns-yellow);
}

.new-start-membership-story__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.62fr);
    gap: 34px;
    align-items: center;
}

.new-start-membership-story__copy {
    display: grid;
    gap: 14px;
}

.new-start-membership-story__copy h2,
.new-start-membership-details-panel h2 {
    font-size: 2.6rem;
}

.new-start-membership-story__copy p:not(.new-start-eyebrow) {
    max-width: 780px;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.62;
}

.new-start-membership-story__image {
    margin: 0;
}

.new-start-membership-story__image img {
    display: block;
    width: 100%;
    border: 4px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    object-fit: cover;
}

.new-start-membership-story__image figcaption {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.4;
}

.new-start-membership-join__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.48fr);
    gap: 28px;
    align-items: start;
}

.new-start-membership-details-panel,
.new-start-membership-purchase-card {
    min-width: 0;
    padding: 24px;
    border: 1px solid var(--ns-line);
    border-radius: 8px;
    background: var(--ns-surface);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.new-start-membership-details-panel > .new-start-eyebrow,
.new-start-membership-purchase-card .new-start-eyebrow {
    margin-bottom: 10px;
}

.new-start-membership-detail-list {
    display: grid;
    gap: 12px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.new-start-membership-detail-list li {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    color: var(--ns-muted);
    line-height: 1.5;
}

.new-start-membership-detail-list .material-icons {
    color: var(--ns-red);
    font-size: 1.25rem;
    line-height: 1.35;
}

.new-start-membership-purchase-card {
    position: sticky;
    top: 116px;
    display: grid;
    gap: 16px;
}

.new-start-membership-purchase-card img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 8px;
    object-fit: cover;
}

.new-start-membership-purchase-card h2 {
    font-size: 2rem;
}

.new-start-membership-purchase-card p:not(.new-start-eyebrow) {
    margin: 0;
    color: var(--ns-muted);
    line-height: 1.55;
}

.new-start-membership-price {
    display: grid;
    gap: 2px;
    padding: 16px;
    border: 1px solid var(--ns-line);
    border-left: 6px solid var(--ns-red);
    border-radius: 8px;
    background: #f7f7f4;
}

.new-start-membership-price strong {
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.new-start-membership-price span,
.new-start-membership-note {
    color: var(--ns-muted);
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.35;
}

.new-start-membership-purchase-actions {
    display: grid;
    gap: 10px;
}

.new-start-membership-purchase-actions form,
.new-start-membership-purchase-actions .new-start-button {
    width: 100%;
}

.new-start-customer-page {
    padding-bottom: 54px;
}

.new-start-customer-page a {
    color: var(--ns-red);
    font-weight: 800;
}

.new-start-customer-page a:hover,
.new-start-customer-page a:focus {
    color: var(--ns-ink);
}

.new-start-customer-hero {
    background: #111111;
    color: #ffffff;
}

.new-start-customer-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
    gap: 34px;
    align-items: center;
    padding: 54px 0;
}

.new-start-customer-hero h1 {
    max-width: 820px;
    margin: 0;
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 4.6rem;
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.new-start-customer-hero__summary {
    max-width: 720px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.12rem;
    line-height: 1.55;
}

.new-start-customer-hero__panel,
.new-start-customer-card {
    padding: 22px;
    border: 1px solid var(--ns-line);
    border-radius: 8px;
    background: var(--ns-surface);
    color: var(--ns-ink);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.new-start-customer-hero__panel {
    display: grid;
    gap: 14px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
}

.new-start-customer-hero__panel > .material-icons,
.new-start-customer-card__icon {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: var(--ns-red);
    color: #ffffff;
}

.new-start-customer-card__icon .material-icons {
    font-size: 1.55rem;
}

.new-start-customer-hero__panel h2,
.new-start-customer-panel-heading h2,
.new-start-customer-card h2 {
    margin: 0;
    font-family: neue-kabel, Arial, sans-serif;
    font-weight: 900;
    line-height: 0.98;
    text-transform: uppercase;
}

.new-start-customer-hero__panel h2 {
    font-size: 1.8rem;
}

.new-start-customer-panel-heading h2 {
    font-size: 2.45rem;
}

.new-start-customer-card h2 {
    font-size: 1.6rem;
}

.new-start-customer-hero__panel p,
.new-start-customer-panel-heading p:not(.new-start-eyebrow),
.new-start-customer-card p {
    margin: 0;
    color: var(--ns-muted);
    line-height: 1.6;
}

.new-start-customer-hero__panel .new-start-button--secondary {
    justify-self: start;
    background: var(--ns-ink);
    color: #ffffff;
}

.new-start-auth-layout {
    max-width: 720px;
}

.new-start-customer-auth-panel {
    display: grid;
    gap: 20px;
}

.new-start-create-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.36fr) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.new-start-customer-sidebar {
    position: sticky;
    top: 140px;
    display: grid;
    gap: 18px;
}

.new-start-create-form-panel {
    min-width: 0;
}

.new-start-customer-panel-heading {
    display: grid;
    gap: 10px;
    margin-bottom: 6px;
}

.new-start-customer-form {
    display: grid;
    gap: 18px;
}

.new-start-customer-form-links {
    margin-top: -2px;
}

.new-start-customer-form-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 4px;
}

.new-start-customer-form-actions .new-start-button {
    min-width: 170px;
}

.new-start-customer-form-actions .new-start-button--secondary {
    border: 1px solid var(--ns-line);
}

.new-start-customer-state {
    display: grid;
    gap: 14px;
    justify-items: start;
}

.new-start-customer-state > .material-icons {
    display: inline-flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: var(--ns-red);
    color: #ffffff;
    font-size: 2rem;
}

.new-start-customer-state h2 {
    margin: 0;
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 2.45rem;
    font-weight: 900;
    line-height: 0.98;
    text-transform: uppercase;
}

.new-start-customer-state p:not(.new-start-eyebrow) {
    margin: 0;
    color: var(--ns-muted);
    line-height: 1.6;
}

.new-start-customer-page a.new-start-button--primary,
.new-start-customer-page a.new-start-button--dark,
.new-start-customer-page a.new-start-button--primary:hover,
.new-start-customer-page a.new-start-button--primary:focus,
.new-start-customer-page a.new-start-button--dark:hover,
.new-start-customer-page a.new-start-button--dark:focus {
    color: #ffffff;
}

.new-start-customer-page a.new-start-button--secondary,
.new-start-customer-page a.new-start-button--secondary:hover,
.new-start-customer-page a.new-start-button--secondary:focus {
    color: var(--ns-ink);
}

.new-start-customer-page .new-start-customer-hero__panel a.new-start-button--secondary,
.new-start-customer-page .new-start-customer-hero__panel a.new-start-button--secondary:hover,
.new-start-customer-page .new-start-customer-hero__panel a.new-start-button--secondary:focus {
    color: #ffffff;
}

.new-start-customer-validation {
    margin: 0;
    padding: 12px 14px;
    border: 1px solid var(--ns-line);
    border-left: 6px solid var(--ns-red);
    border-radius: 8px;
    background: #fff0f1;
    color: var(--ns-ink);
    font-weight: 800;
}

.new-start-customer-validation:empty {
    display: none;
}

.new-start-customer-validation.validation-summary-valid {
    display: none;
}

.new-start-customer-validation ul {
    margin: 0;
    padding-left: 18px;
}

.new-start-customer-page .alert {
    padding: 14px 16px;
    border: 1px solid var(--ns-line);
    border-left: 6px solid var(--ns-red);
    border-radius: 8px;
    background: #fff0f1;
    color: var(--ns-ink);
}

.new-start-customer-page .alert.success {
    border-left-color: var(--ns-green);
    background: #eef6e7;
}

.new-start-customer-page .alert.danger {
    border-left-color: var(--ns-red);
    background: #fff0f1;
}

.new-start-customer-page .alert p {
    margin: 0;
}

.new-start-customer-page .alert p + p {
    margin-top: 8px;
}

.new-start-customer-page .alert-title {
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
}

.new-start-account-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.new-start-account-sidebar {
    position: sticky;
    top: 140px;
    display: grid;
    gap: 18px;
}

.new-start-customer-card {
    display: grid;
    gap: 14px;
}

.new-start-customer-check-list {
    display: grid;
    gap: 12px;
    margin: 0;
}

.new-start-customer-check-list li {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    color: var(--ns-muted);
    line-height: 1.45;
}

.new-start-customer-check-list .material-icons {
    color: var(--ns-green);
    font-size: 1.28rem;
}

.new-start-customer-checkbox-group {
    min-width: 0;
    margin: 2px 0 0;
    padding: 16px;
    border: 1px solid var(--ns-line);
    border-radius: 8px;
    background: #f7f7f4;
}

.new-start-customer-checkbox-group legend {
    padding: 0 6px;
    font-family: neue-kabel, Arial, sans-serif;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
}

.new-start-customer-checkbox-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.new-start-customer-checkbox {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 9px;
    padding: 11px 12px;
    border: 1px solid var(--ns-line);
    border-radius: 6px;
    background: #ffffff;
    color: var(--ns-ink);
    font-weight: 800;
    line-height: 1.2;
}

.new-start-customer-checkbox input {
    flex: 0 0 auto;
}

.new-start-customer-checkbox--standalone {
    align-self: start;
}

.new-start-account-status {
    display: inline-flex;
    justify-self: start;
    min-height: 34px;
    align-items: center;
    padding: 7px 11px;
    border-radius: 999px;
    color: #ffffff !important;
    font-weight: 900;
    line-height: 1;
}

.new-start-account-status--active {
    background: var(--ns-green);
}

.new-start-account-status--expired {
    background: var(--ns-red);
}

.new-start-account-status--inactive {
    background: var(--ns-ink);
}

.new-start-account-date {
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 1.45rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.new-start-account-date--active {
    color: #4e7c1e !important;
}

.new-start-account-date--expired {
    color: var(--ns-red) !important;
}

.new-start-account-logout .new-start-button {
    gap: 8px;
}

.new-start-account-details {
    min-width: 0;
}

.new-start-customer-result {
    margin-bottom: 18px;
}

.new-start-customer-result:empty {
    display: none;
}

.new-start-footer {
    margin-top: auto;
    padding: 44px 0;
    background: #0d0d0d;
    color: #ffffff;
}

.new-start-footer:before {
    display: none;
}

.new-start-footer__grid {
    display: grid;
    grid-template-columns: 0.8fr 0.8fr 1.1fr 1.3fr;
    gap: 28px;
}

.new-start-footer__title {
    margin: 0 0 14px;
    color: #ffffff;
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 1.3rem;
    font-weight: 900;
    text-transform: uppercase;
}

.new-start-footer nav {
    display: grid;
    gap: 7px;
}

.new-start-footer a {
    color: #ffffff;
    font-weight: 700;
}

.new-start-footer a:hover,
.new-start-footer a:focus {
    color: var(--ns-yellow);
}

.new-start-footer__social-list {
    display: grid;
    gap: 10px;
}

.new-start-footer__social-list div {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.new-start-footer__social-list span {
    width: 88px;
    font-weight: 800;
}

.new-start-footer__social-list img {
    display: block;
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.new-start-footer__subscribe {
    display: grid;
    align-content: start;
    gap: 12px;
}

.new-start-footer__credit {
    display: flex;
    justify-content: flex-end;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.new-start-footer__credit-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    max-width: 100%;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.35;
    text-align: right;
    text-decoration: none;
}

.new-start-footer__credit-link img {
    display: block;
    flex: 0 0 auto;
    width: 90px;
    height: auto;
    opacity: 0.86;
}

.new-start-footer__credit-link:hover img,
.new-start-footer__credit-link:focus img {
    opacity: 1;
}

@media screen and (max-width: 1180px) {
    .new-start-header__inner {
        grid-template-columns: auto minmax(0, 1fr) auto;
        grid-template-areas: "brand actions nav";
        min-height: 76px;
        padding: 8px 0;
    }

    .new-start-header__logo {
        width: 200px;
        max-height: 60px;
    }

    .new-start-header__search {
        display: none;
    }

    .new-start-header__search-toggle {
        display: inline-flex;
    }

    .new-start-nav .navbar-brand {
        display: flex;
        min-height: 0;
        align-items: center;
    }

    .new-start-nav {
        justify-self: end;
    }

    .new-start-nav__burger {
        display: inline-flex;
        width: 46px !important;
        height: 46px !important;
        margin-left: 0;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 0.22);
        border-radius: 6px;
        color: #ffffff;
    }

    .new-start-nav__burger span {
        background: #ffffff;
        right: 11px;
        width: 22px;
    }

    .new-start-nav__menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        max-height: calc(100vh - 82px);
        overflow-y: auto;
        padding: 10px 16px 18px;
        background: #ffffff;
        box-shadow: var(--ns-shadow);
    }

    .new-start-nav__menu.is-active {
        display: block;
    }

    .new-start-nav__items {
        display: grid;
        gap: 2px;
        justify-content: stretch;
    }

    .new-start-nav .navbar-item,
    .new-start-nav .navbar-link {
        color: var(--ns-ink) !important;
        min-height: 44px;
    }

    .new-start-nav .navbar-dropdown {
        display: block;
        position: static;
        border-radius: 0;
        box-shadow: none;
        background: #f2f2ef;
    }

    .new-start-card-rail {
        grid-auto-columns: calc((100% - 18px) / 2);
    }

    .new-start-performance-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .new-start-fringe-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .new-start-info-grid,
    .new-start-contact-action-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .new-start-contact-venue-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .new-start-contact-hero h1 {
        font-size: 3.7rem;
    }

    .new-start-fringe-hero h1 {
        font-size: 3.7rem;
    }

    .new-start-fringe-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
        gap: 24px;
    }

    .new-start-fringe-filter__layout {
        grid-template-columns: 1fr;
    }

    .new-start-fringe-filter__controls {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .new-start-search-hero h1 {
        font-size: 3.7rem;
    }

    .new-start-search-hero__grid {
        grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.6fr);
        gap: 24px;
    }

    .new-start-customer-hero h1 {
        font-size: 3.7rem;
    }

    .new-start-customer-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
        gap: 24px;
    }

    .new-start-account-layout {
        grid-template-columns: minmax(250px, 0.44fr) minmax(0, 1fr);
        gap: 22px;
    }

    .new-start-create-layout {
        grid-template-columns: minmax(250px, 0.42fr) minmax(0, 1fr);
        gap: 22px;
    }

    .new-start-account-sidebar {
        top: 92px;
    }

    .new-start-customer-sidebar {
        top: 92px;
    }

    .new-start-contact-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
        gap: 24px;
    }

    .new-start-contact-form-layout {
        grid-template-columns: minmax(230px, 0.42fr) minmax(0, 1fr);
        gap: 22px;
    }

    .new-start-contact-form-intro {
        top: 92px;
    }

    .new-start-voucher-hero h1 {
        font-size: 3.7rem;
    }

    .new-start-membership-hero h1 {
        font-size: 3.7rem;
    }

    .new-start-membership-join__grid {
        grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.55fr);
        gap: 22px;
    }

    .new-start-membership-purchase-card {
        top: 92px;
    }

    .new-start-voucher-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
        gap: 24px;
    }

    .new-start-voucher-detail-grid,
    .new-start-voucher-purchase-layout {
        grid-template-columns: minmax(0, 1fr) minmax(310px, 0.58fr);
        gap: 22px;
    }

    .new-start-voucher-form-layout {
        grid-template-columns: minmax(260px, 0.44fr) minmax(0, 1fr);
        gap: 22px;
    }

    .new-start-voucher-sidebar {
        top: 92px;
    }

    .new-start-performance-hero h1 {
        font-size: 3.7rem;
    }

    .new-start-performance-layout {
        grid-template-columns: minmax(0, 3fr) minmax(340px, 2fr);
        gap: 22px;
    }

    .new-start-performance-aside {
        top: 92px;
    }

    .new-start-ticket-row {
        grid-template-columns: minmax(0, 1fr) 92px;
    }

    .new-start-ticket-row .show-info-col:first-child {
        grid-column: 1;
    }

    .new-start-ticket-row .show-info-col:nth-child(2) {
        grid-column: 1;
    }

    .new-start-ticket-row .show-info-col:nth-child(3) {
        grid-column: 2;
        grid-row: 1 / span 2;
    }

    .new-start-month-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .new-start-footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (min-width: 781px) and (max-width: 1080px) {
    .new-start-venue-card {
        min-height: 136px;
        padding: 14px;
    }

    .new-start-venue-card span {
        font-size: 0.9rem;
    }

    .new-start-venue-card strong {
        font-size: clamp(1.55rem, 2.9vw, 1.95rem);
    }
}

@media screen and (max-width: 780px) {
    .new-start-container,
    .new-start-header__inner {
        width: min(100% - 24px, 1240px);
    }

    .new-start-header__inner {
        min-height: 72px;
        gap: 8px;
    }

    .new-start-header__logo {
        width: 138px;
        max-height: 46px;
    }

    .new-start-header__actions {
        gap: 6px;
    }

    .new-start-icon-button,
    .new-start-nav__burger {
        width: 42px !important;
        height: 42px !important;
    }

    .new-start-header__actions .new-start-icon-button:not(.new-start-header__search-toggle):not(:last-child) {
        display: none;
    }

    .new-start-hero {
        height: calc(100vh - 112px);
        min-height: 520px;
        max-height: 640px;
    }

    .new-start-hero__overlay {
        background:
            linear-gradient(180deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.54) 48%, rgba(0, 0, 0, 0.88) 100%);
    }

    .new-start-hero__inner {
        grid-template-columns: 1fr;
        gap: 18px;
        min-height: 100%;
        align-content: center;
        padding: 24px 0;
        text-align: center;
    }

    .new-start-hero__logo {
        width: 180px;
    }

    .new-start-hero h1 {
        font-size: 3.05rem;
    }

    .new-start-hero__summary {
        margin-left: auto;
        margin-right: auto;
        font-size: 1rem;
    }

    .new-start-hero__actions {
        display: none;
    }

    .new-start-hero__action-space {
        min-height: 44px;
        margin-top: 20px;
    }
    .new-start-hero__quotes {
        min-height: 98px;
        margin-top: 20px;
        padding-left: 0;
        border-left: 0;
        border-top: 4px solid var(--ns-yellow);
        padding-top: 12px;
    }

    .new-start-hero__quote {
        inset: 12px 0 auto;
        max-width: none;
        font-size: 1.12rem;
    }

    .new-start-section {
        padding: 38px 0;
    }

    .new-start-section-heading {
        display: block;
    }

    .new-start-section-heading h2,
    .new-start-listings-search h2,
    .new-start-living-wage h2 {
        font-size: 2.05rem;
    }

    .new-start-venue-grid,
    .new-start-membership-voucher-advert,
    .new-start-merch-advert,
    .new-start-listings-search,
    .new-start-listings-search__fields,
    .new-start-living-wage__panel,
    .new-start-footer__grid,
    .new-start-performance-grid,
    .new-start-info-grid,
    .new-start-embed-grid,
    .new-start-contact-action-grid,
    .new-start-contact-hero__grid,
    .new-start-contact-venue-grid,
    .new-start-contact-form-layout,
    .new-start-form-grid,
    .new-start-fringe-hero__grid,
    .new-start-fringe-filter__layout,
    .new-start-voucher-choice-grid,
    .new-start-voucher-detail-grid,
    .new-start-voucher-purchase-layout,
    .new-start-voucher-form-layout,
    .new-start-customer-hero__grid,
    .new-start-create-layout,
    .new-start-account-layout,
    .new-start-search-hero__grid,
    .new-start-membership-callout,
    .new-start-membership-story__grid,
    .new-start-membership-join__grid,
    .new-start-voucher-hero__grid {
        grid-template-columns: 1fr;
    }

    .new-start-fringe-page {
        padding-bottom: 38px;
    }

    .new-start-fringe-hero__grid {
        gap: 22px;
        padding: 32px 0;
    }

    .new-start-fringe-hero h1 {
        font-size: 2.65rem;
    }

    .new-start-fringe-hero__summary {
        font-size: 1rem;
    }

    .new-start-fringe-hero__actions .new-start-button {
        flex: 1 1 190px;
    }

    .new-start-fringe-hero__panel,
    .new-start-fringe-filter {
        padding: 18px;
    }

    .new-start-fringe-filter-section {
        padding-bottom: 18px;
    }

    .new-start-fringe-filter__header {
        display: grid;
    }

    .new-start-fringe-filter__header h2 {
        font-size: 2.05rem;
    }

    .new-start-fringe-filter .fringe-applied-filters {
        justify-content: flex-start;
        max-width: none;
    }

    .new-start-fringe-filter__controls {
        grid-template-columns: 1fr;
        padding: 16px;
    }

    .new-start-fringe-filter__calendar {
        overflow-x: visible;
        padding: 14px;
    }

    .new-start-fringe-filter table.fringe-listings-calendar {
        min-width: 0;
        border-spacing: 3px;
        margin: -3px;
    }

    .new-start-fringe-filter table.fringe-listings-calendar th {
        font-size: 0.64rem;
    }

    .new-start-fringe-filter table.fringe-listings-calendar td {
        height: 38px;
    }

    .new-start-fringe-filter .fringe-listings-calendar-day {
        min-height: 38px;
        border-radius: 5px;
        font-size: 0.9rem;
    }

    .new-start-fringe-grid {
        grid-template-columns: 1fr;
    }

    .new-start-fringe-results-filter-summary {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 16px;
    }

    .new-start-fringe-results-filter-summary .new-start-button {
        width: 100%;
    }

    .new-start-fringe-card__body {
        grid-template-rows: none;
    }

    .new-start-fringe-date-strip {
        grid-template-columns: repeat(9, minmax(0, 1fr));
    }

    .new-start-fringe-card h3 {
        display: block;
        height: auto;
        min-height: 0;
        overflow: visible;
        -webkit-line-clamp: unset;
    }

    .new-start-fringe-category-list {
        max-height: none;
        overflow: visible;
    }

    .new-start-fringe-card__details {
        grid-template-rows: none;
        overflow: visible;
    }

    .new-start-fringe-time-list {
        max-height: none;
        overflow: visible;
    }

    .new-start-search-page {
        padding-bottom: 38px;
    }

    .new-start-search-hero__grid {
        gap: 22px;
        padding: 32px 0;
    }

    .new-start-search-hero h1 {
        font-size: 2.65rem;
    }

    .new-start-search-hero__summary,
    .new-start-listings-hero__summary {
        font-size: 1rem;
    }

    .new-start-search-form {
        padding: 18px;
    }

    .new-start-search-form__controls {
        grid-template-columns: 1fr;
    }

    .new-start-search-form__controls .new-start-button {
        width: 100%;
    }

    .new-start-search-results-heading .new-start-button {
        width: 100%;
        margin-top: 16px;
    }

    .new-start-search-date-results {
        padding-top: 20px;
    }

    .new-start-membership-page {
        padding-bottom: 38px;
    }

    .new-start-membership-hero {
        min-height: clamp(480px, calc(100vh - 120px), 560px);
    }

    .new-start-membership-hero__overlay {
        background:
            linear-gradient(180deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.58) 50%, rgba(0, 0, 0, 0.88) 100%),
            rgba(0, 0, 0, 0.24);
    }

    .new-start-membership-hero__content {
        padding: 34px 0;
    }

    .new-start-membership-hero h1 {
        font-size: 2.65rem;
    }

    .new-start-membership-hero__summary {
        font-size: 1rem;
    }

    .new-start-membership-hero__facts {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .new-start-membership-hero__facts li {
        min-width: 0;
    }

    .new-start-membership-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .new-start-membership-actions form,
    .new-start-membership-actions .new-start-button {
        width: 100%;
    }

    .new-start-membership-callout,
    .new-start-membership-details-panel,
    .new-start-membership-purchase-card {
        padding: 18px;
    }

    .new-start-membership-callout {
        align-items: start;
    }

    .new-start-membership-story__grid {
        gap: 22px;
    }

    .new-start-membership-story__copy h2,
    .new-start-membership-details-panel h2 {
        font-size: 2.05rem;
    }

    .new-start-membership-purchase-card {
        position: static;
    }

    .new-start-membership-purchase-card h2 {
        font-size: 2.05rem;
    }

    .new-start-customer-page {
        padding-bottom: 38px;
    }

    .new-start-customer-hero__grid {
        gap: 22px;
        padding: 32px 0;
    }

    .new-start-customer-hero h1 {
        font-size: 2.65rem;
    }

    .new-start-customer-hero__summary {
        font-size: 1rem;
    }

    .new-start-customer-hero__panel,
    .new-start-customer-card {
        padding: 18px;
    }

    .new-start-customer-panel-heading h2 {
        font-size: 2.05rem;
    }

    .new-start-customer-state h2 {
        font-size: 2.05rem;
    }

    .new-start-customer-form-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .new-start-customer-form-actions .new-start-button {
        width: 100%;
    }

    .new-start-account-sidebar {
        position: static;
        order: -1;
    }

    .new-start-customer-sidebar {
        position: static;
    }

    .new-start-customer-checkbox-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .new-start-contact-page {
        padding-bottom: 38px;
    }

    .new-start-contact-hero__grid {
        gap: 22px;
        padding: 32px 0;
    }

    .new-start-contact-hero h1 {
        font-size: 2.65rem;
    }

    .new-start-contact-hero__summary {
        font-size: 1rem;
    }

    .new-start-contact-hero__actions .new-start-button {
        flex: 1 1 190px;
    }

    .new-start-contact-hero__panel,
    .new-start-form-panel,
    .new-start-contact-success__panel {
        padding: 18px;
    }

    .new-start-contact-venue-panel {
        grid-template-columns: 1fr;
        gap: 16px;
        align-items: start;
        padding: 18px;
    }

    .new-start-contact-form-intro {
        position: static;
    }

    .new-start-contact-form-intro h2,
    .new-start-contact-success__panel h2 {
        font-size: 2.05rem;
    }

    .new-start-contact-form__actions {
        justify-content: stretch;
    }

    .new-start-contact-form__actions .new-start-button,
    .new-start-contact-form__actions button {
        width: 100%;
    }

    .new-start-contact-venue-card__actions {
        grid-template-columns: 1fr;
    }

    .new-start-voucher-page {
        padding-bottom: 38px;
    }

    .new-start-voucher-hero__grid {
        gap: 22px;
        padding: 32px 0;
    }

    .new-start-voucher-hero h1 {
        font-size: 2.65rem;
    }

    .new-start-voucher-hero__summary {
        font-size: 1rem;
    }

    .new-start-voucher-hero__actions .new-start-button {
        flex: 1 1 190px;
    }

    .new-start-voucher-hero__voucher {
        padding: 20px;
        transform: none;
    }

    .new-start-voucher-hero__voucher strong {
        font-size: 2.15rem;
    }

    .new-start-voucher-option-card,
    .new-start-voucher-details-panel,
    .new-start-voucher-summary-card,
    .new-start-voucher-modal__content {
        padding: 18px;
    }

    .new-start-voucher-detail-intro h2,
    .new-start-voucher-panel-heading h2 {
        font-size: 2.05rem;
    }

    .new-start-voucher-sidebar {
        position: static;
    }

    .new-start-voucher-form__actions {
        justify-content: stretch;
    }

    .new-start-voucher-form__actions .new-start-button {
        width: 100%;
    }

    .new-start-voucher-modal {
        padding: 12px;
    }

    .new-start-voucher-modal__content {
        max-height: calc(100vh - 24px);
    }

    .new-start-voucher-modal__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .new-start-voucher-modal__actions .new-start-button {
        width: 100%;
    }

    .new-start-embed-panel iframe {
        height: 300px;
    }

    .new-start-listings-hero {
        padding: 22px;
    }

    .new-start-listings-hero--connected {
        padding: 0;
    }

    .new-start-listings-hero__inner {
        padding: 32px 0 28px;
    }

    .new-start-listings-hero h1 {
        font-size: 2.35rem;
    }

    .new-start-listings-hero__meta {
        display: grid;
        grid-template-columns: 1fr;
    }

    .new-start-listings-hero__meta div {
        min-width: 0;
    }

    .new-start-show-tag-hero__meta,
    .new-start-act-hero__meta {
        display: grid;
        grid-template-columns: 1fr;
    }

    .new-start-show-tag-hero__meta div,
    .new-start-act-hero__meta div {
        min-width: 0;
    }

    .new-start-show-tag-empty .new-start-empty-state h1,
    .new-start-act-empty .new-start-empty-state h1 {
        font-size: 2.35rem;
    }

    .new-start-performance-page {
        padding-bottom: 38px;
    }

    .new-start-performance-hero__grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 28px 0;
    }

    .new-start-performance-hero__image {
        max-width: 560px;
    }

    .new-start-performance-hero h1 {
        font-size: 2.55rem;
    }

    .new-start-performance-hero__date {
        font-size: 1.24rem;
    }

    .new-start-performance-facts,
    .new-start-performance-layout,
    .new-start-presale-form {
        grid-template-columns: 1fr;
    }

    .new-start-performance-facts li {
        grid-template-columns: 28px 72px 1fr;
    }

    .new-start-performance-copy,
    .new-start-performance-aside {
        grid-column: auto;
        grid-row: auto;
    }

    .new-start-performance-aside {
        position: static;
        order: -1;
    }

    .new-start-performance-panel {
        padding: 18px;
    }

    .new-start-performance-copy h2,
    .new-start-performance-empty h1,
    .new-start-performance-gate h1 {
        font-size: 2.05rem;
    }

    .new-start-performance-venue iframe {
        height: 280px;
    }

    .new-start-promo-code__controls {
        grid-template-columns: 1fr;
    }

    .new-start-presale-form label {
        margin-bottom: -2px;
    }

    .new-start-month-grid {
        grid-auto-columns: minmax(88px, 1fr);
        grid-auto-flow: column;
        grid-template-columns: none;
        margin: 0 -12px;
        padding: 2px 12px 8px;
        overflow-x: auto;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
    }

    .new-start-month-link {
        scroll-snap-align: start;
    }

    .new-start-venue-card {
        min-height: 118px;
    }

    .new-start-venue-card strong {
        font-size: 2rem;
    }

    .new-start-listings-search {
        padding: 18px;
    }

    .new-start-listings-search__button {
        width: 100%;
    }

    .new-start-card-rail {
        grid-auto-columns: 86%;
        margin-right: -12px;
        padding-right: 12px;
    }

    .new-start-membership-voucher-advert,
    .new-start-merch-advert {
        align-items: start;
    }

    .new-start-membership-voucher-advert__actions {
        justify-content: flex-start;
    }

    .new-start-merch-advert__cta {
        justify-self: start;
    }

    .new-start-rail-control {
        display: none;
    }

    .new-start-event-details li {
        grid-template-columns: 24px 78px 1fr;
    }

    .new-start-living-wage__panel {
        text-align: center;
    }

    .new-start-living-wage__logo {
        justify-self: center;
        width: 160px;
        max-width: 70vw;
        order: -1;
    }
}

@media screen and (max-width: 430px) {
    .new-start-header__logo {
        width: 116px;
    }

    .new-start-hero h1 {
        font-size: 2.45rem;
    }

    .new-start-contact-hero h1 {
        font-size: 2.35rem;
    }

    .new-start-fringe-hero h1 {
        font-size: 2.35rem;
    }

    .new-start-fringe-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .new-start-fringe-filter .fringe-listings-calendar-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .new-start-fringe-filter__calendar {
        padding: 12px;
    }

    .new-start-fringe-filter table.fringe-listings-calendar {
        border-spacing: 2px;
        margin: -2px;
    }

    .new-start-fringe-filter table.fringe-listings-calendar th {
        font-size: 0.56rem;
    }

    .new-start-fringe-filter table.fringe-listings-calendar td {
        height: 34px;
    }

    .new-start-fringe-filter .fringe-listings-calendar-day {
        min-height: 34px;
        border-radius: 4px;
        font-size: 0.82rem;
    }

    .new-start-fringe-date-strip {
        grid-template-columns: repeat(7, minmax(0, 1fr));
    }

    .new-start-fringe-card__details li {
        grid-template-columns: 22px minmax(82px, auto) minmax(0, 1fr);
    }

    .new-start-search-hero h1 {
        font-size: 2.35rem;
    }

    .new-start-show-tag-hero__meta dd {
        font-size: 1.08rem;
    }

    .new-start-customer-hero h1 {
        font-size: 2.35rem;
    }

    .new-start-customer-hero__panel h2,
    .new-start-customer-card h2 {
        font-size: 1.55rem;
    }

    .new-start-customer-state h2 {
        font-size: 1.85rem;
    }

    .new-start-customer-checkbox-list {
        grid-template-columns: 1fr;
    }

    .new-start-contact-mini-list__item {
        grid-template-columns: 1fr;
    }

    .new-start-contact-venue-panel h3,
    .new-start-contact-media-venue h3 {
        font-size: 1.55rem;
    }

    .new-start-voucher-hero h1 {
        font-size: 2.35rem;
    }

    .new-start-membership-hero h1 {
        font-size: 2.35rem;
    }

    .new-start-membership-hero__facts {
        grid-template-columns: 1fr;
    }

    .new-start-membership-callout h2,
    .new-start-membership-purchase-card h2 {
        font-size: 1.55rem;
    }

    .new-start-voucher-hero__voucher strong {
        font-size: 1.85rem;
    }

    .new-start-voucher-option-card h3,
    .new-start-voucher-summary-card h2 {
        font-size: 1.55rem;
    }

    .new-start-voucher-summary-card {
        grid-template-columns: 1fr;
    }

    .new-start-voucher-preview {
        padding: 18px;
    }

    .new-start-embed-panel iframe {
        height: 260px;
    }

    .new-start-card-rail {
        grid-auto-columns: 92%;
    }

    .new-start-footer__social-list span {
        width: 100%;
    }

    .new-start-footer__credit {
        justify-content: flex-start;
    }

    .new-start-footer__credit-link {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .new-start-footer__credit-link img {
        width: 84px;
    }
}

@media screen and (max-width: 1180px) {
    .new-start-fringe-show-layout {
        grid-template-columns: minmax(0, 2fr) minmax(360px, 1.45fr);
    }

    .new-start-fringe-performance-group {
        grid-template-columns: 74px minmax(0, 1fr);
    }

    .new-start-fringe-performance-group__times {
        grid-template-columns: repeat(auto-fit, minmax(104px, 1fr));
    }

    .new-start-fringe-show-time-list {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 780px) {
    .new-start-fringe-show-layout {
        grid-template-columns: 1fr;
    }

    .new-start-fringe-performance-list {
        max-height: none;
        overflow: visible;
        padding-right: 0;
    }

    .new-start-fringe-performance-group {
        grid-template-columns: 1fr;
    }

    .new-start-fringe-performance-group__date {
        display: flex;
        align-items: baseline;
        flex-wrap: wrap;
        gap: 6px 10px;
        justify-content: space-between;
        padding: 10px 12px;
        text-align: left;
    }

    .new-start-fringe-performance-group__date strong {
        margin-top: 0;
    }

    .new-start-fringe-performance-group__status {
        margin-top: 0;
    }

    .new-start-fringe-show-heading {
        flex-direction: column;
    }

    .new-start-fringe-show-venue iframe {
        min-height: 260px;
    }

    .new-start-fringe-show-time-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .new-start-fringe-show-calendar {
        border-spacing: 3px;
        margin: -3px;
    }

    .new-start-fringe-show-calendar th {
        font-size: 0.64rem;
    }

    .new-start-fringe-show-calendar td {
        height: 38px;
    }

    .new-start-fringe-show-calendar-day {
        min-height: 38px;
        border-radius: 5px;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 430px) {
    .new-start-fringe-booking-step {
        padding: 12px;
    }

    .new-start-fringe-show-time-list {
        grid-template-columns: 1fr;
    }

    .new-start-fringe-show-calendar {
        border-spacing: 2px;
        margin: -2px;
    }

    .new-start-fringe-show-calendar th {
        font-size: 0.56rem;
    }

    .new-start-fringe-show-calendar td {
        height: 34px;
    }

    .new-start-fringe-show-calendar-day {
        min-height: 34px;
        border-radius: 4px;
        font-size: 0.82rem;
    }
}

.new-start-basket-page {
    padding-bottom: 54px;
}

.new-start-basket-page a {
    color: var(--ns-red);
    font-weight: 800;
}

.new-start-basket-page a:hover,
.new-start-basket-page a:focus {
    color: var(--ns-ink);
}

.new-start-basket-page a.new-start-button--primary,
.new-start-basket-page a.new-start-button--dark,
.new-start-basket-page a.new-start-button--primary:hover,
.new-start-basket-page a.new-start-button--primary:focus,
.new-start-basket-page a.new-start-button--dark:hover,
.new-start-basket-page a.new-start-button--dark:focus {
    color: #ffffff;
}

.new-start-basket-page a.new-start-button--secondary,
.new-start-basket-page a.new-start-button--secondary:hover,
.new-start-basket-page a.new-start-button--secondary:focus {
    color: var(--ns-ink);
}

.new-start-basket-hero {
    background: #111111;
    color: #ffffff;
}

.new-start-basket-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
    gap: 34px;
    align-items: center;
    padding: 54px 0;
}

.new-start-basket-hero h1 {
    max-width: 820px;
    margin: 0;
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 4.6rem;
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.new-start-basket-hero__summary {
    max-width: 720px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.12rem;
    line-height: 1.55;
}

.new-start-basket-hero__panel,
.new-start-basket-summary-card,
.new-start-basket-items-panel,
.new-start-basket-side-card,
.new-start-basket-confirmation-panel,
.new-start-basket-voucher-panel {
    border: 1px solid var(--ns-line);
    border-radius: 8px;
    background: var(--ns-surface);
    color: var(--ns-ink);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.new-start-basket-hero__panel {
    display: grid;
    gap: 14px;
    padding: 22px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
}

.new-start-basket-hero__panel > .material-icons,
.new-start-basket-side-card > .material-icons,
.new-start-basket-confirmation-panel__head > .material-icons {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: var(--ns-red);
    color: #ffffff;
}

.new-start-basket-hero__panel h2,
.new-start-basket-summary-card h2,
.new-start-basket-panel-heading h2,
.new-start-basket-side-card h2,
.new-start-basket-voucher-panel h2,
.new-start-basket-confirmation-panel h2,
.new-start-basket-confirmation-subsection h3,
.new-start-basket-modal h2,
.new-start-basket-page .new-start-empty-state h2 {
    margin: 0;
    font-family: neue-kabel, Arial, sans-serif;
    font-weight: 900;
    line-height: 0.98;
    text-transform: uppercase;
}

.new-start-basket-hero__panel h2,
.new-start-basket-summary-card h2,
.new-start-basket-side-card h2,
.new-start-basket-voucher-panel h2,
.new-start-basket-confirmation-panel h2,
.new-start-basket-page .new-start-empty-state h2 {
    font-size: 1.8rem;
}

.new-start-basket-panel-heading h2 {
    font-size: 2.45rem;
}

.new-start-basket-hero__panel p,
.new-start-basket-side-card p,
.new-start-basket-confirmation-panel p,
.new-start-basket-page .new-start-empty-state p {
    margin: 0;
    color: var(--ns-muted);
    line-height: 1.6;
}

.new-start-basket-page .new-start-empty-state {
    justify-items: start;
    text-align: left;
}

.new-start-basket-page .new-start-empty-state p {
    color: var(--ns-muted);
    font-family: "Rubik", Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    text-transform: none;
}

.new-start-basket-mini-summary,
.new-start-basket-totals {
    display: grid;
    gap: 10px;
    margin: 0;
}

.new-start-basket-mini-summary div,
.new-start-basket-totals div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--ns-line);
}

.new-start-basket-mini-summary dt,
.new-start-basket-totals dt {
    color: var(--ns-muted);
    font-weight: 800;
}

.new-start-basket-mini-summary dd,
.new-start-basket-totals dd {
    margin: 0;
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 1.22rem;
    font-weight: 900;
    line-height: 1;
    text-align: right;
    text-transform: uppercase;
}

.new-start-basket-totals__grand {
    margin-top: 4px;
    padding: 12px 0 0 !important;
    border-top: 3px solid var(--ns-ink);
    border-bottom: 0 !important;
}

.new-start-basket-totals__grand dt,
.new-start-basket-totals__grand dd {
    color: var(--ns-ink);
    font-size: 1.45rem;
}

.new-start-basket-notice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.new-start-basket-notice-card {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    min-width: 0;
    padding: 20px;
    border: 1px solid var(--ns-line);
    border-left: 6px solid #b4870d;
    border-radius: 8px;
    background: #fff9d8;
}

.new-start-basket-notice-card img {
    width: 92px;
    height: 92px;
    object-fit: contain;
}

.new-start-basket-notice-card h3 {
    margin: 0;
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.new-start-basket-notice-card p {
    margin: 8px 0 0;
    color: var(--ns-ink);
    line-height: 1.5;
}

.new-start-basket-voucher-section {
    padding-top: 24px;
    padding-bottom: 12px;
}

.new-start-basket-voucher-panel {
    display: grid;
    grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
    gap: 18px;
    align-items: end;
    padding: 20px;
}

.new-start-basket-voucher-controls {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: stretch;
}

.new-start-basket-voucher-controls .input,
.new-start-basket-select select,
.new-start-basket-food-option select {
    min-height: 48px;
    border: 1px solid var(--ns-line);
    border-radius: 6px;
    box-shadow: none;
}

.new-start-basket-voucher-controls .input:focus,
.new-start-basket-select select:focus,
.new-start-basket-food-option select:focus {
    border-color: var(--ns-ink);
    box-shadow: 0 0 0 3px rgba(214, 31, 44, 0.16);
}

.new-start-basket-alert-slot {
    margin-top: 18px;
}

.new-start-basket-alert-slot:empty {
    display: none;
}

.new-start-basket-merch-advert {
    padding: 22px 0 0;
}

.new-start-basket-page .alert {
    margin: 0;
    padding: 14px 16px;
    border: 1px solid var(--ns-line);
    border-left: 6px solid var(--ns-red);
    border-radius: 8px;
    background: #fff0f1;
    color: var(--ns-ink);
}

.new-start-basket-page .alert.warning {
    border-left-color: #b4870d;
    background: #fff9d8;
}

.new-start-basket-page .alert.success {
    border-left-color: var(--ns-green);
    background: #eef6e7;
}

.new-start-basket-page .alert p {
    margin: 0;
}

.new-start-basket-page .alert p + p {
    margin-top: 8px;
}

.new-start-basket-page .alert-title {
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
}

.new-start-basket-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.38fr);
    gap: 24px;
    align-items: start;
}

.new-start-basket-summary {
    position: sticky;
    top: 140px;
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
}

.new-start-basket-summary.is-basket-modal-active {
    z-index: 10020;
}

.new-start-basket-items-panel,
.new-start-basket-confirmation-stack {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
}

.new-start-basket-summary-card,
.new-start-basket-items-panel,
.new-start-basket-confirmation-panel,
.new-start-basket-side-card {
    padding: 22px;
}

.new-start-basket-panel-heading {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

.new-start-basket-table {
    display: grid;
    gap: 8px;
}

.new-start-basket-table__head,
.new-start-basket-row {
    display: grid;
    grid-template-columns: 96px minmax(0, 1.55fr) minmax(112px, 0.7fr) minmax(108px, 0.58fr) minmax(104px, 0.58fr) minmax(112px, 0.62fr);
    gap: 8px;
    align-items: stretch;
}

.new-start-basket-table--confirmation .new-start-basket-table__head,
.new-start-basket-table--confirmation .new-start-basket-row {
    grid-template-columns: 96px minmax(0, 1.55fr) minmax(112px, 0.7fr) minmax(96px, 0.45fr) minmax(104px, 0.58fr);
}

.new-start-basket-table__head > div {
    min-width: 0;
    padding: 10px 12px;
    border: 1px solid var(--ns-line);
    border-bottom: 3px solid var(--ns-red);
    border-radius: 6px;
    background: #f8f8f5;
    color: var(--ns-ink);
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 0.86rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.new-start-basket-table__head > .new-start-basket-table__media-spacer {
    padding: 0;
    border: 0;
    background: transparent;
}

.new-start-basket-cell {
    display: grid;
    align-items: center;
    min-width: 0;
    padding: 12px;
    border: 1px solid var(--ns-line);
    border-radius: 6px;
    background: #ffffff;
    color: var(--ns-ink);
    line-height: 1.35;
}

.new-start-basket-cell--media {
    padding: 0;
    overflow: hidden;
    background: #111111;
}

.new-start-basket-cell--media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 76px;
    object-fit: contain;
    background: #111111;
}

.new-start-basket-media-icon {
    display: inline-flex;
    width: 100%;
    min-height: 76px;
    align-items: center;
    justify-content: center;
    background: #f8f8f5;
    color: var(--ns-red);
    font-size: 2rem;
}

.new-start-basket-cell--item {
    align-content: center;
    gap: 4px;
}

.new-start-basket-cell--item strong {
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 1.08rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.new-start-basket-cell--item span,
.new-start-basket-cell--item time {
    color: var(--ns-muted);
    font-size: 0.92rem;
}

.new-start-basket-cell--total {
    font-weight: 900;
}

.new-start-basket-select,
.new-start-basket-select select {
    width: 100%;
}

.new-start-basket-select select {
    font-weight: 900;
}

.new-start-basket-page.is-basket-modal-active .new-start-basket-table .new-start-basket-select,
.new-start-basket-page.is-basket-modal-active .new-start-basket-table .new-start-basket-select select {
    visibility: hidden;
}

.new-start-basket-cell--actions {
    padding: 0;
}

.new-start-basket-remove {
    display: inline-flex;
    width: 100%;
    min-height: 100%;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px;
    border: 1px solid transparent;
    border-radius: 6px;
    background: #ffffff;
    color: var(--ns-red);
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    cursor: pointer;
}

.new-start-basket-remove:hover,
.new-start-basket-remove:focus {
    border-color: var(--ns-red);
    background: #fff0f1;
}

.new-start-basket-remove .material-icons {
    font-size: 1.16rem;
}

.new-start-basket-vendor-alert {
    margin-top: 16px !important;
}

.new-start-basket-checkbox {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 18px 0 0;
    padding: 13px;
    border: 1px solid var(--ns-line);
    border-radius: 8px;
    background: #f8f8f5;
    color: var(--ns-ink);
    font-weight: 800;
    line-height: 1.35;
}

.new-start-basket-checkbox input {
    flex: 0 0 auto;
    margin-top: 3px;
}

.new-start-basket-actions {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.new-start-basket-payment-form {
    display: grid;
}

.new-start-basket-modal {
    z-index: 10010;
}

.new-start-basket-modal .modal-card {
    width: min(100% - 24px, 620px);
    overflow: hidden;
    border-radius: 8px;
    background: var(--ns-surface);
}

.new-start-basket-modal__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid var(--ns-line);
    background: #ffffff;
}

.new-start-basket-modal__body {
    display: grid;
    gap: 16px;
    padding: 22px;
    background: var(--ns-surface);
}

.new-start-basket-modal__body > p {
    margin: 0;
    color: var(--ns-muted);
    line-height: 1.55;
}

.new-start-basket-modal__actions {
    display: grid;
    gap: 10px;
    border-top: 1px solid var(--ns-line);
    background: #ffffff;
}

.new-start-basket-modal__actions--split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.new-start-basket-modal__close {
    flex: 0 0 auto;
}

.new-start-basket-food-list {
    display: grid;
    gap: 10px;
}

.new-start-basket-food-option {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 82px;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border: 1px solid var(--ns-line);
    border-radius: 8px;
    background: #ffffff;
}

.new-start-basket-food-option strong {
    display: block;
    font-weight: 900;
}

.new-start-basket-food-option span {
    display: block;
    margin-top: 3px;
    color: var(--ns-muted);
    font-size: 0.9rem;
}

.new-start-basket-food-option select {
    width: 100%;
    font-weight: 900;
}

.new-start-basket-address-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.38fr) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.new-start-basket-address-sidebar {
    position: sticky;
    top: 140px;
    display: grid;
    gap: 18px;
}

.new-start-basket-side-card {
    display: grid;
    gap: 14px;
}

.new-start-basket-address-form-panel {
    min-width: 0;
}

.new-start-basket-confirmation-stack {
    display: grid;
    gap: 18px;
}

.new-start-basket-confirmation-panel {
    display: grid;
    gap: 16px;
}

.new-start-basket-confirmation-panel__head {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}

.new-start-basket-confirmation-panel__head .new-start-eyebrow {
    margin-bottom: 6px;
}

.new-start-basket-confirmation-subsection {
    display: grid;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid var(--ns-line);
}

.new-start-basket-confirmation-subsection h3 {
    font-size: 1.45rem;
}

.new-start-basket-code-card {
    display: grid;
    gap: 6px;
    justify-items: start;
    padding: 16px;
    border: 1px solid var(--ns-line);
    border-left: 6px solid var(--ns-green);
    border-radius: 8px;
    background: #eef6e7;
}

.new-start-basket-code-card span {
    color: var(--ns-muted);
    font-weight: 900;
    text-transform: uppercase;
}

.new-start-basket-code-card strong {
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 1.7rem;
    font-weight: 900;
    line-height: 1;
    overflow-wrap: anywhere;
    text-transform: uppercase;
}

.new-start-basket-data-table-wrap {
    width: 100%;
    overflow-x: auto;
    border: 1px solid var(--ns-line);
    border-radius: 8px;
    background: #ffffff;
}

.new-start-basket-data-table {
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
    background: #ffffff;
}

.new-start-basket-data-table th,
.new-start-basket-data-table td {
    padding: 12px;
    border-bottom: 1px solid var(--ns-line);
    text-align: left;
    vertical-align: top;
}

.new-start-basket-data-table th {
    background: var(--ns-ink);
    color: #ffffff;
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 0.88rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.new-start-basket-data-table tbody tr:last-child td,
.new-start-basket-data-table tfoot tr:last-child td {
    border-bottom: 0;
}

.new-start-basket-data-table tfoot td {
    background: #f8f8f5;
    font-weight: 900;
}

.new-start-basket-confirmation-address {
    display: grid;
    gap: 3px;
    margin: 0;
    font-style: normal;
    line-height: 1.35;
}

.new-start-payment-stack {
    min-width: 0;
}

.new-start-payment-panel > p {
    margin: 0;
    color: var(--ns-muted);
    line-height: 1.6;
}

.new-start-payment-form {
    display: grid;
    gap: 18px;
}

.new-start-payment-element {
    min-width: 0;
    padding: 18px;
    border: 1px solid var(--ns-line);
    border-radius: 8px;
    background: #f8f8f5;
}

.new-start-payment-submit .material-icons {
    font-size: 1.16rem;
}

.new-start-payment-totals .new-start-basket-totals__grand {
    margin-top: 0;
    padding-top: 0 !important;
    border-top: 0;
}

.new-start-payment-check-list {
    margin-top: 18px;
    padding: 16px 0 0;
    border-top: 1px solid var(--ns-line);
    list-style: none;
}

.new-start-payment-check-list li {
    color: var(--ns-ink);
    font-weight: 700;
}

.new-start-payment-page #payment-message.hidden {
    display: none;
}

.new-start-payment-page #payment-message:not(.hidden) {
    padding: 12px;
    border: 1px solid var(--ns-line);
    border-left: 6px solid var(--ns-red);
    border-radius: 8px;
    background: #fff0f1;
    color: var(--ns-ink);
    font-weight: 800;
}

@media screen and (max-width: 980px) {
    .new-start-basket-page {
        padding-bottom: 38px;
    }

    .new-start-basket-hero__grid,
    .new-start-basket-layout,
    .new-start-basket-address-layout,
    .new-start-basket-voucher-panel,
    .new-start-basket-notice-grid {
        grid-template-columns: 1fr;
    }

    .new-start-basket-hero__grid {
        gap: 22px;
        padding: 32px 0;
    }

    .new-start-basket-hero h1 {
        font-size: 2.65rem;
    }

    .new-start-basket-hero__summary {
        font-size: 1rem;
    }

    .new-start-basket-summary,
    .new-start-basket-items-panel,
    .new-start-basket-confirmation-stack {
        grid-column: auto;
        grid-row: auto;
    }

    .new-start-basket-summary,
    .new-start-basket-address-sidebar {
        position: static;
    }

    .new-start-basket-summary {
        order: -1;
    }

    .new-start-basket-summary-card,
    .new-start-basket-items-panel,
    .new-start-basket-confirmation-panel,
    .new-start-basket-side-card,
    .new-start-basket-voucher-panel,
    .new-start-basket-hero__panel {
        padding: 18px;
    }

    .new-start-basket-panel-heading h2 {
        font-size: 2.05rem;
    }

    .new-start-basket-voucher-controls {
        grid-template-columns: 1fr;
    }

    .new-start-basket-voucher-controls .new-start-button {
        width: 100%;
    }

    .new-start-payment-element {
        padding: 14px;
    }
}

@media screen and (max-width: 760px) {
    .new-start-basket-table__head {
        display: none;
    }

    .new-start-basket-row,
    .new-start-basket-table--confirmation .new-start-basket-row {
        grid-template-columns: 82px minmax(0, 1fr);
        gap: 0;
        overflow: hidden;
        border: 1px solid var(--ns-line);
        border-radius: 8px;
        background: #ffffff;
    }

    .new-start-basket-cell {
        border-width: 0 0 1px;
        border-radius: 0;
    }

    .new-start-basket-row .new-start-basket-cell:last-child {
        border-bottom: 0;
    }

    .new-start-basket-cell--media {
        grid-row: span 2;
        border-right: 1px solid var(--ns-line);
    }

    .new-start-basket-cell--media img,
    .new-start-basket-media-icon {
        min-height: 82px;
    }

    .new-start-basket-cell--item {
        grid-column: 2;
    }

    .new-start-basket-cell:not(.new-start-basket-cell--media):not(.new-start-basket-cell--item) {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: minmax(94px, 0.34fr) minmax(0, 1fr);
        gap: 12px;
        align-items: center;
    }

    .new-start-basket-cell:not(.new-start-basket-cell--media):not(.new-start-basket-cell--item)::before {
        content: attr(data-label);
        color: var(--ns-muted);
        font-family: neue-kabel, Arial, sans-serif;
        font-size: 0.82rem;
        font-weight: 900;
        line-height: 1;
        text-transform: uppercase;
    }

    .new-start-basket-cell--actions {
        padding: 0;
    }

    .new-start-basket-cell--actions::before {
        padding-left: 12px;
    }

    .new-start-basket-remove {
        min-height: 48px;
        justify-content: flex-start;
        padding: 12px;
    }

    .new-start-basket-modal__actions--split {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 520px) {
    .new-start-basket-hero h1 {
        font-size: 2.35rem;
    }

    .new-start-basket-notice-card {
        grid-template-columns: 1fr;
    }

    .new-start-basket-notice-card img {
        width: 72px;
        height: 72px;
    }

    .new-start-basket-mini-summary div,
    .new-start-basket-totals div {
        align-items: flex-start;
    }

    .new-start-basket-totals__grand dt,
    .new-start-basket-totals__grand dd {
        font-size: 1.25rem;
    }

    .new-start-basket-food-option,
    .new-start-basket-confirmation-panel__head {
        grid-template-columns: 1fr;
    }

    .new-start-basket-code-card strong {
        font-size: 1.35rem;
    }
}

.new-start-news-page {
    padding-bottom: 54px;
}

.new-start-news-page a {
    color: var(--ns-red);
    font-weight: 800;
}

.new-start-news-page a:hover,
.new-start-news-page a:focus {
    color: var(--ns-ink);
}

.new-start-news-page a.new-start-button--primary,
.new-start-news-page a.new-start-button--dark,
.new-start-news-page a.new-start-button--primary:hover,
.new-start-news-page a.new-start-button--primary:focus,
.new-start-news-page a.new-start-button--dark:hover,
.new-start-news-page a.new-start-button--dark:focus {
    color: #ffffff;
}

.new-start-news-page a.new-start-button--secondary,
.new-start-news-page a.new-start-button--secondary:hover,
.new-start-news-page a.new-start-button--secondary:focus {
    color: var(--ns-ink);
}

.new-start-news-hero {
    border-bottom: 6px solid var(--ns-yellow);
    background: #111111;
    color: #ffffff;
}

.new-start-news-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
    align-items: center;
    padding: 54px 0;
}

.new-start-news-hero h1,
.new-start-news-post-hero h1 {
    max-width: 840px;
    margin: 0;
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 4.6rem;
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.new-start-news-hero__summary {
    max-width: 720px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.12rem;
    line-height: 1.55;
}

.new-start-news-filter-panel,
.new-start-news-post-main,
.new-start-news-mini-card {
    border: 1px solid var(--ns-line);
    border-radius: 8px;
    background: var(--ns-surface);
    color: var(--ns-ink);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.new-start-news-filter-panel h3,
.new-start-news-post-aside h2,
.new-start-news-mini-card h3 {
    margin: 0;
    font-family: neue-kabel, Arial, sans-serif;
    font-weight: 900;
    line-height: 0.98;
    text-transform: uppercase;
}

.new-start-news-post-aside h2 {
    font-size: 1.8rem;
}

.new-start-news-filter-panel h3 {
    font-size: 1.45rem;
}

.new-start-news-blocks {
    padding-bottom: 0;
}

.new-start-news-blocks .block {
    margin: 0 0 18px;
}

.new-start-news-blocks .block:last-child {
    margin-bottom: 0;
}

.new-start-news-filter-section {
    padding-bottom: 24px;
}

.new-start-news-active-filter {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding: 10px 12px;
    border: 1px solid var(--ns-line);
    border-left: 6px solid var(--ns-red);
    border-radius: 8px;
    background: #fff0f1;
}

.new-start-news-active-filter span {
    color: var(--ns-muted);
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
}

.new-start-news-active-filter strong {
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.new-start-news-filter-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: 18px;
    align-items: start;
}

.new-start-news-filter-panel {
    display: grid;
    gap: 14px;
    padding: 20px;
}

.new-start-news-filter-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.new-start-news-filter-pill {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    padding: 9px 12px;
    border: 1px solid var(--ns-line);
    border-radius: 6px;
    background: #f8f8f5;
    color: var(--ns-ink) !important;
    font-size: 0.88rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.new-start-news-filter-pill:hover,
.new-start-news-filter-pill:focus,
.new-start-news-filter-pill.is-active {
    border-color: var(--ns-red);
    background: var(--ns-red);
    color: #ffffff !important;
}

.new-start-news-filter-pill--tag {
    text-transform: none;
}

.new-start-news-results-heading {
    align-items: center;
}

.new-start-news-count {
    margin: 0;
    color: var(--ns-muted);
    font-family: neue-kabel, Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 900;
    text-transform: uppercase;
}

.new-start-card__image-link picture,
.new-start-news-post-hero__image picture {
    display: block;
}

.new-start-news-card--archive img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.new-start-news-card--archive .new-start-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
}

.new-start-news-card--archive h3 {
    min-height: 4.4rem;
}

.new-start-news-card--archive h3 a {
    color: var(--ns-ink);
}

.new-start-news-card--archive h3 a:hover,
.new-start-news-card--archive h3 a:focus {
    color: var(--ns-red);
}

.new-start-news-card__excerpt {
    margin: 12px 0 0;
    color: var(--ns-muted);
    line-height: 1.5;
}

.new-start-news-card--archive .new-start-news-card__tags {
    margin-top: auto;
    padding-top: 12px;
}

.new-start-news-card__button,
.new-start-news-card__button:hover,
.new-start-news-card__button:focus {
    background: var(--ns-red);
    color: #ffffff !important;
}

.new-start-news-empty {
    min-height: 220px;
}

.new-start-news-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
}

.new-start-news-pagination__link,
.new-start-news-pagination__ellipsis {
    display: inline-flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border: 1px solid var(--ns-line);
    border-radius: 6px;
    background: var(--ns-surface);
    color: var(--ns-ink) !important;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.new-start-news-pagination__link:hover,
.new-start-news-pagination__link:focus,
.new-start-news-pagination__link.is-active {
    border-color: var(--ns-red);
    background: var(--ns-red);
    color: #ffffff !important;
}

.new-start-news-pagination__link.is-disabled {
    opacity: 0.42;
    pointer-events: none;
}

.new-start-news-pagination__link--edge {
    min-width: 92px;
}

.new-start-news-pagination__ellipsis {
    min-width: 34px;
    border-color: transparent;
    background: transparent;
    color: var(--ns-muted) !important;
}

.new-start-news-post-hero {
    position: relative;
    overflow: hidden;
    background: #111111;
    color: #ffffff;
}

.new-start-news-post-hero__backdrop {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.68) 54%, rgba(0, 0, 0, 0.88) 100%),
        var(--news-post-hero-img);
    background-position: center;
    background-size: cover;
    filter: blur(22px);
    opacity: 0.5;
    transform: scale(1.08);
}

.new-start-news-post-hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(280px, 0.52fr) minmax(0, 1fr);
    gap: 34px;
    align-items: center;
    padding: 54px 0;
}

.new-start-news-post-hero__image {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: #111111;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
}

.new-start-news-post-hero__image img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    background: #111111;
}

.new-start-news-post-hero__copy {
    min-width: 0;
}

.new-start-news-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    align-items: center;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 900;
    text-transform: uppercase;
}

.new-start-news-post-meta a {
    color: #ffffff;
}

.new-start-news-post-meta a:hover,
.new-start-news-post-meta a:focus {
    color: var(--ns-yellow);
}

.new-start-news-post-meta a.new-start-news-post-category {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 7px 10px;
    border-radius: 6px;
    background: var(--ns-yellow);
    color: var(--ns-ink);
    line-height: 1;
}

.new-start-news-post-meta a.new-start-news-post-category:hover,
.new-start-news-post-meta a.new-start-news-post-category:focus {
    color: var(--ns-ink);
    filter: brightness(0.94);
}

.new-start-news-post-tags {
    margin-top: 16px;
}

.new-start-news-post-tags a {
    color: #ffffff;
}

.new-start-news-post-tags a:hover,
.new-start-news-post-tags a:focus {
    color: var(--ns-yellow);
}

.new-start-news-share {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.new-start-news-share__button {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 6px;
    background: #ffffff;
}

.new-start-news-share__button:hover,
.new-start-news-share__button:focus {
    filter: brightness(0.94);
}

.new-start-news-share__button img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.new-start-news-post-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.34fr);
    gap: 24px;
    align-items: start;
}

.new-start-news-post-main {
    min-width: 0;
    padding: 26px;
}

.new-start-news-post-body {
    color: var(--ns-ink);
    font-size: 1.05rem;
    line-height: 1.7;
}

.new-start-news-post-body > *:first-child {
    margin-top: 0;
}

.new-start-news-post-body p,
.new-start-news-post-body ul,
.new-start-news-post-body ol,
.new-start-news-post-body blockquote {
    margin: 0 0 1.15rem;
}

.new-start-news-post-body h2,
.new-start-news-post-body h3,
.new-start-news-post-body h4 {
    margin: 1.6rem 0 0.7rem;
    font-family: neue-kabel, Arial, sans-serif;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.new-start-news-post-body h2 {
    font-size: 2rem;
}

.new-start-news-post-body h3 {
    font-size: 1.55rem;
}

.new-start-news-post-body a {
    text-decoration: underline;
    text-underline-offset: 0.16em;
}

.new-start-news-post-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.new-start-news-post-body blockquote {
    padding: 14px 18px;
    border-left: 6px solid var(--ns-red);
    background: #f8f8f5;
}

.new-start-news-post-main > .new-start-button {
    margin-top: 12px;
}

.new-start-news-post-aside {
    min-width: 0;
}

.new-start-news-post-aside__inner {
    position: sticky;
    top: 140px;
    display: grid;
    gap: 16px;
}

.new-start-news-post-aside .new-start-section-heading {
    margin-bottom: 0;
}

.new-start-news-mini-list {
    display: grid;
    gap: 12px;
}

.new-start-news-mini-card {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 12px;
    overflow: hidden;
}

.new-start-news-mini-card__image {
    display: block;
    overflow: hidden;
    background: #111111;
}

.new-start-news-mini-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 112px;
    object-fit: cover;
}

.new-start-news-mini-card__body {
    min-width: 0;
    padding: 12px 12px 12px 0;
}

.new-start-news-mini-card h3 {
    margin-top: 8px;
    font-size: 1.12rem;
}

.new-start-news-mini-card h3 a {
    color: var(--ns-ink);
}

.new-start-news-mini-card h3 a:hover,
.new-start-news-mini-card h3 a:focus {
    color: var(--ns-red);
}

@media screen and (max-width: 980px) {
    .new-start-news-page {
        padding-bottom: 38px;
    }

    .new-start-news-hero__grid,
    .new-start-news-filter-grid,
    .new-start-news-post-hero__grid,
    .new-start-news-post-layout {
        grid-template-columns: 1fr;
    }

    .new-start-news-hero__grid,
    .new-start-news-post-hero__grid {
        gap: 22px;
        padding: 32px 0;
    }

    .new-start-news-hero h1,
    .new-start-news-post-hero h1 {
        font-size: 2.65rem;
    }

    .new-start-news-hero__summary {
        font-size: 1rem;
    }

    .new-start-news-post-hero__image {
        max-width: 620px;
    }

    .new-start-news-post-aside__inner {
        position: static;
    }

    .new-start-news-post-main {
        padding: 20px;
    }
}

@media screen and (max-width: 520px) {
    .new-start-news-hero h1,
    .new-start-news-post-hero h1 {
        font-size: 2.35rem;
    }

    .new-start-news-hero__panel,
    .new-start-news-filter-panel,
    .new-start-news-post-main {
        padding: 18px;
    }

    .new-start-news-quick-links {
        grid-template-columns: 1fr;
    }

    .new-start-news-filter-pill {
        flex: 1 1 140px;
    }

    .new-start-news-pagination {
        justify-content: stretch;
    }

    .new-start-news-pagination__link,
    .new-start-news-pagination__ellipsis {
        flex: 1 1 54px;
    }

    .new-start-news-pagination__link--edge {
        flex-basis: calc(50% - 4px);
    }

    .new-start-news-mini-card {
        grid-template-columns: 1fr;
    }

    .new-start-news-mini-card__image img {
        aspect-ratio: 16 / 9;
        min-height: 0;
    }

    .new-start-news-mini-card__body {
        padding: 0 12px 12px;
    }
}
