:root {
    --jp-black: #030303;
    --jp-black-soft: #0a0707;
    --jp-panel: rgba(18, 17, 17, 0.88);
    --jp-panel-strong: rgba(9, 9, 9, 0.94);
    --jp-red: #df0707;
    --jp-red-dark: #990101;
    --jp-white: #f5f5f5;
    --jp-muted: #b9b9b9;
    --jp-border: rgba(255, 255, 255, 0.12);
    --jp-red-border: rgba(223, 7, 7, 0.45);
    --jp-shadow: 0 22px 60px rgba(0, 0, 0, 0.52);
    --jp-font: "Montserrat", Arial, Helvetica, sans-serif;
    --jp-header-height: 116px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.jp-page {
    margin: 0;
    min-width: 320px;
    overflow-x: clip;
    overflow-y: visible;
    background:
        radial-gradient(circle at 81% 10%, rgba(123, 8, 4, 0.36), transparent 28rem),
        radial-gradient(circle at 16% 100%, rgba(180, 0, 0, 0.24), transparent 22rem),
        linear-gradient(180deg, #000 0%, #070101 55%, #020202 100%);
    color: var(--jp-white);
    font-family: var(--jp-font);
}

.jp-page a {
    color: inherit;
    text-decoration: none;
}

.jp-site-shell {
    position: relative;
    min-height: 100vh;
    overflow: visible;
    padding-top: var(--jp-header-height);
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.42) 42%, rgba(0, 0, 0, 0.72) 100%),
        url("../../images/theme/jetta-payne/jetta-payne-layout-background.png") left top / max(1672px, 100%) auto no-repeat fixed;
    background-color: #000;
}

.jp-site-shell::before,
.jp-site-shell::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.jp-site-shell::before {
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.2) 48%, #050101 86%),
        radial-gradient(circle at 50% 28%, rgba(229, 5, 5, 0.16), transparent 26rem);
    backdrop-filter: blur(2px);
}

.jp-site-shell::after {
    content: none;
    left: -9rem;
    right: -9rem;
    bottom: -8rem;
    height: 19rem;
    background:
        radial-gradient(circle at 4% 65%, rgba(229, 0, 0, 0.62), transparent 17rem),
        radial-gradient(circle at 96% 58%, rgba(229, 0, 0, 0.5), transparent 17rem);
    filter: blur(18px);
}

.jp-container {
    position: relative;
    z-index: 1;
    width: min(1536px, calc(100% - 8rem));
    margin: 0 auto;
}

.jp-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.56);
    backdrop-filter: blur(12px);
}

.jp-nav-wrap {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr) auto;
    align-items: center;
    min-height: 80px;
    gap: 2rem;
}

.jp-brand {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 62px;
    width: 220px;
    color: #fff;
    text-transform: uppercase;
}

.jp-brand-name {
    position: relative;
    z-index: 2;
    color: #e7e7e7;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.55rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
    white-space: nowrap;
}

.jp-brand-mark {
    position: absolute;
    inset: 50% auto auto 50%;
    z-index: 1;
    width: 132px;
    height: 91px;
    background: url("../../images/theme/jetta-payne/jetta-payne-jp-mark.png") center / contain no-repeat;
    opacity: 0.98;
    transform: translate(-50%, -50%);
}

.jp-primary-nav {
    display: flex;
    align-items: center;
}

.jp-nav-toggle {
    display: none;
}

.jp-primary-nav {
    justify-content: center;
    gap: clamp(1.3rem, 3vw, 3.55rem);
    text-transform: uppercase;
}

.jp-primary-nav a,
.jp-nav-caret {
    position: relative;
    padding: 0.5rem 0;
    color: #e8e8e8;
    font-size: 0.88rem;
    font-weight: 800;
}

.jp-primary-nav a.active,
.jp-primary-nav a[aria-current="page"],
.jp-nav-dropdown.is-active > .jp-nav-link-row > .jp-nav-link,
.jp-nav-dropdown.is-active > .jp-nav-link-row > .jp-nav-caret,
.jp-primary-nav a:hover,
.jp-nav-caret:hover,
.jp-nav-dropdown.is-open .jp-nav-link,
.jp-nav-dropdown:focus-within .jp-nav-link {
    color: var(--jp-red);
}

.jp-primary-nav a.active::after,
.jp-primary-nav a[aria-current="page"]::after,
.jp-nav-dropdown.is-active > .jp-nav-link-row > .jp-nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--jp-red);
}

.jp-nav-dropdown {
    position: relative;
}

.jp-nav-dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: -0.75rem;
    right: -0.75rem;
    height: 1rem;
}

.jp-nav-link-row {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.jp-nav-caret {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.jp-nav-caret span {
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 160ms ease;
}

.jp-nav-caret[aria-expanded="true"] span,
.jp-nav-dropdown:hover .jp-nav-caret span,
.jp-nav-dropdown:focus-within .jp-nav-caret span {
    transform: translateY(2px) rotate(225deg);
}

.jp-nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    display: grid;
    min-width: 168px;
    padding: 0.9rem 0.65rem 0.65rem;
    border: 1px solid rgba(223, 7, 7, 0.34);
    border-radius: 6px;
    background: rgba(3, 3, 3, 0.96);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.46);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 0);
    transition: opacity 160ms ease, transform 160ms ease;
}

.jp-nav-dropdown-menu a {
    display: block;
    padding: 0.55rem 0.75rem;
    white-space: nowrap;
}

.jp-nav-dropdown:hover .jp-nav-dropdown-menu,
.jp-nav-dropdown:focus-within .jp-nav-dropdown-menu,
.jp-nav-dropdown.is-open .jp-nav-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.jp-footer-social a,
.jp-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--jp-red);
    font-size: 0.68rem;
    font-weight: 900;
}

.jp-nav-booking {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.8rem 1.25rem;
    border: 1px solid var(--jp-red);
    background: linear-gradient(180deg, #d60707, #a30000);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
}

.jp-nav-booking:hover {
    color: #fff;
    transform: translateY(-1px);
}

.jp-hero {
    position: relative;
    z-index: 1;
    min-height: 462px;
    padding: 38px 0 18px;
}

.jp-hero::before {
    content: none;
}

.jp-hero-portrait {
    position: absolute;
    z-index: 1;
    left: 41%;
    bottom: 0;
    width: min(45vw, 650px);
    height: 512px;
    background: url("../../images/theme/jetta-payne/jetta-payne-hero-portrait.png") center bottom / cover no-repeat;
    filter: saturate(1.16) contrast(1.06);
    mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 82%, transparent 100%);
}

.jp-hero-portrait::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 56%, rgba(0, 0, 0, 0.72) 100%);
    pointer-events: none;
}

.jp-hero-animation {
    position: absolute;
    left: 50%;
    bottom: -54px;
    z-index: 1;
    max-width: none;
    transform: translateX(-50%) scale(0.86);
    transform-origin: center bottom;
}

.jp-hero-animation.is-empty {
    display: none;
}

.jp-hero-animation canvas,
.jp-hero-animation #dom_overlay_container {
    inset: 0;
}

.hla-gallery-scroller {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.75rem;
    padding: clamp(0.75rem, 2vw, 1.75rem) 0;
    overflow: hidden;
}

.hla-gallery-scroller::before,
.hla-gallery-scroller::after {
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    width: min(11vw, 120px);
    pointer-events: none;
    content: "";
}

.hla-gallery-scroller::before {
    left: 0;
    background: linear-gradient(90deg, #050607, rgba(5, 6, 7, 0));
}

.hla-gallery-scroller::after {
    right: 0;
    background: linear-gradient(270deg, #050607, rgba(5, 6, 7, 0));
}

.hla-gallery-swiper {
    position: relative;
    z-index: 1;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding: 0;
    overflow: hidden;
    list-style: none;
}

.hla-gallery-scroller .swiper-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    width: 100%;
    height: 100%;
    box-sizing: content-box;
    transition-timing-function: linear;
    transition-property: transform;
}

.hla-gallery-scroller-slide {
    position: relative;
    flex-shrink: 0;
    width: clamp(220px, 30vw, 380px);
    height: clamp(170px, 20vw, 245px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 6px;
    background: #050505;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .38);
}

.hla-gallery-scroller-slide a,
.hla-gallery-scroller-slide img {
    display: block;
    width: 100%;
    height: 100%;
}

.hla-gallery-scroller-slide img {
    object-fit: cover;
    transition: transform .35s ease;
}

.hla-gallery-scroller-slide:hover img,
.hla-gallery-scroller-slide:focus-within img {
    transform: scale(1.04);
}

.jp-cityline {
    position: absolute;
    z-index: 0;
    left: 0;
    right: 0;
    bottom: 2rem;
    height: 9rem;
    opacity: 0.56;
    background:
        linear-gradient(180deg, transparent 0%, rgba(220, 0, 0, 0.2) 62%, transparent 100%),
        repeating-linear-gradient(90deg, transparent 0 26px, rgba(167, 0, 0, 0.58) 26px 29px, transparent 29px 50px);
    clip-path: polygon(0 100%, 0 53%, 4% 53%, 4% 31%, 7% 31%, 7% 64%, 11% 64%, 11% 38%, 16% 38%, 16% 71%, 21% 71%, 21% 45%, 24% 45%, 24% 83%, 31% 83%, 31% 61%, 34% 61%, 34% 78%, 43% 78%, 43% 48%, 48% 48%, 48% 86%, 100% 86%, 100% 100%);
}

.jp-hero-grid {
    position: static;
    display: grid;
    grid-template-columns: minmax(0, 560px) 170px;
    justify-content: space-between;
    gap: 2rem;
}

.jp-hero-copy {
    position: relative;
    z-index: 4;
    padding-top: 4px;
}

.jp-hero-copy::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: -1.2rem -2rem -1.2rem -1.8rem;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(33, 0, 0, 0.46) 72%, transparent);
    filter: blur(1px);
}

.jp-hero-kicker,
.jp-panel h2,
.jp-footer-block h2 {
    margin: 0 0 0.85rem;
    color: var(--jp-red);
    font-size: 0.92rem;
    font-weight: 900;
    text-transform: uppercase;
}

.jp-hero h1 {
    margin: 0;
    color: #d8d8d8;
    font-size: clamp(4.6rem, 7vw, 7.1rem);
    font-weight: 900;
    line-height: 0.77;
    text-transform: uppercase;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.76);
}

.jp-hero h1 span,
.jp-hero h1 strong {
    display: block;
}

.jp-hero h1 strong {
    color: var(--jp-red);
}

.jp-script {
    margin: -0.05rem 0 0 5.7rem;
    color: #f2f2f2;
    font-family: "Brush Script MT", "Segoe Script", cursive;
    font-size: clamp(1.9rem, 2.2vw, 2.7rem);
    line-height: 1;
    white-space: nowrap;
    transform: rotate(-5deg);
    text-shadow: 0 2px 14px #000;
}

.jp-hero-text {
    width: min(100%, 355px);
    margin: 0.85rem 0 1.2rem;
    color: #f1f1f1;
    font-size: 1rem;
    line-height: 1.6;
}

.jp-hero-actions,
.jp-panel-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.jp-hero-actions {
    width: min(100%, 650px);
}

.jp-hero-actions .jp-btn {
    flex: 0 1 calc((100% - 2rem) / 3);
    min-width: 0;
}

.jp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-height: 44px;
    padding: 0.85rem 1.7rem;
    border: 1px solid rgba(255, 255, 255, 0.32);
    color: #fff;
    font-size: 0.83rem;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.jp-btn:hover {
    color: #fff;
    transform: translateY(-2px);
}

.jp-btn-red {
    border-color: var(--jp-red);
    background: linear-gradient(180deg, #d60707, #a30000);
}

.jp-btn-outline {
    background: rgba(0, 0, 0, 0.32);
}

.jp-btn-outline:hover {
    border-color: var(--jp-red);
}

.jp-btn-small {
    min-height: 36px;
    padding: 0.62rem 1.25rem;
    font-size: 0.72rem;
}

.jp-featured-on {
    position: relative;
    z-index: 2;
    align-self: center;
    display: grid;
    gap: 1.2rem;
    justify-items: center;
    margin-top: 2rem;
    color: rgba(245, 245, 245, 0.78);
    text-transform: uppercase;
}

.jp-featured-on p {
    margin: 0 0 0.25rem;
    color: var(--jp-red);
    font-size: 0.78rem;
    font-weight: 900;
}

.jp-featured-on span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #cfcfcf;
    font-size: 1.35rem;
    font-weight: 900;
}

.jp-feature-panels {
    position: relative;
    z-index: 2;
    padding: 0 0 16px;
}

.jp-panel-grid {
    display: grid;
    grid-template-columns: 1.18fr 1fr 1.06fr 1.08fr;
    gap: 1rem;
}

.jp-feature-panels .jp-panel {
    min-width: 0;
    min-height: 240px;
    padding: 1.28rem 1.35rem;
    border: 1px solid var(--jp-border);
    border-radius: 7px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)),
        rgba(18, 17, 17, 0.75);
    box-shadow: var(--jp-shadow);
}

.jp-panel h2 {
    font-size: 0.78rem;
}

.jp-panel h3 {
    margin: 0;
    color: #fff;
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
}

.jp-panel p {
    margin: 0;
    color: #f1f1f1;
    font-size: 0.78rem;
    line-height: 1.55;
}

.jp-release-content {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
}

.jp-release-content img,
.jp-about-content img,
.jp-video-frame img {
    display: block;
    width: 100%;
    object-fit: cover;
}

.jp-release-content img {
    aspect-ratio: 1 / 1.12;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.jp-release-meta h3 {
    font-size: 1.22rem;
}

.jp-release-meta p {
    margin: 0.4rem 0 0.8rem;
}

.jp-waveform {
    display: flex;
    align-items: center;
    height: 34px;
    gap: 2px;
    margin: 0 0 1rem;
    overflow: hidden;
}

.jp-waveform span {
    display: block;
    width: 3px;
    height: 14px;
    background: var(--jp-red);
}

.jp-waveform span:nth-child(3n) {
    height: 28px;
}

.jp-waveform span:nth-child(4n) {
    height: 20px;
}

.jp-waveform span:nth-child(5n) {
    height: 32px;
}

.jp-icon-btn {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    color: #f0f0f0;
}

.jp-release-meta .jp-panel-actions {
    flex-wrap: nowrap;
    gap: 0.65rem;
}

.jp-video-frame {
    position: relative;
    overflow: hidden;
    margin-bottom: 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.jp-video-frame img {
    aspect-ratio: 2.45 / 1;
    filter: saturate(1.1) contrast(1.08);
}

.jp-play-button {
    position: absolute;
    inset: 50% auto auto 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: var(--jp-red);
    color: #fff;
    font-size: 1.5rem;
    transform: translate(-50%, -50%);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.48);
}

.jp-video-panel > p {
    margin: 0.35rem 0 0.45rem;
    color: #c8c8c8;
    font-size: 0.68rem;
    text-transform: uppercase;
}

.jp-video-panel-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.jp-video-panel .jp-video-watch-now,
.jp-video-panel .jp-video-watch-now:hover,
.jp-video-panel .jp-video-watch-now:focus {
    color: var(--jp-red);
}

.jp-video-watch-all {
    min-height: 34px;
    padding: 0.55rem 0.95rem;
}

.jp-video-panel > .jp-video-panel-description {
    margin-top: 0.75rem;
    color: #c8c8c8;
    font-size: 0.76rem;
    line-height: 1.45;
    text-transform: none;
}

.jp-video-panel > .jp-video-panel-meta {
    margin-bottom: 0;
}

.goverlay {
    background: rgba(0, 0, 0, 0.92);
}

.glightbox-clean.jetta-payne-video-lightbox .gslide-media {
    border: 1px solid rgba(220, 24, 36, 0.72);
    background:
        linear-gradient(135deg, rgba(220, 24, 36, 0.14), transparent 34%),
        #050505;
    box-shadow:
        0 0 58px rgba(220, 24, 36, 0.28),
        0 0 0 1px rgba(0, 0, 0, 0.72),
        0 26px 90px rgba(0, 0, 0, 0.72);
}

.glightbox-clean.jetta-payne-video-lightbox .gslide-description {
    border-top: 1px solid rgba(220, 24, 36, 0.5);
    background:
        linear-gradient(90deg, rgba(220, 24, 36, 0.22), rgba(26, 0, 0, 0.76) 38%, rgba(0, 0, 0, 0.94)),
        rgba(3, 3, 3, 0.94);
}

.glightbox-clean.jetta-payne-video-lightbox .gslide-title {
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
}

.glightbox-clean.jetta-payne-video-lightbox .gslide-desc {
    color: var(--jp-red);
    font-weight: 800;
}

.glightbox-clean.jetta-payne-video-lightbox .gclose,
.glightbox-clean.jetta-payne-video-lightbox .gnext,
.glightbox-clean.jetta-payne-video-lightbox .gprev {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.62);
    color: #fff;
}

.glightbox-clean.jetta-payne-video-lightbox .gclose:hover,
.glightbox-clean.jetta-payne-video-lightbox .gnext:hover,
.glightbox-clean.jetta-payne-video-lightbox .gprev:hover {
    background: rgba(220, 24, 36, 0.3);
}

.jp-text-link,
.jp-shows-panel li > a {
    color: var(--jp-red);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.jp-about-content {
    display: block;
}

.jp-about-content img {
    float: left;
    width: min(42%, 164px);
    margin: 0 1.45rem 0.85rem 0;
    aspect-ratio: 0.79 / 1;
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.jp-about-content::after {
    content: "";
    display: block;
    clear: both;
}

.jp-about-content p {
    margin-bottom: 1rem;
}

.jp-about-signature {
    color: var(--jp-red);
    font-weight: 900;
    text-transform: uppercase;
}

.jp-panel-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.jp-panel-heading a {
    font-size: 0.65rem;
    font-weight: 900;
    text-transform: uppercase;
}

.jp-show-list {
    display: grid;
    gap: 0;
    padding: 0;
    margin: 0;
    list-style: none;
}

.jp-show-list li {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    min-height: 61px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.jp-show-list li:last-child {
    border-bottom: 0;
}

.jp-show-list time {
    display: grid;
    justify-items: center;
    padding-right: 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.38);
    color: #e7e7e7;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.jp-show-list time span {
    font-size: 0.72rem;
}

.jp-show-list h3 {
    overflow: hidden;
    font-size: 0.84rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.jp-show-list p {
    color: #c8c8c8;
    font-size: 0.72rem;
}

.jp-show-list .jp-show-empty {
    grid-template-columns: 1fr;
}

.jp-footer {
    position: relative;
    z-index: 2;
    margin-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.58);
}

.jp-footer-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1rem, 3vw, 3rem);
    min-height: 54px;
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    text-transform: uppercase;
}

.jp-footer-nav a {
    position: relative;
    color: #e8e8e8;
    font-size: 0.78rem;
    font-weight: 900;
}

.jp-footer-nav a:hover,
.jp-footer-nav a.active {
    color: var(--jp-red);
}

.jp-footer-nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.45rem;
    height: 2px;
    background: var(--jp-red);
}

.jp-footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.85fr 1.25fr;
    gap: 2.3rem;
    min-height: 116px;
    padding-top: 1.2rem;
    padding-bottom: 1.05rem;
}

.jp-footer-grid > * + * {
    border-left: 1px solid var(--jp-red-border);
    padding-left: 2.3rem;
}

.jp-footer .jp-brand {
    justify-content: flex-start;
    width: 220px;
    min-height: 55px;
}

.jp-footer-brand p {
    margin: -0.25rem 0 0 3.7rem;
    color: var(--jp-red);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.jp-footer-block h2 {
    margin-bottom: 0.55rem;
    font-size: 0.82rem;
}

.jp-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.jp-footer-social a {
    color: #e6e6e6;
}

.jp-booking-link {
    color: #e7e7e7;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
}

.jp-subscribe p {
    margin: 0 0 0.65rem;
    color: #d2d2d2;
    font-size: 0.7rem;
    line-height: 1.45;
}

.jp-subscribe form {
    display: flex;
    gap: 0.65rem;
}

.jp-subscribe input {
    width: 100%;
    min-height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.42);
    color: #fff;
    font-size: 0.72rem;
    padding: 0 0.75rem;
}

.jp-subscribe button {
    min-height: 34px;
    border: 0;
    border-radius: 3px;
    background: var(--jp-red);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 900;
    padding: 0 1rem;
    text-transform: uppercase;
}

.jp-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    min-height: 33px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #7f7f7f;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
}

.jp-footer-bottom p {
    margin: 0;
}

.jp-footer-bottom nav {
    display: flex;
    gap: 1rem;
}

.jp-contact-submit-button,
.jp-contact-modal-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 44px;
    padding: 0.75rem 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 3px;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.jp-contact-submit-button {
    background: linear-gradient(180deg, #d60707, #a30000);
    box-shadow: 0 0 18px rgba(223, 7, 7, 0.34);
}

.jp-contact-modal-secondary {
    background: rgba(255, 255, 255, 0.08);
}

.jp-contact-modal .modal-content {
    max-height: calc(100dvh - 2rem);
    border: 1px solid var(--jp-red-border);
    border-radius: 7px;
    background:
        linear-gradient(135deg, rgba(223, 7, 7, 0.14), transparent 42%),
        rgba(7, 7, 7, 0.98);
    color: #f5f5f5;
}

.jp-contact-modal form {
    display: flex;
    min-height: 0;
    max-height: inherit;
    flex-direction: column;
}

.jp-contact-modal .modal-title {
    margin: 0;
    color: #f5f5f5;
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.jp-contact-modal .modal-header,
.jp-contact-modal .modal-footer {
    flex: 0 0 auto;
    border-color: rgba(255, 255, 255, 0.14);
}

.jp-contact-modal .modal-body {
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.jp-contact-modal label {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--jp-red);
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.jp-contact-modal input,
.jp-contact-modal textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font: inherit;
    padding: 0.75rem 0.85rem;
}

.jp-contact-modal input[type="date"],
.jp-contact-modal input[type="time"] {
    background-position: right 0.85rem center;
    background-repeat: no-repeat;
    background-size: 18px 18px;
    color-scheme: dark;
    padding-right: 2.7rem;
}

.jp-contact-modal input[type="date"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 2v4'/%3E%3Cpath d='M16 2v4'/%3E%3Crect width='18' height='18' x='3' y='4' rx='2'/%3E%3Cpath d='M3 10h18'/%3E%3C/svg%3E");
}

.jp-contact-modal input[type="time"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E");
}

.jp-contact-modal input[type="date"]::-webkit-calendar-picker-indicator,
.jp-contact-modal input[type="time"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    width: 2rem;
    height: 100%;
    opacity: 0;
}

.jp-contact-modal input::placeholder,
.jp-contact-modal textarea::placeholder {
    color: rgba(255, 255, 255, 0.48);
}

.jp-media-row {
    position: relative;
    z-index: 2;
    padding: 5px 0;
}

.jp-media-row:first-child {
    padding-top: 18px;
}

.jp-media-card {
    overflow: hidden;
    padding: 1.2rem 1.45rem;
    border: 1px solid var(--jp-border);
    border-radius: 7px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)),
        rgba(10, 10, 10, 0.86);
    box-shadow: var(--jp-shadow);
}

.jp-media-card h2,
.jp-media-card-heading h2 {
    margin: 0;
    color: var(--jp-red);
    font-size: 0.88rem;
    font-weight: 900;
    text-transform: uppercase;
}

.jp-media-card h3 {
    margin: 0;
    color: #f4f4f4;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
}

.jp-media-card p {
    margin: 0;
    color: #d7d7d7;
}

.jp-media-card-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.9rem;
}

.jp-media-card-heading a {
    color: #f3f3f3;
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
}

.jp-media-release-layout {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 2.1rem;
    align-items: center;
    margin-top: 0.55rem;
}

.jp-media-release-cover {
    width: 100%;
    aspect-ratio: 1 / 1;
    border: 1px solid rgba(223, 7, 7, 0.6);
    border-radius: 4px;
    object-fit: cover;
}

.jp-media-release-content h3 {
    font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.jp-media-release-details {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(220px, 0.95fr);
    gap: clamp(1rem, 2.2vw, 2rem);
    align-items: center;
}

.jp-media-release-content p {
    margin-top: 0.55rem;
    font-size: 1rem;
    line-height: 1.55;
}

.jp-media-release-description {
    padding-left: clamp(1rem, 2vw, 1.75rem);
    border-left: 1px solid rgba(223, 7, 7, 0.42);
    color: #eeeeee;
}

.jp-media-waveform {
    width: min(100%, 520px);
    height: 42px;
    margin: 0.75rem 0 1.15rem;
}

.jp-media-video-feature-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.95fr);
    gap: 2rem;
    align-items: center;
    margin-top: 0.5rem;
}

.jp-media-video-frame,
.jp-media-video-thumb {
    position: relative;
    display: block;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 4px;
    background: #050505;
}

.jp-media-video-frame img,
.jp-media-video-thumb img {
    display: block;
    width: 100%;
    aspect-ratio: 2.45 / 1;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.08);
}

.jp-media-video-feature-copy {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 0.25rem;
}

.jp-media-video-feature-copy h3 {
    font-size: clamp(1.25rem, 2.25vw, 1.8rem);
}

.jp-media-video-info p {
    margin: 0.8rem 0 1rem;
    color: #cfcfcf;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
}

.jp-media-video-info p span {
    color: var(--jp-red);
    padding: 0 0.6rem;
}

.jp-media-video-description {
    margin: 1rem 0 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(223, 7, 7, 0.42);
    color: #d7d7d7;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.55;
}

.jp-media-track-list {
    display: grid;
}

.jp-media-track-item {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) minmax(120px, 220px) auto 28px;
    gap: 1rem;
    align-items: center;
    min-height: 62px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.jp-media-track-item:last-child {
    border-bottom: 0;
}

.jp-media-track-item img {
    width: 58px;
    aspect-ratio: 1 / 1;
    border: 1px solid rgba(223, 7, 7, 0.46);
    border-radius: 3px;
    object-fit: cover;
}

.jp-media-track-copy h3,
.jp-media-video-tile h3 {
    overflow: hidden;
    font-size: 1rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.jp-media-track-copy h3 span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    margin-left: 0.55rem;
    border-radius: 3px;
    background: var(--jp-red-dark);
    color: #fff;
    font-size: 0.62rem;
    vertical-align: middle;
}

.jp-media-track-copy p,
.jp-media-video-tile p {
    margin-top: 0.22rem;
    color: #bfbfbf;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.jp-media-track-waveform {
    justify-self: end;
    width: 100%;
    max-width: 190px;
    height: 28px;
    margin: 0;
}

.jp-media-track-waveform span {
    width: 2px;
}

.jp-media-track-time,
.jp-media-more {
    color: #dedede;
    font-size: 0.83rem;
    font-weight: 700;
}

.jp-media-more {
    justify-self: end;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
}

.jp-media-more:hover,
.jp-media-more:focus {
    color: var(--jp-red);
}

.jp-media-list-card > .jp-text-link {
    display: inline-flex;
    margin-top: 0.9rem;
}

.jp-media-video-grid,
.jp-media-photo-grid,
.jp-media-logo-strip {
    display: grid;
    gap: 1.1rem;
}

.jp-media-video-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.jp-media-video-tile {
    min-width: 0;
}

.jp-media-video-tile .jp-play-button {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
}

.jp-media-photo-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.jp-media-photo-grid a {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 4px;
    background: #070707;
}

.jp-media-photo-grid img {
    display: block;
    width: 100%;
    aspect-ratio: 1.2 / 1;
    object-fit: cover;
    transition: transform 180ms ease;
}

.jp-media-photo-grid a:hover img {
    transform: scale(1.04);
}

.jp-media-featured-on-card {
    padding-bottom: 1.45rem;
}

.jp-media-logo-strip {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: center;
    margin-top: 1.05rem;
}

.jp-media-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    filter: grayscale(1);
    opacity: 0.86;
}

.jp-media-logo-item img {
    display: block;
    width: min(100%, 138px);
    max-height: 46px;
    object-fit: contain;
}

.jp-media-logo-item span {
    color: #dcdcdc;
    font-size: clamp(1.2rem, 2.2vw, 1.85rem);
    font-weight: 900;
    text-transform: uppercase;
}

.jp-shows-section {
    position: relative;
    z-index: 2;
    padding: 8px 0;
}

.jp-shows-section .jp-container {
    width: min(1040px, calc(100% - 3rem));
}

.jp-ticket {
    position: relative;
    border: 1px solid rgba(223, 7, 7, 0.58);
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(12, 12, 12, 0.72)),
        radial-gradient(circle at 42% 45%, rgba(223, 7, 7, 0.2), transparent 18rem),
        rgba(8, 8, 8, 0.92);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.82), 0 22px 56px rgba(0, 0, 0, 0.42);
}

.jp-ticket::before,
.jp-ticket::after {
    content: "";
    position: absolute;
    z-index: 2;
    width: 22px;
    height: 22px;
    border: 1px solid rgba(223, 7, 7, 0.58);
    border-radius: 50%;
    background: #000;
}

.jp-ticket::before {
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
}

.jp-ticket::after {
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
}

.jp-featured-ticket {
    display: grid;
    grid-template-columns: 138px minmax(0, 1fr) 300px;
    min-height: 228px;
    overflow: hidden;
}

.jp-featured-ticket::before,
.jp-featured-ticket::after {
    top: 21px;
    transform: none;
}

.jp-ticket-date,
.jp-show-ticket-date {
    display: grid;
    align-content: center;
    justify-items: center;
    color: #d8d8d8;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
}

.jp-ticket-date {
    margin: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.44);
}

.jp-ticket-date span,
.jp-show-ticket-date span,
.jp-ticket-location,
.jp-show-ticket-venue p,
.jp-shows-heading h2,
.jp-featured-ribbon {
    color: var(--jp-red);
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.jp-ticket-date span,
.jp-show-ticket-date span {
    font-size: 1.05rem;
}

.jp-ticket-date strong,
.jp-show-ticket-date strong {
    display: block;
    color: #d9d9d9;
    font-size: 3.9rem;
    font-weight: 900;
    line-height: 0.88;
}

.jp-ticket-date em {
    color: #8f8f8f;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.jp-ticket-date b {
    display: block;
    width: 86px;
    height: 28px;
    margin-top: 12px;
    background: repeating-linear-gradient(90deg, #c8c8c8 0 2px, transparent 2px 5px);
    opacity: 0.75;
}

.jp-featured-ticket-main {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 30px 38px;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.66));
        /*url("../../images/theme/jetta-payne/jetta-payne-featured-show-bg.png") center / cover no-repeat;*/
}

.jp-featured-ticket-main::after,
.jp-ticket-cta::before,
.jp-show-ticket-address::before,
.jp-show-ticket-action::before {
    content: "";
    position: absolute;
    top: 18px;
    bottom: 18px;
    width: 1px;
    background: repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.32) 0 7px, transparent 7px 14px);
}

.jp-featured-ticket-main::after {
    right: 0;
}

.jp-featured-ribbon {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0.42rem 1.25rem;
    background: linear-gradient(180deg, #f10b0b, #a80000);
    color: #fff;
    font-size: 0.75rem;
}

.jp-featured-ticket h2,
.jp-show-ticket-venue h3 {
    margin: 0;
    color: #f2f2f2;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.jp-featured-ticket h2 {
    font-size: clamp(2.25rem, 4vw, 3.75rem);
}

.jp-ticket-location {
    margin: 0.55rem 0 1.1rem;
    font-size: 1.15rem;
}

.jp-ticket-meta {
    display: grid;
    gap: 0.52rem;
    margin: 0;
    padding: 0;
    color: #dfdfdf;
    font-size: 0.82rem;
    list-style: none;
}

.jp-ticket-meta li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.jp-ticket-meta span {
    color: #fff;
    font-size: 1rem;
}

.jp-ticket-meta b,
.jp-show-ticket-address b,
.jp-ticket-cta small b {
    color: var(--jp-red);
}

.jp-featured-note {
    margin: 0.82rem 0 0;
    color: #bfbfbf;
    font-size: 0.82rem;
    font-style: italic;
}

.jp-ticket-cta {
    position: relative;
    display: grid;
    align-content: center;
    justify-items: center;
    padding: 1.5rem 2.2rem;
    text-align: center;
}

.jp-ticket-cta::before {
    left: 0;
}

.jp-ticket-cta p {
    margin: 0 0 0.4rem;
    color: #e2e2e2;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    text-transform: uppercase;
}

.jp-ticket-cta strong,
.jp-tour-moment figcaption {
    color: #fff;
    font-family: "Brush Script MT", "Segoe Script", cursive;
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1;
    text-shadow: 0 2px 12px #000;
}

.jp-ticket-cta .jp-btn {
    width: min(100%, 178px);
    margin: 1.25rem 0 0.8rem;
    border-radius: 4px;
}

.jp-ticket-cta small {
    color: #bcbcbc;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.jp-shows-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.7rem 4px 0.8rem;
}

.jp-shows-heading h2,
.jp-tour-moments-card h2 {
    margin: 0;
    font-size: 1rem;
    letter-spacing: 0.08em;
}

.jp-shows-heading span {
    color: #ddd;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.jp-shows-heading b {
    color: var(--jp-red);
    font-family: "Brush Script MT", "Segoe Script", cursive;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0;
}

.jp-ticket-list {
    display: grid;
    gap: 4px;
}

.jp-show-ticket {
    display: grid;
    grid-template-columns: 128px minmax(190px, 1fr) minmax(260px, 1.35fr) 180px;
    align-items: center;
    min-height: 84px;
    overflow: hidden;
}

.jp-show-ticket-date {
    position: relative;
    height: 100%;
}

.jp-show-ticket-date::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--jp-red) 16%, var(--jp-red) 84%, transparent);
    box-shadow: 0 0 12px rgba(223, 7, 7, 0.8);
}

.jp-show-ticket-date strong {
    font-size: 2.35rem;
}

.jp-show-ticket-venue {
    min-width: 0;
    padding: 1rem 2rem;
}

.jp-show-ticket-venue h3 {
    overflow: hidden;
    font-size: 1.25rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.jp-show-ticket-venue p {
    margin: 0.34rem 0 0;
    font-size: 0.86rem;
}

.jp-show-ticket-address,
.jp-show-ticket-action {
    position: relative;
    padding: 0.8rem 1.6rem;
}

.jp-show-ticket-address::before,
.jp-show-ticket-action::before {
    left: 0;
}

.jp-show-ticket-address p {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0;
    color: #cfcfcf;
    font-size: 0.76rem;
    line-height: 1.35;
}

.jp-show-ticket-address p + p {
    margin-top: 0.42rem;
}

.jp-show-ticket-action {
    display: grid;
    justify-items: center;
    gap: 0.46rem;
}

.jp-show-ticket-action a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    width: 126px;
    min-height: 34px;
    border: 1px solid var(--jp-red);
    border-radius: 3px;
    color: #ff2222;
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
}

.jp-show-ticket-action small {
    color: #b8b8b8;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
}

.jp-tour-moments-card {
    padding: 0.9rem 1rem 1.35rem;
    border: 1px solid rgba(223, 7, 7, 0.58);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.62);
}

.jp-tour-moments-card h2 {
    color: var(--jp-red);
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
}

.jp-tour-moments-card h2 span {
    font-size: 0.78rem;
    padding: 0 0.8rem;
}

.jp-tour-moments-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 0.8rem;
}

.jp-tour-moment {
    position: relative;
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(223, 7, 7, 0.62);
    border-radius: 6px;
    background: #080808;
}

.jp-tour-moment img {
    display: block;
    width: 100%;
    aspect-ratio: 1.9 / 1;
    object-fit: cover;
    filter: saturate(1.12) contrast(1.06);
}

.jp-tour-moment figcaption {
    position: absolute;
    left: 1.2rem;
    right: 1.2rem;
    bottom: 0.35rem;
    font-size: 1.45rem;
}

.jp-about-section {
    position: relative;
    z-index: 2;
    padding: 8px 0;
}

.jp-about-section .jp-container {
    width: min(1040px, calc(100% - 3rem));
}

.jp-about-statement-card,
.jp-about-info-card,
.jp-about-quote-card {
    border: 1px solid rgba(223, 7, 7, 0.72);
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(8, 8, 8, 0.58)),
        rgba(4, 4, 4, 0.9);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.72), 0 22px 56px rgba(0, 0, 0, 0.42);
}

.jp-about-statement-card {
    min-height: 174px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: clamp(1.5rem, 4vw, 3rem) clamp(1.5rem, 5vw, 4.2rem);
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.1) 48%, rgba(0, 0, 0, 0.65)),
        url("../../images/theme/jetta-payne/jetta-payne-about-statement-bg.png") center / cover no-repeat;
}

.jp-about-statement-card p,
.jp-about-journey-copy > p:first-child {
    margin: 0 0 0.4rem;
    color: var(--jp-red);
    font-size: 0.94rem;
    font-weight: 900;
    letter-spacing: 0.55em;
    text-transform: uppercase;
}

.jp-about-statement-card h2,
.jp-about-journey-copy h2 {
    margin: 0;
    color: #e1e1e1;
    font-size: clamp(3.35rem, 7vw, 5.25rem);
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
    text-shadow: 0 3px 16px rgba(0, 0, 0, 0.78);
}

.jp-about-info-card {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    min-height: 200px;
    overflow: hidden;
}

.jp-about-stat {
    position: relative;
    display: grid;
    align-content: start;
    justify-items: center;
    min-width: 0;
    padding: 1.4rem;
    text-align: center;
}

.jp-about-stat + .jp-about-stat::before {
    content: "";
    position: absolute;
    top: 22px;
    bottom: 22px;
    left: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--jp-red), transparent);
    box-shadow: 0 0 14px rgba(223, 7, 7, 0.72);
}

.jp-about-stat-icon {
    display: inline-grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin-bottom: 0.55rem;
    color: var(--jp-red);
    font-size: 2.7rem;
}

.jp-about-stat-icon img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.jp-about-stat strong {
    color: #dcdcdc;
    font-size: clamp(2.45rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 0.95;
    text-transform: uppercase;
    text-shadow: 0 2px 12px #000;
}

.jp-about-stat p {
    max-width: 12rem;
    margin: 0.8rem 0 0;
    color: #e6e6e6;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    line-height: 1.45;
    text-transform: uppercase;
}

.jp-about-journey-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 4rem);
    align-items: center;
}

.jp-about-journey-media img {
    display: block;
    width: 100%;
    object-fit: contain;
    filter: saturate(1.08) contrast(1.08);
}

.jp-about-journey-copy {
    min-width: 0;
}

.jp-about-journey-copy > p:first-child {
    letter-spacing: 0.42em;
}

.jp-about-journey-copy h2 {
    font-size: clamp(3rem, 6vw, 4.5rem);
}

.jp-about-red-rule {
    width: min(100%, 450px);
    height: 8px;
    margin: 0.35rem 0 1rem;
    background: linear-gradient(90deg, var(--jp-red), transparent);
    clip-path: polygon(0 35%, 100% 0, 97% 62%, 0 100%);
}

.jp-about-journey-copy p:not(:first-child) {
    width: min(100%, 460px);
    margin: 0;
    color: #e2e2e2;
    font-size: 1.05rem;
    line-height: 1.48;
}

.jp-about-journey-copy strong {
    display: block;
    margin-top: 1rem;
    color: var(--jp-red);
    font-size: 1.05rem;
}

.jp-about-journey-copy cite {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    margin-top: 1.1rem;
    color: #fff;
    font-family: "Brush Script MT", "Segoe Script", cursive;
    font-size: 2rem;
    font-style: normal;
    line-height: 1;
}

.jp-about-journey-copy cite span {
    color: var(--jp-red);
    font-family: var(--jp-font);
    font-size: 1.25rem;
}

.jp-about-quote-card {
    position: relative;
    display: grid;
    min-height: 148px;
    align-content: center;
    justify-items: center;
    margin: 0;
    overflow: hidden;
    padding: 1.45rem clamp(4rem, 12vw, 12rem);
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.32)),
        url("../../images/theme/jetta-payne/jetta-payne-about-quote-mic.png") right center / auto 100% no-repeat,
        rgba(4, 4, 4, 0.9);
    text-align: center;
}

.jp-about-quote-card blockquote {
    max-width: 610px;
    margin: 0;
    color: #ececec;
    font-size: clamp(1.2rem, 2.45vw, 1.9rem);
    font-weight: 800;
    letter-spacing: 0.34em;
    line-height: 1.45;
    text-transform: uppercase;
}

.jp-about-quote-card figcaption {
    margin-top: 0.45rem;
    color: var(--jp-red);
    font-family: "Brush Script MT", "Segoe Script", cursive;
    font-size: 1.75rem;
    line-height: 1;
}

.jp-about-quote-mark {
    position: absolute;
    color: var(--jp-red);
    font-size: 6.5rem;
    font-weight: 900;
    line-height: 1;
}

.jp-about-quote-mark-start {
    left: 6%;
    top: 1.1rem;
}

.jp-about-quote-mark-end {
    right: 5%;
    bottom: -0.6rem;
}

.hla-about-custom-sections .row > div:has(> #about-jetta) {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
}

#about-jetta {
    width: min(1040px, 100%);
    margin-right: auto;
    margin-left: auto;
}

#about-jetta .hla-about-story-card {
    width: 100%;
    min-height: 0;
    overflow: hidden;
    border-color: rgba(223, 7, 7, 0.38);
    background: rgba(0, 0, 0, 0.74);
    box-shadow:
        inset 0 0 0 1px rgba(0, 0, 0, 0.86),
        0 18px 45px rgba(0, 0, 0, 0.42);
}

#about-jetta .hla-about-card-title {
    margin-bottom: 1.15rem;
}

#about-jetta .hla-about-title-rule {
    background: linear-gradient(90deg, transparent, var(--jp-red), rgba(223, 7, 7, 0.28));
    box-shadow: 0 0 12px rgba(223, 7, 7, 0.5);
}

#about-jetta .hla-about-story-mark {
    position: absolute;
    top: clamp(4.7rem, 7vw, 5.35rem);
    right: auto;
    bottom: auto;
    left: clamp(1.35rem, 3vw, 2rem);
    width: clamp(148px, 18vw, 220px);
    overflow: hidden;
    border: 1px solid rgba(223, 7, 7, 0.38);
    border-radius: 8px;
    background: #050505;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.45), 0 0 22px rgba(223, 7, 7, 0.16);
    filter: none;
}

#about-jetta .hla-about-story-mark img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    height: auto;
    object-fit: cover;
    object-position: top center;
}

#about-jetta .hla-about-story-copy {
    max-width: none;
    min-height: 0;
    padding-left: 0;
    color: #d5d7dc;
    line-height: 1.5;
}

#about-jetta .hla-about-story-copy::before {
    display: block;
    float: left;
    width: clamp(164px, 20vw, 244px);
    height: clamp(190px, 23vw, 282px);
    margin: 0 1.35rem 0.85rem 0;
    content: "";
}

@media (max-width: 575.98px) {
    #about-jetta .hla-about-story-mark {
        position: absolute;
        top: 4.35rem;
        left: 1.35rem;
        float: none;
        width: 128px;
        margin: 0;
    }

    #about-jetta .hla-about-story-copy {
        min-height: 0;
        padding-left: 0;
    }

    #about-jetta .hla-about-story-copy::before {
        display: block;
        width: 142px;
        height: 158px;
        margin-right: 1rem;
    }
}

.sir-error-shell {
    display: grid;
    min-height: 100vh;
    grid-template-rows: auto 1fr auto;
    background:
        radial-gradient(circle at 76% 14%, rgba(223, 7, 7, 0.24), transparent 34%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.82)),
        url("../../images/theme/jetta-payne/jetta-payne-layout-background.png") center center / cover no-repeat fixed;
    color: var(--jp-white);
    font-family: var(--jp-font);
}

body:has(.sir-error-shell) {
    margin: 0;
    min-width: 320px;
    background: #000;
}

.sir-error-header,
.sir-error-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-color: var(--jp-border);
    background: rgba(0, 0, 0, 0.78);
    padding: 1rem clamp(1rem, 4vw, 3rem);
}

.sir-error-header {
    border-bottom: 1px solid var(--jp-border);
}

.sir-error-brand img {
    width: min(240px, 72vw);
    height: auto;
    max-height: 150px;
    object-fit: contain;
}

.sir-error-main {
    display: grid;
    place-items: center;
    padding: clamp(1.25rem, 4vw, 4rem);
}

.sir-error-shell .hla-error-page {
    width: min(100%, 760px);
}

.sir-error-shell .hla-error-page .error-page__content {
    overflow: hidden;
    border: 1px solid rgba(223, 7, 7, 0.42);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(223, 7, 7, 0.14), transparent 42%),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.026) 0 1px, transparent 1px 7px),
        rgba(4, 4, 4, 0.9);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.76), 0 24px 70px rgba(0, 0, 0, 0.5);
    padding: clamp(1.5rem, 5vw, 3.25rem);
    text-align: center;
}

.sir-error-shell .hla-error-page .error-page__code {
    color: var(--jp-red);
    font-size: clamp(4.4rem, 15vw, 8.5rem);
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 0.85;
    text-shadow: 0 0 28px rgba(223, 7, 7, 0.46);
}

.sir-error-shell .hla-error-page .error-page__title {
    margin: 1rem 0 0.5rem;
    color: #fff;
    font-size: clamp(2rem, 6vw, 3.6rem);
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.sir-error-shell .hla-error-page .error-page__message {
    max-width: 560px;
    margin: 0 auto 1.5rem;
    color: var(--jp-muted);
    font-size: 1.2rem;
    font-weight: 700;
}

.sir-error-shell .hla-error-page .error-page__actions {
    display: flex;
    justify-content: center;
}

.sir-error-shell .hla-error-page .error-page__button,
.sir-error-shell .hla-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 7px;
    background: linear-gradient(180deg, #ff2b2b, #a40000);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 900;
    line-height: 1;
    padding: 0.75rem 1.15rem;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 0 18px rgba(223, 7, 7, 0.38);
}

.sir-error-shell .hla-error-page .error-page__button:hover,
.sir-error-shell .hla-error-page .error-page__button:focus,
.sir-error-shell .hla-btn:hover,
.sir-error-shell .hla-btn:focus {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.44);
    background: linear-gradient(180deg, #ff4545, #c40000);
}

.sir-error-footer {
    border-top: 1px solid var(--jp-border);
    color: var(--jp-muted);
    font-size: 0.95rem;
    font-weight: 700;
}

.sir-error-footer a {
    color: var(--jp-red);
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.sir-error-footer a:hover,
.sir-error-footer a:focus {
    color: #fff;
}

@media (max-width: 1440px) {
    .jp-container {
        width: min(1140px, calc(100% - 3rem));
    }

    .jp-nav-wrap {
        grid-template-columns: 210px 1fr auto;
    }

    .jp-nav-booking {
        display: none;
    }

    .jp-panel-grid,
    .jp-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .jp-hero-portrait {
        left: 46%;
        width: min(49vw, 610px);
    }
}

@media (max-width: 1024px) {
    :root {
        --jp-header-height: 181px;
    }

    .jp-header {
        background: rgba(0, 0, 0, 0.86);
    }

    .jp-nav-wrap {
        grid-template-columns: 1fr;
        justify-items: center;
        padding: 0.8rem 0 1rem;
        gap: 0.6rem;
    }

    .jp-primary-nav {
        flex-wrap: wrap;
        gap: 0.75rem 1.4rem;
    }

    .jp-hero {
        min-height: auto;
        padding-top: 2rem;
    }

    .jp-hero-portrait {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        width: min(100%, 620px);
        height: 420px;
        margin: -0.5rem auto 0;
        opacity: 0.9;
    }

    .jp-hero-animation {
        bottom: -86px;
        transform: translateX(-50%) scale(0.72);
    }

    .jp-hero-grid {
        grid-template-columns: 1fr;
    }

    .jp-featured-on {
        grid-template-columns: repeat(4, auto);
        justify-content: start;
        justify-items: start;
        align-items: center;
        margin-top: 0;
    }

    .jp-featured-on p {
        grid-column: 1 / -1;
    }

    .jp-footer-grid > * + * {
        border-left: 0;
        padding-left: 0;
    }

    .jp-media-release-layout,
    .jp-media-video-feature-layout {
        grid-template-columns: 1fr;
    }

    .jp-media-release-cover {
        max-width: 240px;
    }

    .jp-media-track-item {
        grid-template-columns: 58px minmax(0, 1fr) auto 28px;
    }

    .jp-media-track-waveform {
        display: none;
    }

    .jp-media-video-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .jp-media-photo-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .jp-media-logo-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .jp-featured-ticket,
    .jp-show-ticket {
        grid-template-columns: 1fr;
    }

    .jp-featured-ticket-main::after,
    .jp-ticket-cta::before,
    .jp-show-ticket-address::before,
    .jp-show-ticket-action::before {
        content: none;
    }

    .jp-ticket-date {
        min-height: 132px;
    }

    .jp-ticket-cta {
        justify-items: start;
        text-align: left;
    }

    .jp-show-ticket-date {
        min-height: 82px;
    }

    .jp-show-ticket-date::after {
        content: none;
    }

    .jp-show-ticket-venue,
    .jp-show-ticket-address,
    .jp-show-ticket-action {
        padding: 0.8rem 1rem;
    }

    .jp-show-ticket-action {
        justify-items: start;
    }

    .jp-tour-moments-grid {
        grid-template-columns: 1fr;
    }

    .jp-about-info-card {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .jp-about-stat:nth-child(3)::before {
        content: none;
    }

    .jp-about-journey-grid {
        grid-template-columns: 1fr;
    }

    .jp-about-journey-media img {
        max-width: 520px;
        margin: 0 auto;
    }

    .jp-about-quote-card {
        padding-right: clamp(2rem, 8vw, 5rem);
        padding-left: clamp(2rem, 8vw, 5rem);
        background:
            linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.66)),
            url("../../images/theme/jetta-payne/jetta-payne-about-quote-mic.png") right center / auto 100% no-repeat,
            rgba(4, 4, 4, 0.9);
    }
}

@media (min-width: 761px) and (max-width: 1024px) {
    :root {
        --jp-header-height: 216px;
    }

    .jp-featured-on img {
        max-width: 125px;
    }

}

@media (max-width: 760px) {
    :root {
        --jp-header-height: 82px;
    }

    .jp-container {
        width: min(100% - 1.5rem, 560px);
    }

    .jp-nav-wrap {
        grid-template-columns: auto minmax(0, 1fr) auto;
        justify-content: space-between;
        min-height: 82px;
        padding: 0;
        gap: 0.75rem;
    }

    .jp-brand {
        justify-content: center;
        width: 158px;
        min-height: 76px;
    }

    .jp-brand-name {
        font-size: 0.66rem;
        letter-spacing: 0.3rem;
    }

    .jp-brand-mark {
        width: 102px;
        height: 70px;
    }

    .jp-nav-booking {
        display: inline-flex;
        justify-self: center;
        min-height: 36px;
        padding: 0.62rem 0.8rem;
        font-size: 0.62rem;
    }

    .jp-nav-toggle {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        gap: 0.42rem;
        width: 48px;
        height: 48px;
        padding: 0;
        border: 0;
        background: transparent;
        color: var(--jp-red);
    }

    .jp-nav-toggle span {
        display: block;
        width: 36px;
        height: 4px;
        margin-left: auto;
        border-radius: 999px;
        background: currentColor;
        transition: transform 180ms ease, opacity 180ms ease;
    }

    .jp-nav-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }

    .jp-nav-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .jp-nav-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }

    .jp-primary-nav {
        position: absolute;
        top: calc(100% + 1px);
        left: 50%;
        z-index: 1001;
        display: none;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        width: 100vw;
        padding: 1.05rem 1.25rem 1.25rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-bottom: 1px solid rgba(223, 7, 7, 0.35);
        background: rgba(3, 3, 3, 0.96);
        box-shadow: 0 22px 38px rgba(0, 0, 0, 0.45);
        gap: 0.85rem 1rem;
        justify-items: center;
        transform: translateX(-50%);
    }

    .jp-primary-nav.is-open {
        display: grid;
    }

    .jp-primary-nav a {
        font-size: 0.78rem;
    }

    .jp-nav-dropdown {
        display: grid;
        justify-items: center;
        gap: 0.4rem;
        width: 100%;
    }

    .jp-nav-dropdown::after {
        display: none;
    }

    .jp-nav-link-row {
        justify-content: center;
        gap: 0.35rem;
    }

    .jp-nav-caret {
        display: none;
    }

    .jp-nav-dropdown-menu {
        display: none;
    }

    .jp-nav-dropdown-menu a {
        padding: 0.45rem 0.25rem;
        font-size: 0.7rem;
    }

    .jp-nav-dropdown:hover .jp-nav-dropdown-menu,
    .jp-nav-dropdown:focus-within .jp-nav-dropdown-menu {
        display: none;
        transform: none;
    }

    .jp-nav-dropdown.is-open .jp-nav-dropdown-menu {
        display: none;
        transform: none;
    }

    .jp-hero h1 {
        font-size: clamp(3.35rem, 15vw, 5rem);
    }

    .jp-script {
        margin: 0.2rem 0 0 1.4rem;
        font-size: 1.8rem;
        white-space: normal;
    }

    .jp-hero-text {
        font-size: 0.9rem;
    }

    .jp-hero-kicker {
        max-width: 17rem;
        font-size: 0.78rem;
        line-height: 1.4;
    }

    .jp-hero-portrait {
        height: 340px;
    }

    .jp-hero-animation {
        bottom: -34px;
        transform: translateX(-50%) scale(0.58);
    }

    .jp-panel-grid,
    .jp-footer-grid {
        grid-template-columns: 1fr;
    }

    .jp-footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem 1.45rem;
    }

    .jp-panel {
        min-height: auto;
    }

    .jp-release-content,
    .jp-about-content {
        display: grid;
        grid-template-columns: 108px minmax(0, 1fr);
        gap: 1rem;
    }

    .jp-about-content img {
        float: none;
        width: 100%;
        margin: 0;
    }

    .jp-release-meta h3 {
        font-size: 1.1rem;
    }

    .jp-show-list li {
        grid-template-columns: 54px minmax(0, 1fr);
    }

    .jp-show-list li > a {
        grid-column: 2;
        justify-self: start;
        margin-top: -0.35rem;
    }

    .jp-footer-bottom,
    .jp-subscribe form {
        flex-direction: column;
    }

    .jp-footer-bottom {
        gap: 0.25rem;
        padding: 0.65rem 0;
    }
}

@media (max-width: 430px) {
    .jp-hero-actions,
    .jp-panel-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .jp-btn,
    .jp-icon-btn {
        width: 100%;
    }

    .jp-featured-on {
        grid-template-columns: repeat(2, auto);
    }

    .jp-release-content,
    .jp-about-content {
        grid-template-columns: 1fr;
    }

    .jp-release-content img,
    .jp-about-content img {
        max-width: 180px;
    }

    .jp-media-card {
        padding: 1rem;
    }

    .jp-media-release-layout {
        gap: 1rem;
    }

    .jp-media-release-details {
        grid-template-columns: 1fr;
    }

    .jp-media-release-description {
        padding-top: 0.95rem;
        padding-left: 0;
        border-top: 1px solid rgba(223, 7, 7, 0.42);
        border-left: 0;
    }

    .jp-media-release-cover {
        max-width: 190px;
    }

    .jp-media-release-content .jp-panel-actions {
        align-items: stretch;
    }

    .jp-media-release-content .jp-icon-btn {
        width: 100%;
    }

    .jp-media-video-grid,
    .jp-media-photo-grid,
    .jp-media-logo-strip {
        grid-template-columns: 1fr;
    }

    .jp-media-track-item {
        grid-template-columns: 48px minmax(0, 1fr) auto;
        gap: 0.75rem;
        padding: 0.45rem 0;
    }

    .jp-media-track-item img {
        width: 48px;
    }

    .jp-media-track-time {
        display: none;
    }

    .jp-media-more {
        grid-column: 3;
    }

    .jp-media-photo-grid img {
        aspect-ratio: 1.4 / 1;
    }

    .jp-media-logo-item {
        min-height: 44px;
    }

    .jp-shows-section .jp-container {
        width: min(100% - 1.5rem, 560px);
    }

    .jp-featured-ticket-main {
        padding: 3rem 1rem 1rem;
    }

    .jp-shows-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .jp-ticket-cta {
        padding: 1rem;
    }

    .jp-about-section .jp-container {
        width: min(100% - 1.5rem, 560px);
    }

    .jp-about-statement-card {
        min-height: 150px;
        padding: 1.25rem;
    }

    .jp-about-statement-card p,
    .jp-about-journey-copy > p:first-child {
        font-size: 0.78rem;
        letter-spacing: 0.28em;
    }

    .jp-about-statement-card h2,
    .jp-about-journey-copy h2 {
        font-size: clamp(2.2rem, 14vw, 3.5rem);
    }

    .jp-about-info-card {
        grid-template-columns: 1fr;
    }

    .jp-about-stat + .jp-about-stat::before {
        top: 0;
        right: 22px;
        bottom: auto;
        left: 22px;
        width: auto;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--jp-red), transparent);
    }

    .jp-about-stat:nth-child(3)::before {
        content: "";
    }

    .jp-about-stat strong {
        font-size: 3rem;
    }

    .jp-about-journey-copy p:not(:first-child) {
        font-size: 0.95rem;
    }

    .jp-about-quote-card {
        min-height: 180px;
        padding: 1.25rem 1.6rem;
        background:
            linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.82)),
            url("../../images/theme/jetta-payne/jetta-payne-about-quote-mic.png") right bottom / 160px auto no-repeat,
            rgba(4, 4, 4, 0.9);
    }

    .jp-about-quote-card blockquote {
        font-size: 1rem;
        letter-spacing: 0.22em;
    }

    .jp-about-quote-mark {
        font-size: 4rem;
    }
}


/* Jetta reviews page */
.hla-review-cta-section {
    position: relative;
    z-index: 2;
}

.hla-review-cta-bar {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(223, 7, 7, 0.45);
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .98), rgba(0, 0, 0, .86) 52%, rgba(0, 0, 0, .58)),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, .025) 0 1px, transparent 1px 8px),
        #050505;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.82), 0 18px 45px rgba(0, 0, 0, 0.38);
    padding: clamp(1rem, 2.2vw, 1.45rem);
}

.hla-review-cta-bar span {
    display: block;
    color: var(--jp-red);
    font-family: var(--jp-font);
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.hla-review-cta-bar h2 {
    margin: 0.2rem 0;
    color: #f5f7fb;
    font-family: var(--jp-font);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    line-height: 0.95;
    text-transform: uppercase;
}

.hla-review-cta-bar p {
    margin: 0;
    color: #c9ced5;
    font-weight: 600;
    line-height: 1.3;
}

.hla-review-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 7px;
    background: linear-gradient(180deg, #ff2b2b, #a40000);
    color: #fff;
    font-family: var(--jp-font);
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1;
    padding: 0.75rem 1.15rem;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 0 18px rgba(223, 7, 7, 0.38);
}

.hla-reviews-page {
        position: relative;
        z-index: 2;
        padding: 0 0 clamp(2rem, 5vw, 4rem);
    }

    .hla-review-alert,
    .hla-review-empty {
        margin-bottom: 1rem;
        border: 1px solid rgba(223, 7, 7, 0.5);
        border-radius: 8px;
        background: rgba(223, 7, 7, 0.12);
        color: #f5f7fb;
        font-weight: 700;
        padding: 0.85rem 1rem;
    }

    .hla-review-alert-error {
        border-color: rgba(255, 181, 52, 0.5);
        background: rgba(255, 181, 52, 0.12);
    }

    .hla-reviews-dashboard {
        display: grid;
        grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(260px, 0.75fr);
        gap: 0.85rem;
        margin-bottom: 1rem;
    }

    .hla-review-score-panel,
    .hla-review-featured-panel,
    .hla-review-proof-panel,
    .hla-review-card,
    .hla-review-empty {
        border: 1px solid var(--jp-border);
        border-radius: 8px;
        background:
            linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 38%),
            repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 7px),
            rgba(7, 8, 10, 0.94);
        box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.82), 0 18px 45px rgba(0, 0, 0, 0.38);
    }

    .hla-review-score-panel,
    .hla-review-featured-panel,
    .hla-review-proof-panel {
        padding: clamp(1rem, 2vw, 1.35rem);
    }

    .hla-review-score-label,
    .hla-review-panel-title,
    .hla-reviews-toolbar span {
        color: var(--jp-red);
        font-family: var(--jp-font);
        font-size: 0.95rem;
        font-weight: 800;
        line-height: 1;
        text-transform: uppercase;
    }

    .hla-review-score-row {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        gap: 0.9rem;
        align-items: center;
        margin: 0.45rem 0 0.9rem;
    }

    .hla-review-score-row strong {
        color: #f5f7fb;
        font-family: var(--jp-font);
        font-size: clamp(3.2rem, 7vw, 5rem);
        font-weight: 800;
        line-height: 0.85;
    }

    .hla-review-score-row p,
    .hla-review-featured-panel p,
    .hla-review-proof-panel p,
    .hla-review-card p {
        margin: 0;
        color: #c9ced5;
        font-weight: 600;
        line-height: 1.35;
    }

    .hla-review-stars {
        color: rgba(255, 255, 255, 0.18);
        font-size: 1.28rem;
        line-height: 1;
        white-space: nowrap;
    }

    .hla-review-stars .is-lit {
        color: #ffd21f;
        text-shadow: 0 0 11px rgba(255, 181, 52, 0.45);
    }

    .hla-review-breakdown {
        display: grid;
        gap: 0.45rem;
    }

    .hla-review-breakdown-row {
        display: grid;
        grid-template-columns: 56px minmax(0, 1fr) 42px;
        gap: 0.55rem;
        align-items: center;
        color: #c9ced5;
        font-family: var(--jp-font);
        font-weight: 700;
    }

    .hla-review-breakdown-bar {
        height: 8px;
        overflow: hidden;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.09);
    }

    .hla-review-breakdown-bar i {
        display: block;
        height: 100%;
        border-radius: inherit;
        background: var(--jp-red);
        box-shadow: 0 0 12px rgba(223, 7, 7, 0.65);
    }

    .hla-review-featured-panel h2,
    .hla-reviews-toolbar h2,
    .hla-review-card h3,
    .hla-review-modal .modal-title {
        margin: 0;
        color: #f5f7fb;
        font-family: var(--jp-font);
        font-weight: 800;
        line-height: 0.98;
        text-transform: uppercase;
    }

    .hla-review-featured-panel h2 {
        margin: 0.45rem 0;
        font-size: clamp(1.2rem, 2.1vw, 1.7rem);
    }

    .hla-review-featured-panel strong {
        display: block;
        margin-top: 0.65rem;
        color: #f5f7fb;
        font-family: var(--jp-font);
        font-size: 1.04rem;
        font-weight: 800;
        text-transform: uppercase;
    }

    .hla-review-proof-panel {
        display: grid;
        grid-template-columns: 58px minmax(0, 1fr);
        gap: 0.8rem;
        align-items: start;
    }

    .hla-review-proof-icon {
        color: var(--jp-red);
        font-size: 3.2rem;
        line-height: 1;
        filter: drop-shadow(0 0 14px rgba(223, 7, 7, 0.42));
    }

    .hla-reviews-toolbar {
        display: flex;
        gap: 1rem;
        align-items: center;
        justify-content: space-between;
        margin: 1.25rem 0 1rem;
    }

    .hla-reviews-toolbar h2 {
        margin-top: 0.15rem;
        font-size: clamp(1.8rem, 4vw, 3rem);
    }

    .hla-review-submit-button,
    .hla-review-modal-secondary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.55rem;
        min-height: 48px;
        border: 1px solid rgba(255, 255, 255, 0.24);
        border-radius: 7px;
        color: #fff;
        font-family: var(--jp-font);
        font-size: 1.05rem;
        font-weight: 800;
        line-height: 1;
        padding: 0.75rem 1.15rem;
        text-transform: uppercase;
    }

    .hla-review-submit-button {
        background: linear-gradient(180deg, #ff2b2b, #a40000);
        box-shadow: 0 0 18px rgba(223, 7, 7, 0.38);
    }

    .hla-review-submit-button:disabled {
        cursor: not-allowed;
        filter: grayscale(0.35);
        opacity: 0.62;
    }

    .hla-review-modal-secondary {
        background: rgba(255, 255, 255, 0.08);
    }

    .hla-review-swiper-wrap {
        position: relative;
        padding-bottom: 2.25rem;
    }

    .hla-review-swiper {
        overflow: hidden;
        padding: 0 1px;
    }

    .hla-review-swiper .swiper-wrapper {
        align-items: stretch;
    }

    .hla-review-swiper .swiper-slide {
        display: flex;
        height: auto;
    }

    .hla-review-card {
        position: relative;
        display: flex;
        width: 100%;
        min-height: clamp(290px, 28vw, 440px);
        flex-direction: column;
        gap: 0.75rem;
        padding: clamp(1rem, 2vw, 1.2rem);
    }

    .hla-review-card.is-featured {
        border-color: rgba(223, 7, 7, 0.72);
        box-shadow: inset 0 0 0 1px rgba(223, 7, 7, 0.35), 0 0 22px rgba(223, 7, 7, 0.2);
    }

    .hla-review-helpful {
        position: absolute;
        top: clamp(1rem, 2vw, 1.2rem);
        right: clamp(1rem, 2vw, 1.2rem);
        border: 1px solid rgba(223, 7, 7, 0.5);
        border-radius: 999px;
        color: var(--jp-red);
        font-family: var(--jp-font);
        font-size: 0.82rem;
        font-weight: 800;
        line-height: 1;
        padding: 0.35rem 0.55rem;
        text-transform: uppercase;
    }

    .hla-review-helpful + .hla-review-card-head {
        padding-right: 9.5rem;
    }

    .hla-review-card-head {
        display: grid;
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 0.75rem;
        align-items: center;
    }

    .hla-review-avatar {
        display: grid;
        width: 48px;
        height: 48px;
        overflow: hidden;
        place-items: center;
        border: 1px solid rgba(255, 255, 255, 0.22);
        border-radius: 50%;
        background: rgba(223, 7, 7, 0.18);
        color: #fff;
        font-family: var(--jp-font);
        font-size: 1.5rem;
        font-weight: 800;
    }

    .hla-review-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hla-review-card-head strong {
        display: block;
        color: #f5f7fb;
        font-family: var(--jp-font);
        font-size: 1.18rem;
        font-weight: 800;
        line-height: 1;
        text-transform: uppercase;
    }

    .hla-review-card h3 {
        font-size: 1.3rem;
    }

    .hla-review-image-strip {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.45rem;
        margin-top: auto;
    }

    .hla-review-image-strip figure {
        aspect-ratio: 4 / 3;
        overflow: hidden;
        margin: 0;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.06);
    }

    .hla-review-image-strip img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hla-review-card footer {
        display: flex;
        gap: 0.7rem;
        align-items: center;
        justify-content: space-between;
        margin-top: auto;
        color: #8f959d;
        font-family: var(--jp-font);
        font-size: 0.9rem;
        font-weight: 800;
        text-transform: uppercase;
    }

    .hla-review-card footer span {
        color: var(--jp-red);
    }

    .hla-review-swiper-button {
        position: absolute;
        z-index: 3;
        top: 50%;
        display: grid;
        width: 46px;
        height: 46px;
        place-items: center;
        border: 1px solid rgba(223, 7, 7, 0.55);
        border-radius: 7px;
        background: rgba(5, 8, 12, 0.88);
        color: var(--jp-red);
        font-size: 1.7rem;
        line-height: 1;
        transform: translateY(-50%);
        box-shadow: 0 0 18px rgba(223, 7, 7, 0.2);
    }

    .hla-review-swiper-button:hover,
    .hla-review-swiper-button:focus {
        background: rgba(223, 7, 7, 0.18);
        color: #fff;
    }

    .hla-review-swiper-prev {
        left: -0.45rem;
    }

    .hla-review-swiper-next {
        right: -0.45rem;
    }

    .hla-review-swiper-pagination {
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        justify-content: center;
        gap: 0.35rem;
    }

    .hla-review-swiper-pagination .swiper-pagination-bullet {
        width: 9px;
        height: 9px;
        margin: 0;
        background: rgba(255, 255, 255, 0.34);
        opacity: 1;
    }

    .hla-review-swiper-pagination .swiper-pagination-bullet-active {
        background: var(--jp-red);
        box-shadow: 0 0 10px rgba(223, 7, 7, 0.7);
    }

    .hla-review-modal .modal-content {
        max-height: calc(100dvh - 2rem);
        border: 1px solid var(--jp-border);
        border-radius: 8px;
        background:
            linear-gradient(135deg, rgba(223, 7, 7, 0.1), transparent 42%),
            rgba(7, 8, 10, 0.98);
        color: #f5f7fb;
    }

    .hla-review-modal form {
        display: flex;
        min-height: 0;
        max-height: inherit;
        flex-direction: column;
    }

    .hla-review-modal .modal-header,
    .hla-review-modal .modal-footer {
        flex: 0 0 auto;
        border-color: rgba(255, 255, 255, 0.14);
    }

    .hla-review-modal .modal-body {
        min-height: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .hla-review-modal label {
        display: block;
        margin-bottom: 0.35rem;
        color: var(--jp-red);
        font-family: var(--jp-font);
        font-weight: 800;
        text-transform: uppercase;
    }

    .hla-review-modal input,
    .hla-review-modal select,
    .hla-review-modal textarea {
        width: 100%;
        border: 1px solid rgba(255, 255, 255, 0.22);
        border-radius: 7px;
        background: rgba(255, 255, 255, 0.06);
        color: #fff;
        font: inherit;
        padding: 0.75rem 0.85rem;
    }

    .hla-review-modal select option {
        color: #111;
    }

    .hla-review-modal small {
        display: block;
        margin-top: 0.25rem;
        color: #ffd21f;
        font-weight: 700;
    }

    @media (max-width: 991.98px) {
        .hla-reviews-dashboard {
            grid-template-columns: 1fr 1fr;
        }

        .hla-review-proof-panel {
            grid-column: 1 / -1;
        }
    }

    @media (max-width: 767.98px) {
        .hla-review-cta-bar {
            align-items: stretch;
            flex-direction: column;
        }

        .hla-reviews-dashboard {
            grid-template-columns: 1fr;
        }

        .hla-reviews-toolbar {
            align-items: stretch;
            flex-direction: column;
        }

        .hla-review-swiper-button {
            display: none;
        }

        .hla-review-modal .modal-dialog {
            min-height: 100dvh;
            margin: 0;
        }

        .hla-review-modal .modal-content {
            max-height: 100dvh;
            border-radius: 0;
        }

        .hla-review-modal .modal-body {
            padding-bottom: 1rem;
        }

        .hla-review-modal .modal-footer {
            display: grid;
            grid-template-columns: 1fr;
            gap: 0.65rem;
        }

        .hla-review-modal .modal-footer > * {
            width: 100%;
            margin: 0;
        }
    }

.hla-review-feature-strip-section {
        position: relative;
        z-index: 2;
    }

    .hla-review-feature-strip {
        display: grid;
        grid-template-columns: minmax(220px, 0.4fr) minmax(0, 1fr);
        gap: 1rem;
        border: 1px solid var(--jp-border);
        border-radius: 8px;
        background:
            linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 38%),
            repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 7px),
            rgba(7, 8, 10, 0.94);
        padding: clamp(1rem, 2.2vw, 1.45rem);
    }

    .hla-review-feature-strip-copy h2,
    .hla-review-feature-strip-item h3 {
        margin: 0;
        color: #f5f7fb;
        font-family: var(--jp-font);
        font-weight: 800;
        line-height: 1;
        text-transform: uppercase;
    }

    .hla-review-feature-strip-copy h2 {
        margin-bottom: 0.5rem;
        font-size: clamp(1.35rem, 2.8vw, 2rem);
    }

    .hla-review-feature-strip-copy p,
    .hla-review-feature-strip-item p {
        margin: 0;
        color: #c9ced5;
        font-weight: 600;
        line-height: 1.3;
    }

    .hla-review-feature-strip-items {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.8rem;
    }

    .hla-review-feature-strip-item {
        border-left: 3px solid var(--jp-red);
        padding-left: 0.75rem;
    }

    .hla-review-feature-strip-item > div {
        width: 42px;
        margin-bottom: 0.45rem;
        color: var(--jp-red);
        font-size: 2rem;
        line-height: 1;
        filter: drop-shadow(0 0 13px rgba(223, 7, 7, 0.42));
    }

    .hla-review-feature-strip-item img {
        width: 100%;
        height: auto;
    }

    .hla-review-feature-strip-item h3 {
        margin-bottom: 0.25rem;
        font-size: 1.05rem;
    }

    @media (max-width: 991.98px) {
        .hla-review-feature-strip,
        .hla-review-feature-strip-items {
            grid-template-columns: 1fr;
        }
    }

.hla-review-media-section {
        position: relative;
        z-index: 2;
        height: 100%;
    }

    .hla-review-media-feature {
        position: relative;
        display: grid;
        grid-template-columns: minmax(0, 0.88fr) minmax(260px, 1fr);
        gap: clamp(1rem, 3vw, 1.8rem);
        align-items: stretch;
        height: 100%;
        overflow: hidden;
        border: 1px solid var(--jp-border);
        border-radius: 8px;
        background:
            linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 38%),
            repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 7px),
            rgba(7, 8, 10, 0.94);
        box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.82), 0 18px 45px rgba(0, 0, 0, 0.38);
        padding: clamp(1rem, 2.2vw, 1.45rem);
    }

    .hla-review-media-copy {
        display: flex;
        min-width: 0;
        flex-direction: column;
        justify-content: center;
    }

    .hla-review-media-eyebrow {
        margin-bottom: 0.25rem;
        color: var(--jp-red);
        font-family: var(--jp-font);
        font-size: 0.92rem;
        font-weight: 800;
        line-height: 1;
        text-transform: uppercase;
    }

    .hla-review-media-copy h2 {
        margin: 0 0 0.7rem;
        color: #f5f7fb;
        font-family: var(--jp-font);
        font-size: clamp(1.35rem, 3vw, 2.2rem);
        font-weight: 800;
        line-height: 0.95;
        text-transform: uppercase;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.75);
    }

    .hla-review-media-text,
    .hla-review-media-note p {
        color: #c9ced5;
        font-size: clamp(0.96rem, 1.2vw, 1.06rem);
        font-weight: 600;
        line-height: 1.35;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.75);
    }

    .hla-review-media-notes {
        display: grid;
        gap: 0.65rem;
        margin-top: 0.9rem;
    }

    .hla-review-media-note {
        border-left: 3px solid var(--jp-red);
        padding-left: 0.75rem;
    }

    .hla-review-media-note h3 {
        margin: 0 0 0.18rem;
        color: #f5f7fb;
        font-family: var(--jp-font);
        font-size: 1.05rem;
        font-weight: 800;
        line-height: 1;
        text-transform: uppercase;
    }

    .hla-review-media-note p {
        margin: 0;
    }

    .hla-review-media-images {
        position: relative;
        min-height: clamp(230px, 29vw, 360px);
    }

    .hla-review-media-main {
        height: 100%;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 7px;
        background:
            linear-gradient(135deg, rgba(223, 7, 7, 0.14), transparent 42%),
            rgba(12, 13, 15, 0.92);
        box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.72);
    }

    .hla-review-media-main img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hla-review-media-fallback {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        color: var(--jp-red);
        filter: drop-shadow(0 0 16px rgba(223, 7, 7, 0.42));
    }

    .hla-review-media-fallback svg {
        width: clamp(84px, 10vw, 124px);
        height: auto;
    }

    .hla-review-media-secondary {
        position: absolute;
        right: 0.85rem;
        bottom: 0.85rem;
        width: min(42%, 190px);
        aspect-ratio: 4 / 3;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: 7px;
        background: #0d0e10;
        box-shadow: 0 12px 26px rgba(0, 0, 0, 0.42), 0 0 24px rgba(223, 7, 7, 0.18);
    }

    .hla-review-media-secondary img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    @media (max-width: 767.98px) {
        .hla-review-media-feature {
            grid-template-columns: 1fr;
        }

        .hla-review-media-images {
            min-height: 280px;
        }
    }

.hla-review-text-section {
        position: relative;
        z-index: 2;
        height: 100%;
    }

    .hla-review-text-panel {
        display: grid;
        grid-template-columns: 82px minmax(0, 1fr);
        gap: clamp(1rem, 2.4vw, 1.5rem);
        align-items: flex-start;
        height: 100%;
        border: 1px solid var(--jp-border);
        border-radius: 8px;
        background:
            linear-gradient(135deg, rgba(223, 7, 7, 0.12), transparent 42%),
            repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 7px),
            rgba(7, 8, 10, 0.94);
        box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.82), 0 18px 45px rgba(0, 0, 0, 0.38);
        padding: clamp(1rem, 2.2vw, 1.45rem);
    }

    .hla-review-text-icon {
        color: var(--jp-red);
        filter: drop-shadow(0 0 16px rgba(223, 7, 7, 0.48));
    }

    .hla-review-text-icon img,
    .hla-review-text-icon svg {
        display: block;
        width: clamp(68px, 8vw, 96px);
        height: auto;
    }

    .hla-review-text-eyebrow {
        margin-bottom: 0.25rem;
        color: var(--jp-red);
        font-family: var(--jp-font);
        font-size: 0.92rem;
        font-weight: 800;
        line-height: 1;
        text-transform: uppercase;
    }

    .hla-review-text-copy h2 {
        margin: 0 0 0.55rem;
        color: #f5f7fb;
        font-family: var(--jp-font);
        font-size: clamp(1.35rem, 2.8vw, 2.1rem);
        font-weight: 800;
        line-height: 0.95;
        text-transform: uppercase;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.75);
    }

    .hla-review-text-copy p {
        margin: 0;
        color: #c9ced5;
        font-size: clamp(0.96rem, 1.2vw, 1.06rem);
        font-weight: 600;
        line-height: 1.35;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.75);
    }

    @media (max-width: 575.98px) {
        .hla-review-text-panel {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .hla-review-text-icon {
            display: flex;
            justify-content: center;
        }
    }

.hla-review-trust-section {
        position: relative;
        z-index: 2;
        align-self: flex-start;
        height: auto;
    }

    .hla-review-trust-panel {
        height: auto;
        border: 1px solid var(--jp-border);
        border-radius: 8px;
        background:
            linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 38%),
            repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 7px),
            rgba(7, 8, 10, 0.94);
        box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.82), 0 18px 45px rgba(0, 0, 0, 0.38);
        padding: clamp(1rem, 2vw, 1.35rem);
    }

    .hla-review-trust-header {
        display: flex;
        gap: 0.65rem;
        align-items: center;
        margin-bottom: 0.95rem;
    }

    .hla-review-trust-header span {
        width: 34px;
        height: 3px;
        background: var(--jp-red);
        box-shadow: 0 0 12px rgba(223, 7, 7, 0.65);
    }

    .hla-review-trust-header h2 {
        margin: 0;
        color: #f5f7fb;
        font-family: var(--jp-font);
        font-size: clamp(1.35rem, 2.6vw, 2rem);
        font-weight: 800;
        line-height: 0.95;
        text-transform: uppercase;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.75);
    }

    .hla-review-trust-intro {
        margin: -0.25rem 0 1rem;
        color: #c9ced5;
        font-size: 1rem;
        font-weight: 600;
        line-height: 1.35;
    }

    .hla-review-trust-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.7rem;
    }

    .hla-review-trust-item {
        min-height: 128px;
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 7px;
        background:
            linear-gradient(135deg, rgba(223, 7, 7, 0.1), transparent 46%),
            rgba(13, 14, 16, 0.88);
        padding: 0.9rem;
    }

    .hla-review-trust-icon {
        width: 48px;
        margin-bottom: 0.55rem;
        color: var(--jp-red);
        filter: drop-shadow(0 0 13px rgba(223, 7, 7, 0.45));
    }

    .hla-review-trust-icon img,
    .hla-review-trust-icon svg {
        display: block;
        width: 100%;
        height: auto;
    }

    .hla-review-trust-item h3 {
        margin: 0 0 0.3rem;
        color: #f5f7fb;
        font-family: var(--jp-font);
        font-size: clamp(1rem, 1.5vw, 1.18rem);
        font-weight: 800;
        line-height: 1;
        text-transform: uppercase;
    }

    .hla-review-trust-item p {
        margin: 0;
        color: #c9ced5;
        font-size: 0.95rem;
        font-weight: 600;
        line-height: 1.24;
    }

    @media (max-width: 575.98px) {
        .hla-review-trust-grid {
            grid-template-columns: 1fr;
        }
    }

.hla-review-verified-section {
        position: relative;
        z-index: 2;
        height: 100%;
    }

    .hla-review-verified-panel {
        position: relative;
        display: grid;
        grid-template-columns: minmax(86px, 0.34fr) minmax(0, 1fr);
        gap: clamp(1rem, 2.5vw, 1.6rem);
        align-items: center;
        height: 100%;
        overflow: hidden;
        border: 1px solid var(--jp-border);
        border-radius: 8px;
        background:
            linear-gradient(135deg, rgba(223, 7, 7, 0.14), transparent 42%),
            repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.024) 0 1px, transparent 1px 7px),
            rgba(7, 8, 10, 0.94);
        box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.82), 0 18px 45px rgba(0, 0, 0, 0.38);
        padding: clamp(1rem, 2.2vw, 1.45rem);
    }

    .hla-review-verified-mark {
        display: flex;
        justify-content: center;
        color: var(--jp-red);
        filter: drop-shadow(0 0 16px rgba(223, 7, 7, 0.48));
    }

    .hla-review-verified-mark img,
    .hla-review-verified-mark svg {
        width: clamp(72px, 9vw, 112px);
        height: auto;
    }

    .hla-review-verified-copy {
        position: relative;
        z-index: 2;
        min-width: 0;
    }

    .hla-review-verified-kicker {
        margin-bottom: 0.25rem;
        color: var(--jp-red);
        font-family: var(--jp-font);
        font-size: 0.92rem;
        font-weight: 800;
        line-height: 1;
        text-transform: uppercase;
    }

    .hla-review-verified-copy h2 {
        margin: 0 0 0.55rem;
        color: #f5f7fb;
        font-family: var(--jp-font);
        font-size: clamp(1.35rem, 2.8vw, 2.1rem);
        font-weight: 800;
        line-height: 0.95;
        text-transform: uppercase;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.75);
    }

    .hla-review-verified-text,
    .hla-review-verified-point p {
        color: #c9ced5;
        font-size: clamp(0.96rem, 1.2vw, 1.06rem);
        font-weight: 600;
        line-height: 1.35;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.75);
    }

    .hla-review-verified-list {
        display: grid;
        gap: 0.55rem;
        margin-top: 0.85rem;
    }

    .hla-review-verified-point {
        display: grid;
        grid-template-columns: 18px minmax(0, 1fr);
        gap: 0.5rem;
        align-items: start;
    }

    .hla-review-verified-point span {
        width: 12px;
        height: 12px;
        margin-top: 0.22rem;
        border-radius: 50%;
        background: var(--jp-red);
        box-shadow: 0 0 12px rgba(223, 7, 7, 0.7);
    }

    .hla-review-verified-point strong {
        display: block;
        color: #f5f7fb;
        font-family: var(--jp-font);
        font-size: 1rem;
        font-weight: 800;
        line-height: 1;
        text-transform: uppercase;
    }

    .hla-review-verified-point p {
        margin: 0.2rem 0 0;
    }

    .hla-review-verified-accent {
        position: absolute;
        right: 0.8rem;
        bottom: 0.8rem;
        width: min(28%, 150px);
        opacity: 0.2;
        pointer-events: none;
    }

    .hla-review-verified-accent img {
        display: block;
        width: 100%;
        height: auto;
    }

    @media (max-width: 575.98px) {
        .hla-review-verified-panel {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .hla-review-verified-point {
            text-align: left;
        }
    }



/* Jetta SirDru review custom sections */
.sir-review-layout {
    color: var(--sir-white);
}

.hla-reviews-custom-sections .row {
    --bs-gutter-y: 1rem;
}

.sir-review-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: .85rem;
}

.sir-review-section-head h2,
.sir-review-kicker,
.sir-review-cta-panel h2 {
    margin: 0;
    color: #efefef;
    font-family: var(--sir-display-font);
    font-weight: 400;
    letter-spacing: .18em;
    line-height: 1;
    text-transform: uppercase;
}

.sir-review-section-head h2 {
    font-size: clamp(1.35rem, 2.7vw, 2.25rem);
}

.sir-review-section-head h2::after,
.sir-review-kicker::after {
    display: block;
    width: 46px;
    height: 2px;
    margin-top: .5rem;
    background: var(--jp-red);
    box-shadow: 0 0 10px rgba(223, 7, 7, .45);
    content: "";
}

.sir-review-bigquote-card,
.sir-review-fan-card,
.sir-review-cta-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .98), rgba(0, 0, 0, .86) 52%, rgba(0, 0, 0, .58)),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, .025) 0 1px, transparent 1px 8px),
        #050505;
    box-shadow:
        inset 0 0 0 1px rgba(0, 0, 0, .82),
        0 20px 46px rgba(0, 0, 0, .34);
}

.sir-review-bigquote-card {
    min-height: clamp(190px, 21vw, 275px);
    display: grid;
    grid-template-columns: clamp(58px, 8vw, 110px) minmax(0, 1fr);
    align-items: center;
    gap: clamp(1rem, 2vw, 1.6rem);
    padding: clamp(1.2rem, 2.6vw, 2.2rem) clamp(1.2rem, 3.8vw, 3rem);
}

.sir-review-bigquote-bg,
.sir-review-cta-bg {
    position: absolute;
    inset: 0 0 0 auto;
    width: min(72%, 850px);
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: .46;
    filter: grayscale(1) contrast(1.1);
    mask-image: linear-gradient(90deg, transparent, #000 26%);
}

.sir-review-bigquote-mark {
    position: relative;
    z-index: 1;
    align-self: start;
    color: var(--jp-red);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(5rem, 11vw, 9rem);
    font-weight: 900;
    line-height: .68;
    text-shadow: 0 0 18px rgba(223, 7, 7, .38);
}

.sir-review-bigquote-copy {
    position: relative;
    z-index: 1;
    max-width: 830px;
}

.sir-review-kicker {
    margin-bottom: 1rem;
    color: var(--jp-red);
    font-size: clamp(.8rem, 1.15vw, 1.05rem);
}

.sir-review-bigquote blockquote {
    margin: 0;
    color: #ddd;
    font-family: var(--sir-copy-font);
    font-size: clamp(1.5rem, 3vw, 2.45rem);
    font-weight: 700;
    letter-spacing: .02em;
    line-height: 1.22;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .86);
}

.sir-review-bigquote cite {
    display: block;
    color: #bfbfbf;
    font-family: var(--sir-display-font);
    font-size: clamp(.92rem, 1.4vw, 1.15rem);
    font-style: normal;
    letter-spacing: .13em;
    line-height: 1.2;
    text-transform: uppercase;
}

.sir-review-bigquote-credit {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-top: 1.05rem;
}

.sir-review-bigquote-avatar {
    width: clamp(46px, 5vw, 64px);
    height: clamp(46px, 5vw, 64px);
    flex: 0 0 auto;
    border: 2px solid rgba(223, 7, 7, .72);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(223, 7, 7, .24);
    object-fit: cover;
}

.sir-review-bigquote-images {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin-top: 1rem;
}

.sir-review-bigquote-image {
    position: relative;
    display: block;
    width: clamp(74px, 8vw, 106px);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 6px;
    background: #050505;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .34);
}

.sir-review-bigquote-image::after {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, .28);
    color: #fff;
    font-family: bootstrap-icons;
    font-size: 1.4rem;
    content: "\F52A";
    opacity: 0;
    transition: opacity 180ms ease;
}

.sir-review-bigquote-image:hover::after,
.sir-review-bigquote-image:focus-visible::after {
    opacity: 1;
}

.sir-review-bigquote-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 180ms ease, filter 180ms ease;
}

.sir-review-bigquote-image:hover img,
.sir-review-bigquote-image:focus-visible img {
    transform: scale(1.05);
    filter: contrast(1.08);
}

.sir-review-fan-card {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    gap: .8rem;
    padding: clamp(1rem, 1.6vw, 1.25rem);
}

.sir-review-fan-card::after {
    position: absolute;
    top: .85rem;
    right: .85rem;
    color: rgba(255, 255, 255, .14);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 3.2rem;
    line-height: .8;
    content: "\201D";
}

.sir-review-stars {
    display: flex;
    gap: .18rem;
    color: var(--jp-red);
    font-size: .95rem;
    line-height: 1;
    text-shadow: 0 0 10px rgba(223, 7, 7, .4);
}

.sir-review-fan-card blockquote {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #d2d2d2;
    font-family: var(--sir-copy-font);
    font-size: clamp(.98rem, 1.2vw, 1.08rem);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.36;
}

.sir-review-fan-card footer {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: .75rem;
    align-items: start;
    align-content: start;
    margin-top: auto;
    min-height: clamp(96px, 8vw, 126px);
}

.sir-review-avatar {
    width: 48px;
    height: 48px;
    display: grid;
    overflow: hidden;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    color: #cfcfcf;
}

.sir-review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.04);
}

.sir-review-fan-card strong,
.sir-review-fan-card span,
.sir-review-stat p,
.sir-review-moments-head p,
.sir-review-moment figcaption span,
.sir-review-cta-panel p {
    font-family: var(--sir-copy-font);
    font-weight: 700;
    letter-spacing: 0;
}

.sir-review-fan-card strong {
    display: block;
    color: #fff;
    font-size: .94rem;
    line-height: 1.08;
    text-transform: uppercase;
}

.sir-review-fan-card span {
    display: block;
    color: #a8a8a8;
    font-size: .82rem;
    line-height: 1.15;
}

.sir-review-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
}

.sir-review-stat {
    min-height: 190px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
    border-right: 1px solid rgba(255, 255, 255, .2);
    padding: clamp(.85rem, 2vw, 1.35rem);
    text-align: center;
}

.sir-review-stat:last-child {
    border-right: 0;
}

.sir-review-stat-icon {
    width: clamp(48px, 5vw, 72px);
    height: clamp(48px, 5vw, 72px);
    display: grid;
    place-items: center;
    margin-bottom: .75rem;
    color: var(--jp-red);
    font-size: clamp(2.6rem, 4vw, 4rem);
    filter: drop-shadow(0 0 14px rgba(223, 7, 7, .42));
}

.sir-review-stat-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sir-review-stat strong {
    display: block;
    color: #e7e7e7;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

.sir-review-stat span {
    display: block;
    margin-top: .35rem;
    color: #f0f0f0;
    font-size: clamp(1rem, 1.6vw, 1.32rem);
    letter-spacing: .14em;
    line-height: 1;
    text-transform: uppercase;
}

.sir-review-stat p {
    max-width: 180px;
    margin: .45rem auto 0;
    color: #c7c7c7;
    font-size: .98rem;
    line-height: 1.28;
}

.sir-review-moments-head p {
    margin: 0;
    color: #cfcfcf;
    font-size: .96rem;
    line-height: 1.25;
    text-align: right;
    text-transform: uppercase;
}

.sir-review-moments-head p strong,
.sir-review-moments-head p b {
    color: var(--jp-red);
}

.sir-review-moment {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 7px;
    background: #050505;
    aspect-ratio: 4 / 3;
}

.sir-review-moment-link {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.sir-review-moment-link::after {
    position: absolute;
    inset: .7rem;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .34);
    color: #fff;
    content: "\F52E";
    font-family: "bootstrap-icons";
    font-size: 1.75rem;
    opacity: 0;
    text-shadow: 0 0 18px rgba(223, 7, 7, .58);
    transition: opacity 160ms ease, background 160ms ease;
}

.sir-review-moment-link:hover::after,
.sir-review-moment-link:focus-visible::after {
    background: rgba(0, 0, 0, .38);
    opacity: 1;
}

.sir-review-moment img,
.sir-review-moment-fallback {
    width: 100%;
    height: 100%;
}

.sir-review-moment img {
    display: block;
    object-fit: cover;
    filter: grayscale(1) contrast(1.08);
}

.sir-review-moment-fallback {
    display: grid;
    place-items: center;
    color: var(--jp-red);
    font-size: 3rem;
    background: rgba(255, 255, 255, .05);
}

.sir-review-moment figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    gap: .15rem;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .88));
    padding: 2.8rem .85rem .75rem;
}

.sir-review-moment figcaption strong {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 400;
    letter-spacing: .08em;
    line-height: 1.1;
    text-transform: uppercase;
}

.sir-review-moment figcaption span {
    color: #d2d2d2;
    font-size: .9rem;
    line-height: 1.2;
}

.goverlay {
    background: rgba(0, 0, 0, .92);
}

.glightbox-clean .gslide-media {
    border: 1px solid rgba(255, 255, 255, .18);
    background: #050505;
    box-shadow: 0 0 48px rgba(223, 7, 7, .18), 0 24px 80px rgba(0, 0, 0, .62);
}

.glightbox-clean.sir-dru-gallery-lightbox .gslide-media {
    border: 1px solid rgba(223, 7, 7, .68);
    background:
        linear-gradient(135deg, rgba(223, 7, 7, .12), transparent 34%),
        #050505;
    box-shadow:
        0 0 58px rgba(223, 7, 7, .28),
        0 0 0 1px rgba(0, 0, 0, .72),
        0 26px 90px rgba(0, 0, 0, .72);
}

.glightbox-clean .gslide-description {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .98), rgba(0, 0, 0, .86)),
        #050505;
}

.glightbox-clean.sir-dru-gallery-lightbox .gslide-description {
    border-top: 1px solid rgba(223, 7, 7, .48);
    background:
        linear-gradient(90deg, rgba(223, 7, 7, .22), rgba(22, 0, 0, .72) 38%, rgba(0, 0, 0, .94)),
        rgba(3, 3, 3, .94);
}

.glightbox-clean .gslide-title {
    color: #fff;
    font-family: var(--sir-display-font);
    font-weight: 400;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.glightbox-clean .gslide-desc {
    color: var(--jp-red);
    font-family: var(--sir-copy-font);
    font-weight: 700;
}

.glightbox-clean .gclose,
.glightbox-clean .gnext,
.glightbox-clean .gprev {
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(0, 0, 0, .62);
    color: #fff;
}

.glightbox-clean .gclose:hover,
.glightbox-clean .gnext:hover,
.glightbox-clean .gprev:hover {
    background: rgba(223, 7, 7, .28);
}

.sir-review-cta-card {
    min-height: clamp(180px, 18vw, 245px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(120px, 16vw, 210px) minmax(0, 1fr);
    align-items: center;
    gap: clamp(.85rem, 2vw, 1.5rem);
    padding: clamp(1.1rem, 2.4vw, 2rem);
}

.sir-review-cta-bg {
    width: 100%;
    opacity: .28;
    mask-image: none;
}

.sir-review-cta-panel,
.sir-review-cta-badge {
    position: relative;
    z-index: 1;
}

.sir-review-cta-panel h2 {
    font-size: clamp(1.75rem, 3.4vw, 3rem);
}

.sir-review-cta-panel p {
    max-width: 410px;
    margin: .55rem 0 1rem;
    color: #cfcfcf;
    font-size: .98rem;
    line-height: 1.35;
}

.sir-review-cta-panel-end {
    text-align: center;
}

.sir-review-cta-panel-end p {
    margin-inline: auto;
}

.sir-review-cta-button {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    width: min(100%, 310px);
    border: 1px solid var(--jp-red);
    background: rgba(0, 0, 0, .42);
    color: #fff;
    font-size: .95rem;
    letter-spacing: .12em;
    line-height: 1;
    padding: .75rem 1rem;
    text-transform: uppercase;
    transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.sir-review-cta-button:hover,
.sir-review-cta-button:focus {
    border-color: #ff2a34;
    background: rgba(223, 7, 7, .14);
    color: #fff;
}

.sir-review-cta-button i {
    color: var(--jp-red);
}

.sir-review-cta-badge {
    width: min(100%, 190px);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    justify-self: center;
    border: 2px solid var(--jp-red);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(223, 7, 7, .16), rgba(0, 0, 0, .52));
    box-shadow:
        0 0 22px rgba(223, 7, 7, .42),
        inset 0 0 22px rgba(223, 7, 7, .18);
}

.sir-review-cta-badge img {
    width: 74%;
    height: 74%;
    object-fit: contain;
}

.sir-review-cta-badge span {
    color: #fff;
    font-size: clamp(1.4rem, 2.8vw, 2.4rem);
    line-height: .92;
    text-align: center;
    text-transform: uppercase;
}

@media (max-width: 991.98px) {
    .sir-review-stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sir-review-stat:nth-child(2n) {
        border-right: 0;
    }

    .sir-review-stat:nth-child(n + 3) {
        border-top: 1px solid rgba(255, 255, 255, .2);
    }

    .sir-review-cta-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .sir-review-cta-panel p {
        margin-inline: auto;
    }

    .sir-review-cta-badge {
        order: -1;
        width: min(48vw, 170px);
    }
}

/* Jetta discography listing, ported from the Sir Dru music layout */
.sir-media-layouts {
    position: relative;
    z-index: 1;
    width: min(1536px, calc(100% - 8rem));
    margin-right: auto;
    margin-left: auto;
    color: var(--jp-white);
}

.sir-media-card {
    overflow: hidden;
    border: 1px solid var(--jp-border);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .035), transparent 36%),
        linear-gradient(180deg, rgba(15, 15, 15, .9), rgba(3, 3, 3, .9));
    box-shadow: inset 0 0 32px rgba(255, 255, 255, .025), 0 18px 42px rgba(0, 0, 0, .22);
    padding: clamp(1.1rem, 2vw, 1.7rem);
}

.sir-media-kicker {
    display: inline-block;
    margin-bottom: .85rem;
    color: #f4f4f4;
    font-size: clamp(1rem, 1.5vw, 1.45rem);
    font-weight: 800;
    letter-spacing: .16em;
    line-height: 1.2;
    text-transform: uppercase;
}

.sir-media-kicker::after {
    content: "";
    display: block;
    width: 46px;
    height: 2px;
    margin-top: .45rem;
    background: var(--jp-red);
}

.sir-media-title,
.sir-media-list-title,
.sir-media-join h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.28rem, 2vw, 1.8rem);
    font-weight: 800;
    letter-spacing: .1em;
    line-height: 1.1;
    text-transform: uppercase;
}

.sir-media-meta,
.sir-media-copy,
.sir-media-time,
.sir-media-video-row small,
.sir-media-event-card small,
.sir-media-join p {
    color: #c9c9c9;
    font-family: var(--jp-font);
    font-weight: 700;
    letter-spacing: 0;
}

.sir-media-meta {
    margin-top: .55rem;
    font-size: .95rem;
    text-transform: uppercase;
}

.sir-media-meta span {
    margin: 0 .5rem;
    color: #7e7e7e;
}

.sir-media-copy {
    max-width: 440px;
    margin: .85rem 0 1.25rem;
    font-size: 1rem;
    line-height: 1.45;
}

.sir-video-library {
    margin-top: clamp(1rem, 2.5vw, 2.4rem);
}

.sir-video-library-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: clamp(1rem, 2vw, 1.45rem);
}

.sir-video-library-head .sir-media-kicker {
    margin-bottom: .45rem;
}

.sir-video-count,
.sir-video-card-copy p {
    font-family: var(--jp-font);
    font-weight: 700;
    letter-spacing: 0;
}

.sir-video-count {
    color: #cfcfcf;
    font-size: .95rem;
    text-transform: uppercase;
}

.sir-video-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(.85rem, 1.6vw, 1.25rem);
}

.sir-video-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 6px;
    background:
        linear-gradient(135deg, rgba(223, 7, 7, .08), transparent 36%),
        linear-gradient(180deg, rgba(14, 14, 14, .9), rgba(3, 3, 3, .9));
    box-shadow: inset 0 0 32px rgba(255, 255, 255, .025), 0 18px 42px rgba(0, 0, 0, .2);
}

.sir-video-launch {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    border: 0;
    background: #050505;
    color: #fff;
    padding: 0;
    aspect-ratio: 16 / 9;
}

.sir-video-launch img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 180ms ease, filter 180ms ease;
}

.sir-video-launch:hover img,
.sir-video-launch:focus img {
    transform: scale(1.035);
    filter: contrast(1.08);
}

.sir-video-launch-play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: clamp(2.2rem, 4.8vw, 3.6rem);
    text-shadow: 0 0 22px rgba(0, 0, 0, .72);
}

.sir-video-launch-play i {
    display: none;
}

.sir-video-launch-play::before {
    content: "";
    display: grid;
    place-items: center;
    width: clamp(58px, 7vw, 78px);
    height: clamp(58px, 7vw, 78px);
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 50%;
    background: rgba(0, 0, 0, .28);
}

.sir-video-launch-play::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: .22em;
    border-top: .24em solid transparent;
    border-bottom: .24em solid transparent;
    border-left: .36em solid currentColor;
    transform: translate(-50%, -50%);
}

.sir-video-card-copy {
    padding: clamp(.9rem, 1.5vw, 1.2rem);
}

.sir-video-card-copy h3 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.1rem, 1.8vw, 1.45rem);
    font-weight: 900;
    letter-spacing: .08em;
    line-height: 1.1;
    text-transform: uppercase;
}

.sir-video-card-copy p {
    margin: .55rem 0 0;
    color: #c9c9c9;
    font-size: .98rem;
    line-height: 1.35;
}

.sir-video-empty-card {
    margin-top: 1rem;
}

.sir-music-discography {
    margin-top: clamp(1rem, 2.5vw, 2.4rem);
}

.sir-music-discography-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: clamp(1rem, 2vw, 1.45rem);
}

.sir-music-discography-head .sir-media-kicker {
    margin-bottom: .45rem;
}

.sir-music-album-count,
.sir-music-album-meta,
.sir-music-track,
.sir-music-empty {
    font-family: var(--jp-font);
    font-weight: 700;
    letter-spacing: 0;
}

.sir-music-album-count {
    color: #cfcfcf;
    font-size: .95rem;
    text-transform: uppercase;
}

.sir-music-album-list {
    display: grid;
    gap: .75rem;
}

.sir-music-album {
    display: grid;
    grid-template-columns: minmax(170px, 300px) minmax(220px, .92fr) minmax(280px, 1fr);
    gap: clamp(1rem, 2vw, 2rem);
    align-items: stretch;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 6px;
    background:
        linear-gradient(100deg, rgba(223, 7, 7, .08), transparent 32%),
        linear-gradient(180deg, rgba(13, 13, 13, .9), rgba(3, 3, 3, .88));
    box-shadow: inset 0 0 34px rgba(255, 255, 255, .025), 0 18px 40px rgba(0, 0, 0, .2);
    padding: clamp(.8rem, 1.6vw, 1.2rem);
}

.sir-music-album-cover-wrap {
    min-width: 0;
}

.sir-music-album-cover {
    width: 100%;
    height: 100%;
    min-height: 180px;
    display: block;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 4px;
    object-fit: cover;
}

.sir-music-album-info {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: flex-start;
    border-right: 1px solid rgba(255, 255, 255, .14);
    padding-right: clamp(1rem, 2vw, 1.8rem);
}

.sir-music-album-year {
    color: var(--jp-red);
    font-size: clamp(.98rem, 1.3vw, 1.15rem);
    letter-spacing: .28em;
    line-height: 1;
}

.sir-music-album-info h3 {
    margin: .55rem 0 .85rem;
    color: #f2f2f2;
    font-size: clamp(1.65rem, 3.1vw, 2.9rem);
    font-weight: 900;
    letter-spacing: .08em;
    line-height: 1.02;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.sir-music-album-type {
    color: var(--jp-red);
    font-size: clamp(.95rem, 1.15vw, 1.08rem);
    letter-spacing: .22em;
    line-height: 1;
    text-transform: uppercase;
}

.sir-music-album-info p {
    max-width: 420px;
    margin: .95rem 0 0;
    color: #cfcfcf;
    font-family: var(--jp-font);
    font-size: clamp(.98rem, 1.2vw, 1.1rem);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.35;
}

.sir-music-album-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem .9rem;
    margin-top: .9rem;
    color: #9f9f9f;
    font-size: .92rem;
    text-transform: uppercase;
}

.sir-music-track-panel {
    min-width: 0;
    padding: clamp(.5rem, 1vw, .75rem) 0;
}

.sir-music-track-heading {
    margin-bottom: .6rem;
    color: #f2f2f2;
    font-size: .95rem;
    letter-spacing: .2em;
    line-height: 1;
    text-transform: uppercase;
}

.sir-music-track-heading::after {
    content: "";
    display: block;
    width: 52px;
    height: 1px;
    margin-top: .38rem;
    background: rgba(255, 255, 255, .28);
}

.sir-music-track-list {
    display: grid;
    gap: .35rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sir-music-track {
    display: grid;
    grid-template-columns: 2.2rem minmax(0, 1fr) auto 36px;
    gap: .7rem;
    align-items: center;
    min-height: 34px;
    color: #d4d4d4;
    font-size: clamp(.98rem, 1.08vw, 1.08rem);
    line-height: 1.15;
}

.sir-music-track-number {
    color: #8d8d8d;
}

.sir-music-track-name {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sir-music-track-length {
    color: #9d9d9d;
    font-size: .9rem;
    white-space: nowrap;
}

.sir-music-track-play {
    position: relative;
    width: 32px;
    height: 32px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 50%;
    background: rgba(0, 0, 0, .32);
    color: #fff;
    font-size: 1rem;
    line-height: 1;
    transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.sir-music-track-play i {
    display: none;
}

.sir-music-track-play::before {
    content: "";
    width: 0;
    height: 0;
    margin-left: 2px;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 9px solid currentColor;
}

.sir-music-track-play.is-playing::before {
    width: 9px;
    height: 12px;
    margin-left: 0;
    border: 0;
    background: linear-gradient(90deg, currentColor 0 3px, transparent 3px 6px, currentColor 6px 9px);
}

.sir-music-track-play:hover,
.sir-music-track-play:focus,
.sir-music-track-play.is-playing {
    border-color: var(--jp-red);
    background: rgba(223, 7, 7, .13);
    color: #fff;
}

.sir-music-track-play-disabled {
    opacity: .42;
}

.sir-music-empty {
    margin: .8rem 0 0;
    color: #aaa;
    font-size: .98rem;
}

.sir-music-empty-card {
    margin-top: 1rem;
}

@media (max-width: 991.98px) {
    .sir-media-layouts {
        width: min(1140px, calc(100% - 3rem));
    }

    .sir-video-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sir-music-discography-head,
    .sir-music-album {
        align-items: stretch;
    }

    .sir-music-album {
        grid-template-columns: minmax(140px, 220px) minmax(0, 1fr);
    }

    .sir-music-track-panel {
        grid-column: 1 / -1;
        border-top: 1px solid rgba(255, 255, 255, .12);
        padding-top: 1rem;
    }

    .sir-music-album-info {
        border-right: 0;
        padding-right: 0;
    }
}

@media (max-width: 767.98px) {
    .sir-media-layouts {
        width: min(100% - 1.5rem, 560px);
    }

    .sir-review-bigquote-card {
        grid-template-columns: 1fr;
        gap: .25rem;
        padding: 1.1rem;
    }

    .sir-review-bigquote-bg {
        width: 100%;
        opacity: .25;
        mask-image: linear-gradient(180deg, transparent, #000 18%);
    }

    .sir-review-bigquote-mark {
        font-size: 4.5rem;
    }

    .sir-review-bigquote blockquote {
        font-size: clamp(1.25rem, 7vw, 1.8rem);
    }

    .sir-review-section-head,
    .sir-review-moments-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .sir-review-moments-head p {
        text-align: left;
    }

    .sir-review-stat-grid {
        grid-template-columns: 1fr;
    }

    .sir-review-stat,
    .sir-review-stat:nth-child(2n) {
        border-right: 0;
    }

    .sir-review-stat + .sir-review-stat {
        border-top: 1px solid rgba(255, 255, 255, .2);
    }

    .sir-media-card {
        padding: 1rem;
    }

    .sir-video-library-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .sir-video-grid {
        grid-template-columns: 1fr;
    }

    .sir-music-discography-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .sir-music-album {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .sir-music-album-cover {
        height: auto;
        min-height: 0;
        aspect-ratio: 1 / 1;
    }

    .sir-music-track {
        grid-template-columns: 2rem minmax(0, 1fr) 34px;
    }

    .sir-music-track-length {
        grid-column: 2;
        grid-row: 2;
        margin-top: -.25rem;
    }

    .sir-music-track-play {
        grid-column: 3;
        grid-row: 1 / span 2;
    }
}

/* Jetta Payne community listing sections */
.jp-community-section {
    position: relative;
    padding: clamp(1.5rem, 3vw, 2.75rem) 0;
    color: var(--jp-white);
}

.jp-community-heading {
    display: grid;
    grid-template-columns: auto minmax(2rem, 1fr) auto;
    align-items: center;
    gap: .85rem;
    margin-bottom: .65rem;
}

.jp-community-heading-title,
.jp-community-view-all,
.jp-community-outline-button,
.jp-community-row-link,
.jp-community-meta,
.jp-community-featured-label,
.jp-community-featured-review cite,
.jp-community-review-row cite {
    font-family: var(--jp-font);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
}

.jp-community-heading-title {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    color: var(--jp-red);
}

.jp-community-heading-title h2 {
    margin: 0;
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    line-height: 1;
}

.jp-community-heading-icon,
.jp-community-heading-icon svg {
    width: 1.1rem;
    height: 1.1rem;
}

.jp-community-heading-icon {
    display: inline-flex;
    color: var(--jp-red);
}

.jp-community-heading-icon svg,
.jp-community-view-all svg,
.jp-community-outline-button svg,
.jp-community-row-link svg {
    display: block;
    fill: currentColor;
}

.jp-community-heading-line {
    height: 1px;
    background: linear-gradient(90deg, rgba(223, 7, 7, .9), rgba(223, 7, 7, .5), transparent);
}

.jp-community-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: .65rem;
    color: #d8d8d8;
    font-size: .7rem;
    text-decoration: none;
}

.jp-community-view-all svg {
    width: 1.4rem;
    height: 1.4rem;
    color: var(--jp-red);
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.jp-community-view-all:hover,
.jp-community-view-all:focus {
    color: #fff;
}

.jp-community-blog-stack,
.jp-community-review-stack {
    display: grid;
    gap: .55rem;
}

.jp-community-blog-row,
.jp-community-featured-review,
.jp-community-review-row {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(223, 7, 7, .42);
    border-radius: 7px;
    background:
        linear-gradient(90deg, rgba(12, 0, 0, .96), rgba(9, 9, 9, .9)),
        var(--jp-panel-strong);
    box-shadow: 0 18px 46px rgba(0, 0, 0, .42);
}

.jp-community-blog-row {
    display: grid;
    grid-template-columns: minmax(180px, 30%) minmax(0, 1fr) auto;
    align-items: start;
    min-height: 108px;
}

.jp-community-blog-image {
    display: block;
    min-height: 108px;
    border-right: 1px solid rgba(223, 7, 7, .45);
    background: #120202;
}

.jp-community-blog-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 108px;
    object-fit: cover;
    filter: saturate(1.15) contrast(1.1);
}

.jp-community-blog-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: flex-start;
    padding: .9rem 1.35rem;
}

.jp-community-blog-copy h3 {
    margin: 0 0 .35rem;
    color: #d7d7d7;
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    font-weight: 900;
    line-height: 1.05;
    text-transform: uppercase;
}

.jp-community-blog-copy p {
    max-width: 520px;
    margin: 0;
    color: #c5c5c5;
    font-size: clamp(.82rem, 1.2vw, .96rem);
    font-weight: 600;
    line-height: 1.25;
}

.jp-community-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    margin-top: .5rem;
    color: var(--jp-red);
    font-size: .73rem;
    line-height: 1.1;
}

.jp-community-outline-button {
    align-self: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .85rem;
    min-width: 150px;
    min-height: 38px;
    margin-right: 1.15rem;
    padding: .55rem 1rem;
    border: 1px solid var(--jp-red);
    border-radius: 5px;
    color: #f0f0f0;
    background: rgba(0, 0, 0, .28);
    font-size: .75rem;
    line-height: 1;
    text-decoration: none;
}

.jp-community-outline-button svg {
    width: 1rem;
    height: 1rem;
    color: var(--jp-red);
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.4;
}

.jp-community-outline-button:hover,
.jp-community-outline-button:focus {
    color: #fff;
    border-color: #ff2424;
    background: rgba(223, 7, 7, .18);
}

.jp-community-blog-row .jp-community-outline-button {
    align-self: start;
    margin-top: .9rem;
}

.jp-community-featured-review {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(260px, .9fr);
    align-items: center;
    min-height: clamp(210px, 24vw, 285px);
    padding: clamp(1.1rem, 2.5vw, 1.75rem);
}

.jp-community-featured-review::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .96) 0%, rgba(0, 0, 0, .58) 48%, rgba(0, 0, 0, .86) 100%),
        radial-gradient(circle at 64% 24%, rgba(223, 7, 7, .34), transparent 34%);
    pointer-events: none;
}

.jp-community-featured-review-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .62;
    filter: saturate(1.28) contrast(1.12);
}

.jp-community-featured-quote,
.jp-community-featured-copy {
    position: relative;
    z-index: 1;
}

.jp-community-featured-label {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    margin-bottom: .6rem;
    color: var(--jp-red);
    font-size: .78rem;
}

.jp-community-featured-quote blockquote {
    max-width: 540px;
    margin: 0;
    color: #d8d8d8;
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 900;
    line-height: .98;
    text-transform: uppercase;
    text-shadow: 0 0 18px rgba(0, 0, 0, .8);
}

.jp-community-featured-quote cite,
.jp-community-review-row cite {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: .55rem;
    margin-top: .95rem;
    font-style: normal;
}

.jp-community-featured-quote cite strong,
.jp-community-review-row cite strong {
    color: var(--jp-red);
    font-size: .88rem;
}

.jp-community-featured-quote cite span,
.jp-community-review-row cite span {
    color: #d7d7d7;
    font-size: .72rem;
    text-transform: none;
}

.jp-community-featured-copy {
    justify-self: end;
    max-width: 300px;
}

.jp-community-featured-copy p {
    margin: 0 0 1.2rem;
    color: #d8d8d8;
    font-size: clamp(.88rem, 1.25vw, 1rem);
    font-weight: 700;
    line-height: 1.45;
}

.jp-community-featured-copy .jp-community-outline-button {
    margin-right: 0;
    min-width: 190px;
}

.jp-community-review-stack {
    margin-top: .55rem;
}

.jp-community-review-row {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) auto;
    align-items: center;
    min-height: 58px;
    padding: .6rem 1rem .6rem 1.35rem;
}

.jp-community-review-mark {
    color: var(--jp-red);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 4rem;
    font-weight: 900;
    line-height: .6;
}

.jp-community-review-row p {
    margin: 0;
    color: #d3d3d3;
    font-size: .88rem;
    font-weight: 700;
    line-height: 1.25;
}

.jp-community-review-row cite {
    margin-top: .2rem;
}

.jp-community-row-link {
    display: inline-flex;
    align-items: center;
    gap: .9rem;
    padding-left: 1rem;
    color: #d7d7d7;
    font-size: .65rem;
    text-decoration: none;
    white-space: nowrap;
}

.jp-community-row-link svg {
    width: 1.45rem;
    height: 1.45rem;
    color: var(--jp-red);
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.jp-community-row-link:hover,
.jp-community-row-link:focus {
    color: #fff;
}

@media (max-width: 991.98px) {
    .jp-community-blog-row {
        grid-template-columns: minmax(150px, 34%) minmax(0, 1fr);
    }

    .jp-community-blog-row .jp-community-outline-button {
        grid-column: 2;
        justify-self: start;
        margin: 0 0 1rem 1.35rem;
    }

    .jp-community-featured-review {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .jp-community-featured-copy {
        justify-self: start;
        max-width: 520px;
    }

    .jp-community-review-row {
        grid-template-columns: 56px minmax(0, 1fr);
    }

    .jp-community-row-link {
        grid-column: 2;
        justify-self: start;
        padding: .35rem 0 0;
    }
}

@media (max-width: 767.98px) {
    .jp-community-heading {
        grid-template-columns: 1fr;
        gap: .55rem;
    }

    .jp-community-heading-line {
        width: 100%;
    }

    .jp-community-view-all {
        justify-content: flex-start;
    }

    .jp-community-blog-row {
        grid-template-columns: 1fr;
    }

    .jp-community-blog-image {
        border-right: 0;
        border-bottom: 1px solid rgba(223, 7, 7, .45);
    }

    .jp-community-blog-image img {
        aspect-ratio: 16 / 8;
        min-height: 0;
    }

    .jp-community-blog-row .jp-community-outline-button {
        grid-column: auto;
    }

    .jp-community-featured-review {
        padding: 1rem;
    }

    .jp-community-featured-quote blockquote {
        font-size: clamp(1.45rem, 9vw, 2.3rem);
    }
}

@media (max-width: 575.98px) {
    .jp-community-review-row {
        grid-template-columns: 1fr;
        gap: .35rem;
    }

    .jp-community-review-mark {
        font-size: 3rem;
    }

    .jp-community-row-link {
        grid-column: auto;
    }
}

.jp-blog-section {
    position: relative;
    z-index: 1;
    padding: clamp(1rem, 2.6vw, 2rem) 0 0;
}

.jp-blog-featured-section {
    padding-top: clamp(2rem, 5vw, 4.5rem);
}

.jp-blog-featured-card,
.jp-blog-list-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(223, 7, 7, .54);
    border-radius: 7px;
    background:
        linear-gradient(90deg, rgba(2, 0, 0, .98), rgba(10, 10, 10, .91)),
        var(--jp-panel-strong);
    box-shadow: 0 18px 46px rgba(0, 0, 0, .46);
}

.jp-blog-featured-card::before,
.jp-blog-list-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 19% 18%, rgba(223, 7, 7, .22), transparent 20rem),
        linear-gradient(90deg, rgba(223, 7, 7, .08), transparent 46%);
    pointer-events: none;
}

.jp-blog-section-title {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    margin: .65rem 1rem .6rem;
    color: var(--jp-red);
    text-transform: uppercase;
}

.jp-blog-listing-title {
    margin: 0 0 .75rem;
}

.jp-blog-section-title h2 {
    margin: 0;
    color: var(--jp-red);
    font-size: clamp(1.02rem, 1.7vw, 1.35rem);
    font-weight: 900;
    line-height: 1;
}

.jp-blog-title-icon svg {
    display: block;
    width: 1.15rem;
    height: 1.15rem;
    fill: currentColor;
}

.jp-blog-listing-title .jp-blog-title-icon svg {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 2.3;
}

.jp-blog-featured-layout,
.jp-blog-list-card {
    display: grid;
    align-items: center;
    gap: clamp(1rem, 2vw, 1.55rem);
}

.jp-blog-featured-layout {
    position: relative;
    z-index: 1;
    grid-template-columns: minmax(280px, .72fr) minmax(0, 1fr) auto;
    padding: 0 1rem 1rem;
}

.jp-blog-featured-image,
.jp-blog-list-image {
    display: block;
    overflow: hidden;
    border: 1px solid rgba(223, 7, 7, .5);
    border-radius: 6px;
    background: #120202;
}

.jp-blog-featured-image img,
.jp-blog-list-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.18) contrast(1.12);
    transition: transform .22s ease, filter .22s ease;
}

.jp-blog-featured-image img {
    aspect-ratio: 16 / 8.3;
}

.jp-blog-list-image img {
    aspect-ratio: 16 / 6.4;
}

.jp-blog-featured-image:hover img,
.jp-blog-featured-image:focus img,
.jp-blog-list-image:hover img,
.jp-blog-list-image:focus img {
    transform: scale(1.035);
    filter: saturate(1.32) contrast(1.16);
}

.jp-blog-featured-copy,
.jp-blog-list-copy {
    min-width: 0;
}

.jp-blog-featured-copy h3,
.jp-blog-list-copy h3 {
    margin: 0 0 .45rem;
    color: #d7d7d7;
    font-weight: 900;
    line-height: 1.05;
    text-transform: uppercase;
}

.jp-blog-featured-copy h3 {
    font-size: clamp(1.55rem, 2.8vw, 2.15rem);
}

.jp-blog-list-copy h3 {
    font-size: clamp(1.05rem, 1.8vw, 1.32rem);
}

.jp-blog-featured-copy p,
.jp-blog-list-copy p {
    margin: 0;
    color: #c6c6c6;
    font-weight: 650;
    line-height: 1.3;
}

.jp-blog-featured-copy p {
    max-width: 520px;
    font-size: clamp(.95rem, 1.45vw, 1.1rem);
}

.jp-blog-list-copy p {
    max-width: 520px;
    font-size: clamp(.82rem, 1.15vw, .95rem);
}

.jp-blog-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .5rem;
    margin-top: .75rem;
    color: var(--jp-red);
    font-size: .72rem;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
}

.jp-blog-read-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .95rem;
    min-width: 150px;
    min-height: 40px;
    padding: .55rem 1.05rem;
    border: 1px solid var(--jp-red);
    border-radius: 5px;
    color: #efefef;
    background: rgba(0, 0, 0, .28);
    font-size: .72rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.jp-blog-read-more svg {
    display: block;
    width: 1rem;
    height: 1rem;
    color: var(--jp-red);
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.4;
}

.jp-blog-read-more:hover,
.jp-blog-read-more:focus {
    color: #fff;
    border-color: #ff2424;
    background: rgba(223, 7, 7, .18);
}

.jp-blog-list-stack {
    display: grid;
    gap: .55rem;
}

.jp-blog-list-card {
    z-index: 1;
    grid-template-columns: minmax(190px, 31%) minmax(0, 1fr) auto;
    min-height: 104px;
    padding: .45rem 1rem .45rem .45rem;
}

.jp-blog-list-card > * {
    position: relative;
    z-index: 1;
}

.jp-blog-list-image {
    height: 94px;
}

@media (max-width: 991.98px) {
    .jp-blog-featured-layout {
        grid-template-columns: minmax(220px, .7fr) minmax(0, 1fr);
    }

    .jp-blog-featured-layout .jp-blog-read-more {
        grid-column: 2;
        justify-self: start;
    }

    .jp-blog-list-card {
        grid-template-columns: minmax(160px, 34%) minmax(0, 1fr);
    }

    .jp-blog-list-card .jp-blog-read-more {
        grid-column: 2;
        justify-self: start;
        margin-bottom: .45rem;
    }
}

@media (max-width: 767.98px) {
    .jp-blog-featured-card,
    .jp-blog-list-card {
        border-radius: 6px;
    }

    .jp-blog-featured-layout,
    .jp-blog-list-card {
        grid-template-columns: 1fr;
    }

    .jp-blog-featured-layout {
        padding: 0 .75rem .85rem;
    }

    .jp-blog-featured-layout .jp-blog-read-more,
    .jp-blog-list-card .jp-blog-read-more {
        grid-column: auto;
    }

    .jp-blog-list-card {
        padding: .65rem;
    }

    .jp-blog-list-image {
        height: auto;
    }

    .jp-blog-list-image img {
        aspect-ratio: 16 / 8;
    }
}

.jp-blog-detail-section {
    position: relative;
    z-index: 1;
    padding: clamp(2rem, 5vw, 4.5rem) 0 0;
}

.jp-blog-detail-hero,
.jp-blog-detail-body-card,
.jp-blog-related-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(223, 7, 7, .58);
    border-radius: 7px;
    background:
        linear-gradient(90deg, rgba(2, 0, 0, .98), rgba(10, 10, 10, .9)),
        var(--jp-panel-strong);
    box-shadow: 0 18px 46px rgba(0, 0, 0, .46);
}

.jp-blog-detail-hero {
    min-height: clamp(290px, 35vw, 445px);
}

.jp-blog-detail-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .96) 0%, rgba(0, 0, 0, .74) 35%, rgba(0, 0, 0, .18) 74%, rgba(0, 0, 0, .72) 100%),
        radial-gradient(circle at 68% 16%, rgba(223, 7, 7, .24), transparent 23rem);
    pointer-events: none;
}

.jp-blog-detail-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.22) contrast(1.14);
}

.jp-blog-detail-hero-copy {
    position: relative;
    z-index: 1;
    max-width: 640px;
    padding: clamp(1.35rem, 3.5vw, 2.4rem);
}

.jp-blog-detail-kicker {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    margin-bottom: .9rem;
    color: var(--jp-red);
    font-size: .78rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.jp-blog-detail-kicker .jp-blog-title-icon svg {
    width: 1rem;
    height: 1rem;
}

.jp-blog-detail-hero h1 {
    max-width: 600px;
    margin: 0 0 1.15rem;
    color: #dedede;
    font-size: clamp(2.3rem, 5vw, 4.5rem);
    font-weight: 950;
    line-height: .95;
    text-transform: uppercase;
}

.jp-blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1.15rem;
    color: #d8d8d8;
    font-size: .83rem;
    font-weight: 750;
}

.jp-blog-author-avatar {
    display: inline-flex;
    width: 2.15rem;
    height: 2.15rem;
    overflow: hidden;
    border: 1px solid rgba(223, 7, 7, .75);
    border-radius: 999px;
    background: #180202;
}

.jp-blog-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jp-blog-detail-hero-copy > p {
    max-width: 520px;
    margin: 0;
    color: #d3d3d3;
    font-size: clamp(.95rem, 1.35vw, 1.08rem);
    font-weight: 650;
    line-height: 1.38;
}

.jp-blog-detail-body-card {
    margin-top: .75rem;
    padding: clamp(1.25rem, 3vw, 2rem);
}

.jp-blog-detail-body {
    color: #d2d2d2;
    font-size: clamp(.95rem, 1.35vw, 1.08rem);
    font-weight: 650;
    line-height: 1.5;
}

.jp-blog-detail-body::after {
    content: "";
    display: block;
    clear: both;
}

.jp-blog-detail-body p {
    margin: 0 0 1rem;
}

.jp-blog-detail-body h2,
.jp-blog-detail-body h3,
.jp-blog-detail-body h4 {
    margin: 1.5rem 0 .65rem;
    color: var(--jp-red);
    font-weight: 950;
    line-height: 1.1;
    text-transform: uppercase;
}

.jp-blog-detail-body blockquote {
    margin: 1.4rem 0;
    padding: .25rem 0 .5rem 1.2rem;
    border-left: 4px solid var(--jp-red);
    color: #ececec;
    font-size: clamp(1.25rem, 2.2vw, 1.65rem);
    font-weight: 850;
    line-height: 1.25;
}

.jp-blog-detail-body-image {
    float: right;
    width: min(360px, 42%);
    margin: .35rem 0 1rem clamp(1rem, 3vw, 2rem);
    border: 1px solid rgba(223, 7, 7, .56);
    border-radius: 6px;
    object-fit: cover;
    filter: saturate(1.18) contrast(1.1);
}

.jp-blog-related-section {
    position: relative;
    z-index: 1;
    padding: .8rem 0 clamp(2rem, 5vw, 4.5rem);
}

.jp-blog-related-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
}

.jp-blog-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: .6rem;
    color: #e2e2e2;
    font-size: .7rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.jp-blog-view-all svg {
    display: block;
    width: 1.1rem;
    height: 1.1rem;
    color: var(--jp-red);
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.4;
}

.jp-blog-view-all:hover,
.jp-blog-view-all:focus {
    color: #fff;
}

.jp-blog-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(.75rem, 1.5vw, 1rem);
}

.jp-blog-related-card {
    min-height: 255px;
}

.jp-blog-related-image {
    display: block;
    overflow: hidden;
    border-bottom: 1px solid rgba(223, 7, 7, .5);
}

.jp-blog-related-image img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 8;
    object-fit: cover;
    filter: saturate(1.18) contrast(1.12);
    transition: transform .22s ease, filter .22s ease;
}

.jp-blog-related-image:hover img,
.jp-blog-related-image:focus img {
    transform: scale(1.04);
    filter: saturate(1.32) contrast(1.16);
}

.jp-blog-related-copy {
    padding: .9rem 3.1rem 1.05rem 1rem;
}

.jp-blog-related-copy > span {
    display: block;
    margin-bottom: .45rem;
    color: var(--jp-red);
    font-size: .68rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.jp-blog-related-copy h3 {
    margin: 0 0 .35rem;
    color: #dedede;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 950;
    line-height: 1.05;
    text-transform: uppercase;
}

.jp-blog-related-copy p {
    margin: 0;
    color: #cfcfcf;
    font-size: .83rem;
    font-weight: 650;
    line-height: 1.32;
}

.jp-blog-related-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    margin-top: .7rem;
    color: #bfbfbf;
    font-size: .72rem;
    line-height: 1.1;
}

.jp-blog-related-link {
    position: absolute;
    right: .9rem;
    bottom: .9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border: 1px solid var(--jp-red);
    border-radius: 999px;
    color: var(--jp-red);
    background: rgba(0, 0, 0, .32);
}

.jp-blog-related-link svg {
    width: 1rem;
    height: 1rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.4;
}

.jp-blog-related-link:hover,
.jp-blog-related-link:focus {
    color: #fff;
    border-color: #ff2424;
    background: rgba(223, 7, 7, .2);
}

@media (max-width: 991.98px) {
    .jp-blog-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .jp-blog-detail-hero {
        min-height: auto;
    }

    .jp-blog-detail-hero-image {
        position: relative;
        aspect-ratio: 16 / 9;
    }

    .jp-blog-detail-hero::after {
        background: linear-gradient(180deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .96));
    }

    .jp-blog-detail-hero-copy {
        padding: 1.1rem;
    }

    .jp-blog-detail-body-image {
        float: none;
        width: 100%;
        margin: 0 0 1rem;
    }

    .jp-blog-related-heading,
    .jp-blog-related-grid {
        grid-template-columns: 1fr;
    }

    .jp-blog-view-all {
        justify-content: flex-start;
        margin-bottom: .2rem;
    }
}

.sir-press-section {
    position: relative;
    z-index: 2;
    width: min(1536px, calc(100% - 8rem));
    margin: clamp(1.15rem, 2.2vw, 1.8rem) auto 0;
}

.sir-press-detail-section > .container-fluid {
    width: min(1536px, calc(100% - 8rem));
    margin-right: auto;
    margin-left: auto;
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.sir-press-section-heading {
    display: inline-flex;
    align-items: center;
    margin-bottom: .72rem;
    color: #f3f3f3;
    font-family: var(--jp-font);
    font-size: clamp(1.05rem, 1.65vw, 1.45rem);
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    text-shadow: 0 0 12px rgba(255, 255, 255, .2);
}

.sir-press-section-heading::after {
    content: "";
    width: clamp(52px, 10vw, 140px);
    height: 1px;
    margin-left: .75rem;
    background: linear-gradient(90deg, var(--jp-red), transparent);
}

.sir-press-feature-card,
.sir-press-mention-card,
.sir-press-appearance-card {
    overflow: hidden;
    border: 1px solid rgba(223, 7, 7, .48);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(223, 7, 7, .08), transparent 42%),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, .022) 0 1px, transparent 1px 8px),
        rgba(5, 5, 5, .9);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .78), 0 18px 42px rgba(0, 0, 0, .28);
}

.sir-press-feature-card {
    display: grid;
    grid-template-columns: minmax(180px, .33fr) minmax(0, 1fr) minmax(150px, .22fr);
    gap: clamp(1rem, 2.4vw, 2rem);
    align-items: center;
    min-height: clamp(142px, 17vw, 190px);
    padding: clamp(1.15rem, 2.2vw, 1.65rem);
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .98), rgba(7, 0, 0, .8) 42%, rgba(0, 0, 0, .38)),
        var(--press-feature-image, none) right center / cover no-repeat,
        rgba(5, 5, 5, .92);
}

.sir-press-feature-logo,
.sir-press-source-logo {
    display: flex;
    align-items: center;
    min-width: 0;
}

.sir-press-feature-logo img,
.sir-press-source-logo img {
    display: block;
    width: 100%;
    max-width: 240px;
    max-height: 72px;
    object-fit: contain;
    object-position: left center;
    filter: contrast(1.08) saturate(1.08);
}

.sir-press-feature-logo span,
.sir-press-source-logo span {
    color: #f4f4f4;
    font-family: var(--jp-font);
    font-size: clamp(1.2rem, 2vw, 1.9rem);
    font-weight: 900;
    line-height: .95;
    text-transform: uppercase;
}

.sir-press-feature-copy {
    min-width: 0;
}

.sir-press-feature-copy h2,
.sir-press-mention-card h3,
.sir-press-appearance-copy h3 {
    margin: 0;
    color: #f6f6f6;
    font-family: var(--jp-font);
    font-weight: 900;
    line-height: 1.15;
}

.sir-press-feature-copy h2 {
    max-width: 560px;
    font-size: clamp(1.35rem, 2.1vw, 2rem);
}

.sir-press-feature-copy p,
.sir-press-mention-card p,
.sir-press-appearance-copy p {
    margin: .55rem 0 0;
    color: #d1d1d1;
    font-family: var(--jp-font);
    font-size: clamp(.95rem, 1.1vw, 1.04rem);
    font-weight: 650;
    line-height: 1.35;
}

.sir-press-feature-action {
    display: grid;
    justify-items: end;
    gap: 1rem;
}

.sir-press-feature-action time,
.sir-press-mention-card time,
.sir-press-appearance-copy time {
    color: #d9d9d9;
    font-family: var(--jp-font);
    font-size: .9rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.sir-press-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .85rem;
    min-height: 44px;
    padding: .85rem 1.2rem;
    border: 1px solid var(--jp-red);
    border-radius: 4px;
    background: rgba(0, 0, 0, .45);
    color: #fff;
    font-family: var(--jp-font);
    font-size: .82rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    transition: background 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.sir-press-button span {
    color: var(--jp-red);
    font-size: 1.1rem;
}

.sir-press-button:hover,
.sir-press-button:focus {
    background: rgba(223, 7, 7, .16);
    color: #fff;
    box-shadow: 0 0 18px rgba(223, 7, 7, .25);
}

.sir-press-mentions-grid,
.sir-press-appearance-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(.7rem, 1.3vw, 1rem);
}

.sir-press-mention-card a,
.sir-press-appearance-card a {
    position: relative;
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.sir-press-mention-card a {
    min-height: 170px;
    padding: clamp(1rem, 1.8vw, 1.35rem);
}

.sir-press-mention-card:hover,
.sir-press-appearance-card:hover {
    border-color: rgba(223, 7, 7, .72);
}

.sir-press-mention-card .sir-press-source-logo {
    min-height: 52px;
    margin-bottom: .85rem;
}

.sir-press-mention-card .sir-press-source-logo img {
    max-width: 185px;
    max-height: 52px;
}

.sir-press-mention-card h3,
.sir-press-appearance-copy h3 {
    font-size: clamp(1rem, 1.3vw, 1.18rem);
    line-height: 1.22;
}

.sir-press-mention-card time,
.sir-press-appearance-copy time {
    display: block;
    margin-top: .8rem;
    font-size: .82rem;
}

.sir-press-appearance-card a {
    display: grid;
    grid-template-columns: minmax(96px, .36fr) minmax(0, 1fr);
    align-items: stretch;
    min-height: 168px;
}

.sir-press-appearance-media {
    min-height: 100%;
    overflow: hidden;
    background: rgba(255, 255, 255, .04);
}

.sir-press-appearance-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.12) contrast(1.08);
}

.sir-press-appearance-media span {
    display: grid;
    height: 100%;
    min-height: 168px;
    place-items: center;
    color: rgba(255, 255, 255, .72);
    font-family: var(--jp-font);
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
}

.sir-press-appearance-copy {
    min-width: 0;
    padding: clamp(.9rem, 1.6vw, 1.2rem);
}

.sir-press-source-logo-sm {
    min-height: 42px;
    margin-bottom: .62rem;
}

.sir-press-source-logo-sm img {
    max-width: 138px;
    max-height: 42px;
}

.sir-press-play {
    position: absolute;
    right: .8rem;
    bottom: .75rem;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(223, 7, 7, .78);
    border-radius: 50%;
    color: #fff;
    font-size: 1.15rem;
    line-height: 1;
}

.sir-press-play i {
    display: none;
}

.sir-press-play::before {
    display: block;
    width: 0;
    height: 0;
    margin-left: 2px;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 11px solid currentColor;
    content: "";
}

.sir-press-empty {
    padding: 1.25rem;
    border: 1px solid rgba(223, 7, 7, .32);
    border-radius: 8px;
    background: rgba(5, 5, 5, .78);
    color: #d1d1d1;
    font-family: var(--jp-font);
    font-size: 1rem;
    font-weight: 800;
}

.sir-press-detail-section {
    position: relative;
    z-index: 2;
    padding: clamp(2rem, 4vw, 4.5rem) 0 clamp(2.5rem, 5vw, 5.5rem);
}

.sir-press-detail-hero {
    display: grid;
    grid-template-columns: minmax(260px, .32fr) minmax(0, .68fr);
    gap: clamp(1.5rem, 3vw, 3rem);
    align-items: start;
    min-height: clamp(220px, 23vw, 340px);
    padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
    background: linear-gradient(90deg, rgba(0, 0, 0, .96), rgba(0, 0, 0, .82) 48%, rgba(0, 0, 0, .38));
}

.sir-press-detail-logo-panel,
.sir-press-detail-body-card,
.sir-press-detail-snapshot {
    overflow: hidden;
    border: 1px solid rgba(223, 7, 7, .42);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(223, 7, 7, .08), transparent 42%),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, .018) 0 1px, transparent 1px 8px),
        rgba(5, 5, 5, .9);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .78), 0 18px 42px rgba(0, 0, 0, .26);
}

.sir-press-detail-logo-panel {
    display: grid;
    min-height: clamp(150px, 16vw, 220px);
    place-items: center;
    padding: clamp(1.35rem, 2.8vw, 2.4rem);
}

.sir-press-detail-logo-panel img {
    display: block;
    width: 100%;
    max-width: 315px;
    max-height: 112px;
    object-fit: contain;
    filter: contrast(1.08) saturate(1.08);
}

.sir-press-detail-logo-panel span {
    color: #f4f4f4;
    font-family: var(--jp-font);
    font-size: clamp(1.6rem, 3vw, 2.9rem);
    font-weight: 900;
    line-height: .95;
    text-align: center;
    text-transform: uppercase;
}

.sir-press-detail-intro {
    max-width: 760px;
    padding-top: .65rem;
}

.sir-press-detail-intro h1 {
    margin: 0;
    color: #f7f7f7;
    font-family: var(--jp-font);
    font-size: clamp(2rem, 4.2vw, 4.1rem);
    font-weight: 950;
    line-height: 1.05;
}

.sir-press-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin-top: clamp(1rem, 1.8vw, 1.35rem);
    color: #cfcfcf;
    font-family: var(--jp-font);
    font-size: clamp(.98rem, 1.2vw, 1.12rem);
    font-weight: 800;
}

.sir-press-detail-intro p {
    max-width: 650px;
    margin: clamp(1rem, 1.8vw, 1.35rem) 0 0;
    color: #d2d2d2;
    font-family: var(--jp-font);
    font-size: clamp(1.05rem, 1.35vw, 1.25rem);
    font-weight: 650;
    line-height: 1.45;
}

.sir-press-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(310px, .34fr);
    gap: clamp(1.4rem, 3vw, 3.2rem);
    align-items: start;
    margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.sir-press-detail-body-card {
    min-height: clamp(360px, 38vw, 620px);
    padding: clamp(1.5rem, 3vw, 3rem);
    color: #d8d8d8;
    font-family: var(--jp-font);
    font-size: clamp(1.15rem, 1.6vw, 1.55rem);
    font-weight: 700;
    line-height: 1.42;
}

.sir-press-detail-article-image {
    float: left;
    width: min(42%, 360px);
    margin: 0 clamp(1.1rem, 2vw, 1.75rem) 1rem 0;
    overflow: hidden;
    border: 1px solid rgba(223, 7, 7, .42);
    border-radius: 8px;
    background: rgba(255, 255, 255, .04);
}

.sir-press-detail-article-image img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 520px;
    filter: saturate(1.1) contrast(1.08);
}

.sir-press-detail-article-image + br {
    display: none;
}

.sir-press-detail-body-card br {
    display: block;
    content: "";
    margin-top: 1rem;
}

.sir-press-detail-actions {
    margin-top: clamp(1.25rem, 2.5vw, 2rem);
}

.sir-press-detail-snapshot {
    min-height: clamp(360px, 38vw, 620px);
    padding: clamp(1.5rem, 3vw, 3rem);
}

.sir-press-detail-snapshot h2 {
    display: inline-flex;
    flex-direction: column;
    gap: .72rem;
    margin: 0 0 clamp(1.7rem, 3vw, 2.5rem);
    color: #f3f3f3;
    font-family: var(--jp-font);
    font-size: clamp(1.7rem, 2.5vw, 2.5rem);
    font-weight: 950;
    line-height: 1;
    text-transform: uppercase;
}

.sir-press-detail-snapshot h2::after {
    content: "";
    width: 72px;
    height: 3px;
    background: var(--jp-red);
}

.sir-press-detail-snapshot-list {
    display: grid;
    gap: clamp(1.35rem, 2.4vw, 2rem);
}

.sir-press-detail-snapshot-row {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 1.15rem;
    align-items: start;
}

.sir-press-detail-snapshot-icon {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(223, 7, 7, .48);
    border-radius: 5px;
    color: #dedede;
    font-size: 1.45rem;
}

.sir-press-detail-snapshot-label,
.sir-press-detail-snapshot-value {
    display: block;
    font-family: var(--jp-font);
}

.sir-press-detail-snapshot-label {
    color: #bfbfbf;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.sir-press-detail-snapshot-value {
    margin-top: .35rem;
    color: #e2e2e2;
    font-size: clamp(1.05rem, 1.4vw, 1.3rem);
    font-weight: 700;
    line-height: 1.2;
}

@media (max-width: 1199.98px) {
    .sir-press-feature-card {
        grid-template-columns: minmax(150px, .32fr) minmax(0, 1fr);
    }

    .sir-press-detail-hero {
        grid-template-columns: minmax(220px, .38fr) minmax(0, .62fr);
    }

    .sir-press-detail-layout {
        grid-template-columns: minmax(0, 1fr) minmax(280px, .38fr);
    }

    .sir-press-feature-action {
        grid-column: 1 / -1;
        grid-template-columns: 1fr auto;
        align-items: center;
        justify-items: start;
    }

    .sir-press-feature-action .sir-press-button {
        justify-self: end;
    }

    .sir-press-mentions-grid,
    .sir-press-appearance-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .sir-press-section,
    .sir-press-detail-section > .container-fluid {
        width: min(100% - 2rem, 1536px);
    }

    .sir-press-feature-card,
    .sir-press-appearance-card a,
    .sir-press-detail-hero,
    .sir-press-detail-layout {
        grid-template-columns: 1fr;
    }

    .sir-press-detail-body-card,
    .sir-press-detail-snapshot {
        min-height: 0;
    }

    .sir-press-detail-article-image {
        float: none;
        width: 100%;
        margin: 0 0 1.15rem;
    }

    .sir-press-feature-action {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .sir-press-feature-action .sir-press-button {
        justify-self: start;
    }

    .sir-press-mentions-grid,
    .sir-press-appearance-grid {
        grid-template-columns: 1fr;
    }

    .sir-press-appearance-media img,
    .sir-press-appearance-media span {
        aspect-ratio: 16 / 9;
    }
}
