:root {
    --smg-black: #030303;
    --smg-panel: #070604;
    --smg-panel-soft: #0c0905;
    --smg-gold: #c8a45a;
    --smg-gold-bright: #efc873;
    --smg-gold-dark: #6f531a;
    --smg-red: #f20808;
    --smg-red-dark: #8d0303;
    --smg-text: #f4efe3;
    --smg-muted: #b5aa93;
    --smg-border: rgba(190, 142, 38, .72);
    --smg-header-offset: 101px;
}

html {
    scroll-behavior: smooth;
}

.smg-page {
    background:
        radial-gradient(circle at 18% 2%, rgba(201, 0, 0, .18), transparent 24rem),
        radial-gradient(circle at 90% 12%, rgba(177, 14, 7, .16), transparent 28rem),
        #000;
    color: var(--smg-text);
    font-family: Montserrat, Arial, sans-serif;
    overflow-x: hidden;
}

.smg-page a {
    text-decoration: none;
}

.smg-site-shell {
    min-height: 100vh;
    padding-top: var(--smg-header-offset);
    background: linear-gradient(180deg, #020202 0%, #040302 58%, #000 100%);
}

.smg-container {
    width: min(100%, 1138px);
    margin: 0 auto;
    padding-left: 26px;
    padding-right: 26px;
}

.smg-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, .9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(176, 124, 24, .36);
}

.smg-navbar {
    min-height: 76px;
    padding: 0;
}

.smg-brand,
.smg-footer-brand {
    display: inline-flex;
    align-items: center;
    color: var(--smg-gold-bright);
    gap: 9px;
    min-width: 0;
    user-select: none;
}

.smg-brand:hover,
.smg-footer-brand:hover {
    color: var(--smg-gold-bright);
}

.smg-brand-mark {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 2px solid var(--smg-gold);
    border-radius: 50%;
    color: #040302;
    background: linear-gradient(145deg, #f2cd72, #8f681c);
    font-family: Georgia, serif;
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 0 18px rgba(200, 164, 90, .18);
}

.smg-brand-text {
    display: flex;
    flex-direction: column;
    text-transform: uppercase;
    line-height: .82;
    letter-spacing: 0;
}

.smg-brand-text strong {
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: clamp(2rem, 2.5vw, 2.55rem);
    font-weight: 900;
}

.smg-brand-text small {
    color: #f2d793;
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .14em;
}

.smg-primary-nav {
    align-items: center;
    gap: 23px;
}

.smg-primary-nav .nav-link {
    position: relative;
    padding: 20px 0 17px;
    color: #f6f0e7;
    font-size: .88rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    user-select: none;
}

.smg-primary-nav .nav-link:hover,
.smg-primary-nav .nav-link.active {
    color: var(--smg-gold-bright);
}

.smg-primary-nav .nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    height: 2px;
    background: var(--smg-red);
}

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

.smg-nav-link-row {
    display: flex;
    align-items: center;
    gap: .3rem;
}

.smg-nav-dropdown-toggle {
    display: inline-grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 1px solid rgba(200, 164, 90, .45);
    border-radius: 0;
    background: rgba(0, 0, 0, .5);
    color: var(--smg-gold-bright);
    line-height: 1;
    transition: border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.smg-nav-dropdown-toggle:hover,
.smg-nav-dropdown-toggle:focus {
    border-color: var(--smg-red);
    color: #fff;
    outline: none;
}

.smg-nav-dropdown:focus-within .smg-nav-dropdown-toggle span,
.smg-nav-dropdown.is-open .smg-nav-dropdown-toggle span {
    transform: translateY(2px) rotate(225deg);
}

.smg-nav-dropdown-menu {
    --bs-dropdown-min-width: 14rem;
    --bs-dropdown-padding-x: .35rem;
    --bs-dropdown-padding-y: .4rem;
    --bs-dropdown-border-radius: 0;
    overflow: hidden;
    border: 1px solid rgba(200, 164, 90, .42);
    background: rgba(0, 0, 0, .96);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .45);
}

.smg-nav-dropdown-item {
    color: #f6f0e7;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .08em;
    padding: .65rem .8rem;
    text-transform: uppercase;
}

.smg-nav-dropdown-item:hover,
.smg-nav-dropdown-item:focus {
    background: rgba(242, 8, 8, .18);
    color: var(--smg-gold-bright);
}

.smg-nav-dropdown:focus-within > .smg-nav-dropdown-menu,
.smg-nav-dropdown.is-open > .smg-nav-dropdown-menu {
    display: block;
}

.smg-social-nav,
.smg-footer-socials,
.smg-artist-socials {
    display: flex;
    align-items: center;
    gap: 14px;
}

.smg-social-nav {
    margin-left: 26px;
}

.smg-social-nav a,
.smg-footer-socials a,
.smg-artist-socials a {
    color: var(--smg-gold-bright);
    display: inline-grid;
    place-items: center;
}

.smg-social-nav svg,
.smg-footer-socials svg,
.smg-artist-socials svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.smg-social-nav svg path,
.smg-social-nav svg rect,
.smg-social-nav svg circle,
.smg-footer-socials svg path,
.smg-footer-socials svg rect,
.smg-footer-socials svg circle,
.smg-artist-socials svg path,
.smg-artist-socials svg rect,
.smg-artist-socials svg circle {
    vector-effect: non-scaling-stroke;
}

.smg-nav-toggle {
    border: 1px solid var(--smg-border);
    border-radius: 0;
    padding: 9px;
}

.smg-nav-toggle:focus {
    box-shadow: 0 0 0 .15rem rgba(200, 164, 90, .25);
}

.smg-nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 4px 0;
    background: var(--smg-gold-bright);
}

.smg-hero {
    --smg-hero-bg: url("/images/theme/syndicate-media-groups/smg-hero-full.png");
    position: relative;
    min-height: calc(100vh - var(--smg-header-offset));
    display: flex;
    align-items: stretch;
    padding: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0) 64%, #000 100%),
        var(--smg-hero-bg) center top / cover no-repeat;
    overflow: hidden;
}

.smg-hero > .smg-container {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: calc(100vh - var(--smg-header-offset));
    padding-top: 46px;
    padding-bottom: 44px;
}

.smg-hero-copy {
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0 2px 9px #000;
}

.smg-hero-copy p:first-child {
    margin: 0;
    color: #fff;
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: .9;
}

.smg-hero-copy h1 {
    margin: 1px 0 3px;
    color: var(--smg-red);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: clamp(4.75rem, 11.5vw, 8.5rem);
    font-weight: 900;
    line-height: .82;
}

.smg-hero-copy h2 {
    margin: 0;
    color: var(--smg-gold-bright);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: clamp(2rem, 4.2vw, 3.05rem);
    font-weight: 800;
}

.smg-hero-subtitle {
    margin: 5px 0 0;
    color: #fff;
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: clamp(1.4rem, 2.8vw, 2.45rem);
    font-weight: 800;
}

.smg-hero-actions {
    display: flex;
    justify-content: center;
    margin-top: 22px;
}

.smg-hero-btn {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--smg-gold);
    padding: 12px 28px;
    color: #fff;
    font-size: .98rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-decoration: none;
    text-transform: uppercase;
    transition: border-color .18s ease, color .18s ease, transform .18s ease;
}

.smg-hero-btn:hover,
.smg-hero-btn:focus {
    border-color: var(--smg-gold-bright);
    color: var(--smg-gold-bright);
    transform: translateY(-2px);
}

.syndicate-service-detail-hero {
    --syndicate-service-hero-bg: url("/images/theme/syndicate-media-groups/smg-hero-full.png");
    --syndicate-service-hero-position: right center;
    position: relative;
    display: flex;
    min-height: clamp(520px, calc(100vh - var(--smg-header-offset)), 720px);
    align-items: center;
    overflow: hidden;
    border-top: 1px solid rgba(200, 164, 90, .34);
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .98) 0%, rgba(0, 0, 0, .9) 24%, rgba(0, 0, 0, .44) 46%, rgba(0, 0, 0, .08) 72%),
        linear-gradient(180deg, rgba(0, 0, 0, .1) 0%, rgba(0, 0, 0, .18) 72%, #000 100%),
        var(--syndicate-service-hero-bg) var(--syndicate-service-hero-position) / cover no-repeat;
}

.syndicate-service-detail-hero > .smg-container {
    position: relative;
    z-index: 1;
}

.syndicate-service-detail-hero-content {
    width: min(100%, 640px);
    padding: clamp(58px, 8vw, 94px) 0;
    text-transform: uppercase;
    text-shadow: 0 3px 14px rgba(0, 0, 0, .88);
}

.smg-artist-hero {
    --smg-artist-hero-bg: url("/images/theme/syndicate-media-groups/smg-hero-full.png");
    position: relative;
    display: flex;
    height: min(calc(100vh - var(--smg-header-offset) - 100px), 660px);
    max-height: 660px;
    align-items: center;
    overflow: hidden;
    border-top: 1px solid rgba(200, 164, 90, .34);
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .96) 0%, rgba(0, 0, 0, .72) 38%, rgba(0, 0, 0, .2) 68%),
        linear-gradient(180deg, rgba(0, 0, 0, .06) 0%, rgba(0, 0, 0, .2) 70%, #000 100%),
        var(--smg-artist-hero-bg) right top / cover no-repeat;
}

.smg-artist-hero > .smg-container {
    position: relative;
    z-index: 1;
}

.smg-artist-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 590px) minmax(360px, 1fr);
    gap: clamp(24px, 5vw, 70px);
    align-items: start;
    height: 100%;
    padding-top: clamp(54px, 7vw, 86px);
    padding-bottom: clamp(42px, 6vw, 78px);
}

.smg-artist-hero-copy {
    position: relative;
    z-index: 2;
    align-self: start;
    text-transform: uppercase;
    text-shadow: 0 3px 14px rgba(0, 0, 0, .9);
}

.smg-artist-hero-copy::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: -24px -34px -24px -28px;
    background: linear-gradient(90deg, rgba(0, 0, 0, .84), rgba(0, 0, 0, .44) 74%, transparent);
    filter: blur(1px);
}

.smg-artist-hero-kicker {
    margin: 0 0 12px;
    color: var(--smg-red);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: clamp(1.2rem, 2vw, 1.75rem);
    font-weight: 900;
    letter-spacing: .18em;
    line-height: 1;
}

.smg-artist-hero h1 {
    margin: 0;
    color: #f4efe3;
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: clamp(4.2rem, 8vw, 7.8rem);
    font-weight: 900;
    line-height: .78;
}

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

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

.smg-artist-hero-script {
    margin: 10px 0 0;
    color: var(--smg-gold-bright);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: clamp(1.55rem, 3vw, 2.6rem);
    font-weight: 800;
    line-height: 1;
}

.smg-artist-hero-text {
    width: min(100%, 460px);
    margin: 18px 0 24px;
    color: #fff;
    font-size: 1rem;
    line-height: 1.65;
    text-transform: none;
}

.smg-artist-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.smg-artist-hero-actions + .smg-artist-hero-actions {
    margin-top: 16px;
}

.smg-artist-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
    padding: 12px 20px;
    border: 1px solid rgba(200, 164, 90, .58);
    background: rgba(0, 0, 0, .42);
    color: #fff;
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.smg-artist-hero-btn:hover,
.smg-artist-hero-btn:focus {
    border-color: var(--smg-gold-bright);
    color: #fff;
    transform: translateY(-2px);
}

.smg-artist-hero-btn-primary {
    border-color: var(--smg-red);
    background: linear-gradient(180deg, #d60707, #970101);
}

.smg-artist-hero-stage {
    position: relative;
    z-index: 1;
    min-height: 600px;
}

.smg-artist-hero-animation {
    position: absolute;
    right: 50%;
    bottom: -32px;
    z-index: 1;
    max-width: none;
    transform: translateX(50%) scale(.92);
    transform-origin: center bottom;
}

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

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

.syndicate-service-detail-eyebrow {
    margin: 0 0 13px;
    color: var(--smg-red);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: clamp(1.25rem, 2.1vw, 1.75rem);
    font-weight: 900;
    letter-spacing: .18em;
    line-height: 1;
}

.syndicate-service-detail-title {
    margin: 0;
    color: #f4efe3;
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: clamp(4.7rem, 8.5vw, 7.55rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: .86;
}

.syndicate-service-detail-title span,
.syndicate-service-detail-title strong {
    display: block;
}

.syndicate-service-detail-title strong {
    color: var(--smg-red-dark);
    font-weight: 900;
}

.syndicate-service-detail-copy {
    width: min(100%, 580px);
    margin: 26px 0 0;
    color: #e7dfd2;
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: clamp(1.45rem, 2.3vw, 2.08rem);
    font-weight: 700;
    letter-spacing: .05em;
    line-height: 1.28;
}

.syndicate-service-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 31px;
}

.syndicate-service-detail-button {
    display: inline-flex;
    min-width: min(100%, 294px);
    min-height: 68px;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(200, 164, 90, .75);
    border-radius: 3px;
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: 1.22rem;
    font-weight: 900;
    letter-spacing: .09em;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}

.syndicate-service-detail-button-primary {
    background: linear-gradient(90deg, #c69538 0%, #f0ce83 54%, #bd8427 100%);
    color: #130c03;
    box-shadow: 0 0 18px rgba(200, 164, 90, .16);
}

.syndicate-service-detail-button-secondary {
    background: rgba(0, 0, 0, .56);
    color: #f3eee6;
}

.syndicate-service-detail-button:hover,
.syndicate-service-detail-button:focus {
    border-color: var(--smg-gold-bright);
    color: #050505;
    transform: translateY(-1px);
}

.syndicate-service-detail-button-secondary:hover,
.syndicate-service-detail-button-secondary:focus {
    background: var(--smg-gold-bright);
}

.syndicate-service-detail-button-primary span {
    width: 0;
    height: 0;
    margin-left: 20px;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 14px solid currentColor;
}

.smg-page .hla-about-custom-sections > .container {
    width: min(100%, 1138px);
    max-width: none;
    padding-right: 26px;
    padding-left: 26px;
}

.smg-page .hla-about-custom-sections > .container > .row {
    --bs-gutter-x: 0;
    margin-right: 0;
    margin-left: 0;
}

.smg-page .hla-about-custom-sections > .container > .row > [class*="col-"] {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    padding-right: 0;
    padding-left: 0;
}

.smg-page .hla-about-custom-sections {
    padding: clamp(24px, 4vw, 46px) 0 clamp(28px, 5vw, 58px);
    background: #000;
}

.smg-page .hla-about-values-card {
    border: 1px solid var(--smg-border);
    border-radius: 0;
    padding: clamp(18px, 2.6vw, 28px);
    background:
        radial-gradient(circle at 50% 0%, rgba(143, 3, 3, .14), transparent 28rem),
        linear-gradient(180deg, rgba(8, 7, 4, .96), rgba(2, 2, 1, .98));
    box-shadow: inset 0 0 38px rgba(150, 7, 2, .08);
}

.smg-page .hla-about-values-card .hla-about-card-title {
    margin-bottom: 18px;
}

.smg-page .hla-about-values-card .hla-about-card-title h2 {
    margin: 0;
    color: var(--smg-gold);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: clamp(2rem, 4vw, 3.05rem);
    font-weight: 700;
    line-height: .95;
    text-transform: uppercase;
}

.smg-page .hla-about-title-rule {
    display: none;
}

.smg-page .hla-about-values-intro {
    max-width: 760px;
    color: var(--smg-muted);
}

.smg-page .hla-about-value-card {
    border: 1px solid rgba(200, 164, 90, .34);
    border-radius: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .025), transparent 42%),
        repeating-linear-gradient(135deg, rgba(200, 164, 90, .035) 0 1px, transparent 1px 7px),
        rgba(5, 5, 5, .92);
    box-shadow: inset 0 0 24px rgba(200, 164, 90, .05);
}

.smg-page .hla-about-value-icon {
    color: #f2eee6;
    filter: drop-shadow(0 0 12px rgba(200, 164, 90, .2));
}

.smg-page .hla-about-value-card h3 {
    color: #f2eee6;
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: clamp(1.16rem, 1.8vw, 1.45rem);
    font-weight: 800;
    letter-spacing: .08em;
}

.smg-page .hla-about-value-card p {
    color: #c8c3b8;
    font-weight: 700;
    line-height: 1.28;
}

.smg-page .hla-about-icon-list-card {
    border: 1px solid var(--smg-border);
    border-radius: 0;
    padding: clamp(18px, 2.6vw, 28px);
    background:
        radial-gradient(circle at 50% 0%, rgba(143, 3, 3, .14), transparent 28rem),
        linear-gradient(180deg, rgba(8, 7, 4, .96), rgba(2, 2, 1, .98));
    box-shadow: inset 0 0 38px rgba(150, 7, 2, .08);
}

.smg-page .hla-about-icon-list-card .hla-about-card-title {
    margin-bottom: 18px;
}

.smg-page .hla-about-icon-list-card .hla-about-card-title h2 {
    margin: 0;
    color: var(--smg-gold);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: clamp(2rem, 4vw, 3.05rem);
    font-weight: 700;
    line-height: .95;
    text-transform: uppercase;
}

.smg-page .hla-about-icon-list-intro {
    max-width: 760px;
    margin: -4px 0 22px;
    color: var(--smg-muted);
}

.smg-page .hla-about-icon-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.smg-page .hla-about-icon-list-item {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    overflow: hidden;
    border: 1px solid rgba(200, 164, 90, .34);
    border-radius: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .025), transparent 42%),
        repeating-linear-gradient(135deg, rgba(200, 164, 90, .035) 0 1px, transparent 1px 7px),
        rgba(5, 5, 5, .92);
    box-shadow: inset 0 0 24px rgba(200, 164, 90, .05);
}

.smg-page .hla-about-icon-list-icon {
    display: grid;
    width: 100%;
    min-height: 154px;
    place-items: center;
    color: var(--smg-gold-bright);
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .1), rgba(0, 0, 0, .72)),
        rgba(12, 10, 7, .88);
    filter: none;
}

.smg-page .hla-about-icon-list-icon img {
    width: 100%;
    height: 154px;
    object-fit: cover;
}

.smg-page .hla-about-icon-list-icon svg {
    width: 62px;
    height: 62px;
    color: var(--smg-gold-bright);
    filter: drop-shadow(0 0 10px rgba(200, 164, 90, .18));
}

.smg-page .hla-about-icon-list-copy {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 18px 18px 20px;
    text-align: center;
}

.smg-page .hla-about-icon-list-copy h3 {
    margin: 0 0 9px;
    color: #f2eee6;
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: clamp(1.28rem, 2vw, 1.65rem);
    font-weight: 800;
    letter-spacing: .08em;
    line-height: 1;
    text-transform: uppercase;
}

.smg-page .hla-about-icon-list-copy p {
    margin: 0;
    color: #c8c3b8;
    font-size: .95rem;
    font-weight: 700;
    line-height: 1.34;
}

.smg-page .sir-about-red-mark {
    display: block;
    width: 56px;
    height: 8px;
    margin-top: .75rem;
    border-top: 3px solid var(--smg-red);
    transform: skewX(-24deg);
    box-shadow: 0 0 10px rgba(242, 8, 8, .32);
}

.smg-page .sir-about-bigquote {
    color: var(--smg-text);
}

.smg-page .sir-about-bigquote-card {
    position: relative;
    display: grid;
    min-height: clamp(178px, 19vw, 245px);
    grid-template-columns: clamp(74px, 10vw, 130px) minmax(0, 1fr);
    align-items: center;
    gap: clamp(1rem, 2vw, 1.65rem);
    overflow: hidden;
    border: 1px solid rgba(200, 164, 90, .42);
    border-radius: 0;
    padding: clamp(1.35rem, 2.6vw, 2.25rem) clamp(1.35rem, 4vw, 3.1rem);
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .98) 0%, rgba(0, 0, 0, .92) 34%, rgba(0, 0, 0, .68) 68%, rgba(0, 0, 0, .45) 100%),
        #050505;
    box-shadow:
        inset 0 0 0 1px rgba(0, 0, 0, .84),
        0 18px 45px rgba(0, 0, 0, .38);
}

.smg-page .sir-about-bigquote-card::before {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .4), transparent 44%),
        repeating-linear-gradient(135deg, rgba(200, 164, 90, .035) 0 1px, transparent 1px 8px);
    content: "";
    pointer-events: none;
}

.smg-page .sir-about-bigquote-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(68%, 780px);
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: .42;
    filter: grayscale(1) contrast(1.08);
    mask-image: linear-gradient(90deg, transparent, #000 24%);
}

.smg-page .sir-about-bigquote-mark,
.smg-page .sir-about-bigquote-copy {
    position: relative;
    z-index: 1;
}

.smg-page .sir-about-bigquote-mark {
    align-self: start;
    color: var(--smg-red);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(5.25rem, 11vw, 9.25rem);
    font-weight: 900;
    line-height: .72;
    text-shadow: 0 0 18px rgba(242, 8, 8, .35);
}

.smg-page .sir-about-bigquote-mark img {
    width: clamp(62px, 8vw, 96px);
    height: clamp(62px, 8vw, 96px);
    object-fit: contain;
}

.smg-page .sir-about-bigquote-copy {
    max-width: min(760px, 100%);
}

.smg-page .sir-about-bigquote-copy blockquote {
    margin: 0;
    color: #d9d9d9;
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: clamp(1.75rem, 4.2vw, 3.15rem);
    font-weight: 700;
    letter-spacing: .1em;
    line-height: 1.06;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .86);
}

.smg-page .sir-about-bigquote-copy .sir-about-red-mark {
    width: min(100%, 380px);
    margin-top: clamp(.8rem, 1.5vw, 1.1rem);
}

.smg-page .sir-about-bigquote-copy cite {
    display: block;
    margin: -.15rem 0 0 min(38%, 300px);
    color: #f2f2f2;
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: clamp(1.45rem, 3vw, 2.6rem);
    font-style: normal;
    font-weight: 700;
    letter-spacing: .05em;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .82);
    text-transform: uppercase;
    transform: rotate(-7deg);
}

.syndicate-service-detail-hero ~ .product-info-section-icon-strip {
    position: relative;
    overflow: hidden;
    padding: 56px 0 62px !important;
    background:
        radial-gradient(circle at 50% 4%, rgba(143, 3, 3, .18), transparent 31rem),
        linear-gradient(180deg, #000 0%, #030202 52%, #000 100%);
}

.syndicate-service-detail-hero ~ .product-info-section-icon-strip::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(200, 164, 90, .05) 1px, transparent 1px),
        linear-gradient(180deg, rgba(200, 164, 90, .035) 1px, transparent 1px);
    background-size: 54px 54px;
    opacity: .18;
    pointer-events: none;
}

.syndicate-service-detail-hero ~ .product-info-section-icon-strip .container {
    position: relative;
    z-index: 1;
    width: min(100%, 1508px);
    max-width: none;
    padding-right: 54px;
    padding-left: 54px;
}

.syndicate-service-detail-hero ~ .product-info-section-icon-strip .product-info-section-title {
    display: grid;
    grid-template-columns: minmax(80px, 1fr) auto minmax(80px, 1fr);
    align-items: center;
    gap: 28px;
    margin: 0 0 24px !important;
    color: #e4e0d8;
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: clamp(1.75rem, 2.5vw, 2.2rem);
    font-weight: 800;
    letter-spacing: .11em;
    line-height: 1;
    text-transform: uppercase;
    text-shadow: 0 0 12px rgba(244, 239, 227, .28);
}

.syndicate-service-detail-hero ~ .product-info-section-icon-strip .product-info-section-title::before,
.syndicate-service-detail-hero ~ .product-info-section-icon-strip .product-info-section-title::after {
    content: "";
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 164, 90, .78));
}

.syndicate-service-detail-hero ~ .product-info-section-icon-strip .product-info-section-title::after {
    background: linear-gradient(90deg, rgba(200, 164, 90, .78), transparent);
}

.syndicate-service-detail-hero ~ .product-info-section-icon-strip .row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    margin-right: 0;
    margin-left: 0;
}

.syndicate-service-detail-hero ~ .product-info-section-icon-strip .col {
    width: auto;
    padding-right: 0;
    padding-left: 0;
}

.syndicate-service-detail-hero ~ .product-info-section-icon-strip .product-info-section-item {
    display: flex !important;
    min-height: 342px;
    flex-direction: column;
    align-items: center;
    gap: 0 !important;
    border: 2px solid rgba(168, 120, 25, .72);
    border-radius: 6px;
    padding: 27px 27px 23px;
    background:
        radial-gradient(circle at 50% 0%, rgba(147, 7, 5, .14), transparent 44%),
        linear-gradient(180deg, rgba(8, 7, 5, .94), rgba(0, 0, 0, .96));
    box-shadow:
        inset 0 0 28px rgba(200, 164, 90, .08),
        0 0 18px rgba(0, 0, 0, .34);
    text-align: center;
}

.syndicate-service-detail-hero ~ .product-info-section-icon-strip .product-info-section-item img {
    width: 84px !important;
    height: 84px !important;
    margin: 0 0 28px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(200, 164, 90, .2));
}

.syndicate-service-detail-hero ~ .product-info-section-icon-strip .product-info-section-item > div {
    display: flex;
    min-height: 0;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: center;
}

.syndicate-service-detail-hero ~ .product-info-section-icon-strip .product-info-section-item h3 {
    margin: 0 0 20px;
    color: var(--smg-gold);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: clamp(1.12rem, 1.3vw, 1.34rem);
    font-weight: 900;
    letter-spacing: .08em;
    line-height: 1.06;
    text-transform: uppercase;
}

.syndicate-service-detail-hero ~ .product-info-section-icon-strip .product-info-section-item p {
    max-width: 220px;
    margin: 0 auto;
    color: #b8b0a6;
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.55;
}

.syndicate-service-detail-hero ~ .product-info-section-icon-strip + .product-info-section-icon-strip {
    padding-top: 43px !important;
}

.syndicate-service-detail-hero ~ .product-info-section-icon-strip + .product-info-section-icon-strip .container {
    width: min(100%, 1510px);
}

.syndicate-service-detail-hero ~ .product-info-section-icon-strip + .product-info-section-icon-strip .product-info-section-title {
    margin-bottom: 24px !important;
}

.syndicate-service-detail-hero ~ .product-info-section-icon-strip + .product-info-section-icon-strip .row {
    counter-reset: syndicate-approach-step;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    align-items: stretch;
    margin-top: 24px;
    border: 2px solid rgba(168, 120, 25, .72);
    border-radius: 5px;
    padding: 43px 22px 36px;
    background:
        radial-gradient(circle at 50% 0%, rgba(143, 3, 3, .13), transparent 44%),
        linear-gradient(180deg, rgba(9, 8, 5, .94), rgba(0, 0, 0, .98));
    box-shadow: inset 0 0 30px rgba(200, 164, 90, .08);
}

.syndicate-service-detail-hero ~ .product-info-section-icon-strip + .product-info-section-icon-strip .col {
    position: relative;
}

.syndicate-service-detail-hero ~ .product-info-section-icon-strip + .product-info-section-icon-strip .col:not(:last-child)::after {
    content: ">";
    position: absolute;
    top: 50%;
    right: -13px;
    color: var(--smg-gold);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: 2.65rem;
    font-weight: 900;
    line-height: 1;
    opacity: .84;
    transform: translate(50%, -50%);
}

.syndicate-service-detail-hero ~ .product-info-section-icon-strip + .product-info-section-icon-strip .product-info-section-item {
    counter-increment: syndicate-approach-step;
    display: grid !important;
    grid-template-columns: 96px minmax(0, 1fr);
    min-height: 112px;
    align-items: center;
    border: 0;
    border-radius: 0;
    padding: 0 28px;
    background: transparent;
    box-shadow: none;
    text-align: left;
}

.syndicate-service-detail-hero ~ .product-info-section-icon-strip + .product-info-section-icon-strip .product-info-section-item::before {
    content: counter(syndicate-approach-step);
    display: grid;
    width: 86px;
    height: 86px;
    place-items: center;
    border: 2px solid rgba(168, 120, 25, .76);
    border-radius: 50%;
    color: var(--smg-red-dark);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: 3.35rem;
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 0 9px rgba(242, 8, 8, .26);
}

.syndicate-service-detail-hero ~ .product-info-section-icon-strip + .product-info-section-icon-strip .product-info-section-item img {
    display: none;
}

.syndicate-service-detail-hero ~ .product-info-section-icon-strip + .product-info-section-icon-strip .product-info-section-item > div {
    display: block;
}

.syndicate-service-detail-hero ~ .product-info-section-icon-strip + .product-info-section-icon-strip .product-info-section-item h3 {
    margin: 0 0 6px;
    font-size: clamp(1.18rem, 1.45vw, 1.43rem);
    line-height: 1;
}

.syndicate-service-detail-hero ~ .product-info-section-icon-strip + .product-info-section-icon-strip .product-info-section-item p {
    max-width: 210px;
    margin: 0;
    font-size: .93rem;
    line-height: 1.42;
}

.smg-info-image-left-info-right {
    background:
        radial-gradient(circle at 78% 14%, rgba(143, 3, 3, .16), transparent 28rem),
        linear-gradient(180deg, #000 0%, #030202 58%, #000 100%);
}

@media (min-width: 768px) {
    .smg-artist-hero + .product-info-section {
        position: relative;
        z-index: 2;
        margin-top: -100px;
        background: transparent;
    }

    .smg-artist-hero + .smg-artist-listing {
        margin-top: -130px;
        padding-top: 0;
    }
}

.smg-info-image-left-info-right .container {
    width: min(100%, 1512px);
    max-width: none;
    padding-right: 54px;
    padding-left: 54px;
}

.smg-info-image-left-info-right-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
    overflow: hidden;
    border: 2px solid rgba(168, 120, 25, .74);
    border-radius: 5px;
    background:
        radial-gradient(circle at 64% 12%, rgba(109, 3, 3, .12), transparent 34%),
        linear-gradient(180deg, rgba(8, 7, 5, .96), rgba(0, 0, 0, .99));
    box-shadow: inset 0 0 34px rgba(200, 164, 90, .08);
}

.smg-info-image-left-info-right-media {
    min-height: 478px;
}

.smg-info-image-left-info-right-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 478px;
    object-fit: cover;
    object-position: center;
}

.smg-info-image-left-info-right-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 2px solid rgba(168, 120, 25, .54);
    padding: 36px 41px 27px;
}

.smg-info-image-left-info-right-content:first-child {
    grid-column: 1 / -1;
    border-left: 0;
}

.smg-info-image-left-info-right-subtitle,
.smg-info-image-left-info-right-content h2,
.smg-info-image-left-info-right-item h3,
.smg-info-image-left-info-right-item p {
    font-family: "Barlow Condensed", Impact, sans-serif;
    text-transform: uppercase;
}

.smg-info-image-left-info-right-subtitle {
    margin: 0;
    color: var(--smg-red-dark);
    font-size: clamp(2.4rem, 4vw, 4.55rem);
    font-weight: 900;
    letter-spacing: .02em;
    line-height: .9;
    text-shadow: 0 0 13px rgba(242, 8, 8, .14);
}

.smg-info-image-left-info-right-content h2 {
    margin: 5px 0 15px;
    color: #e5e1da;
    font-size: clamp(2.28rem, 3.45vw, 3.75rem);
    font-weight: 900;
    letter-spacing: .03em;
    line-height: .92;
}

.smg-info-image-left-info-right-intro {
    max-width: 640px;
    color: #c4bbb0;
    font-size: clamp(1.02rem, 1.4vw, 1.25rem);
    font-weight: 700;
    line-height: 1.5;
}

.smg-info-image-left-info-right-items {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 31px;
}

.smg-info-image-left-info-right-item {
    min-width: 0;
    border-left: 2px solid rgba(168, 120, 25, .42);
    padding: 0 20px;
    text-align: center;
}

.smg-info-image-left-info-right-item:first-child {
    border-left: 0;
}

.smg-info-image-left-info-right-item img {
    display: block;
    width: 54px;
    height: 54px;
    margin: 0 auto 14px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(200, 164, 90, .18));
}

.smg-info-image-left-info-right-item h3 {
    margin: 0 0 6px;
    color: var(--smg-red);
    font-size: clamp(1.7rem, 2.35vw, 2.55rem);
    font-weight: 800;
    letter-spacing: .05em;
    line-height: .95;
}

.smg-info-image-left-info-right-item p {
    margin: 0 auto;
    color: #c0b7ae;
    font-size: .95rem;
    font-weight: 800;
    letter-spacing: .07em;
    line-height: 1.24;
}

.smg-section {
    background: #000;
}

.smg-framed-row {
    border: 1px solid var(--smg-border);
    background: linear-gradient(180deg, rgba(8, 7, 4, .96), rgba(2, 2, 1, .98));
    box-shadow: inset 0 0 38px rgba(150, 7, 2, .08);
}

.smg-services .smg-framed-row {
    padding-top: 22px;
    padding-bottom: 18px;
}

.smg-section-heading p,
.smg-red-label {
    margin: 0 0 3px;
    color: var(--smg-red);
    font-size: .84rem;
    font-weight: 900;
    letter-spacing: .32em;
    text-transform: uppercase;
}

.smg-section-heading h2 {
    margin: 0 0 14px;
    color: var(--smg-gold);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: clamp(2rem, 4vw, 3.05rem);
    font-weight: 700;
    line-height: .95;
    text-transform: uppercase;
}

.smg-service-card,
.smg-artist-card,
.smg-feature-video,
.smg-video-thumb {
    border: 1px solid var(--smg-border);
    background: #050505;
}

.smg-service-card {
    display: flex;
    flex-direction: column;
    min-height: 304px;
}

.smg-card-image {
    aspect-ratio: 16 / 9;
    background-position: center;
    background-size: cover;
}

.smg-card-body {
    padding: 15px 16px 13px;
}

.smg-service-icon {
    display: block;
    color: var(--smg-red);
    margin-bottom: 8px;
}

.smg-service-icon svg {
    width: 31px;
    height: 31px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.smg-service-card h3 {
    margin: 0 0 10px;
    color: var(--smg-gold);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: 1.42rem;
    font-weight: 800;
    line-height: 1.02;
    text-transform: uppercase;
}

.smg-service-card p {
    min-height: 66px;
    margin: 0 0 15px;
    color: var(--smg-muted);
    font-size: .83rem;
    line-height: 1.45;
}

.smg-service-card a {
    color: var(--smg-gold-bright);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.smg-service-list-section {
    padding: clamp(28px, 4vw, 52px) 0 clamp(34px, 5vw, 70px);
}

.smg-service-list-grid {
    align-items: stretch;
}

.smg-service-list-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--smg-border);
    border-radius: 4px;
    background:
        linear-gradient(180deg, rgba(14, 13, 12, .98), rgba(4, 4, 4, .99));
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .65), inset 0 0 34px rgba(150, 7, 2, .1);
}

.smg-service-list-image {
    display: block;
    aspect-ratio: 16 / 6.15;
    min-height: 178px;
    background:
        linear-gradient(135deg, rgba(242, 8, 8, .16), rgba(200, 164, 90, .12)),
        #080808;
    background-position: center;
    background-size: cover;
}

.smg-service-list-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 24px 22px;
    background: linear-gradient(180deg, rgba(12, 12, 12, .98), rgba(4, 4, 4, 1));
}

.smg-service-list-body h2 {
    margin: 0 0 8px;
    color: var(--smg-text);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.15rem);
    font-weight: 700;
    line-height: 1;
}

.smg-service-list-body p {
    max-width: 470px;
    margin: 0 0 16px;
    color: #c8c3b8;
    font-size: 1.04rem;
    line-height: 1.32;
}

.smg-service-list-link {
    margin-top: auto;
    color: var(--smg-gold-bright);
    font-size: .84rem;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.smg-service-list-link span {
    margin-left: 14px;
    font-size: 1.25rem;
    line-height: 0;
}

.smg-service-list-card:hover,
.smg-service-list-card:focus-within {
    border-color: var(--smg-gold-bright);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .65), 0 0 22px rgba(200, 164, 90, .14);
}

.smg-service-list-card:hover .smg-service-list-link,
.smg-service-list-card:focus-within .smg-service-list-link {
    color: #fff4c3;
}

.smg-media-row .smg-framed-row,
.smg-project-row .smg-framed-row,
.smg-artists-row .smg-framed-row {
    padding-top: 16px;
    padding-bottom: 16px;
}

.smg-feature-video,
.smg-video-thumb {
    position: relative;
    display: block;
    overflow: hidden;
    color: var(--smg-gold);
}

.smg-feature-video .smg-media-image {
    aspect-ratio: 2.66 / 1;
}

.smg-video-thumb .smg-media-image {
    aspect-ratio: 1.95 / 1;
}

.smg-media-image,
.smg-artist-image {
    display: block;
    width: 100%;
    background-position: center;
    background-size: cover;
}

.smg-play-button {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 78px;
    height: 78px;
    border: 2px solid var(--smg-gold-bright);
    border-radius: 50%;
    background: rgba(0, 0, 0, .25);
}

.smg-play-button::after,
.smg-outline-button span::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-35%, -50%);
    width: 0;
    height: 0;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 14px solid var(--smg-gold-bright);
}

.smg-play-button-sm {
    width: 48px;
    height: 48px;
}

.smg-play-button-sm::after {
    border-top-width: 6px;
    border-bottom-width: 6px;
    border-left-width: 10px;
}

.smg-video-strip {
    margin-top: 14px;
}

.smg-video-thumb strong {
    display: block;
    padding: 8px 8px 0;
    color: var(--smg-gold);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: .09em;
    text-align: center;
    text-transform: uppercase;
}

.smg-feature-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 0 0 10px;
}

.smg-feature-content h2 {
    margin: 0 0 10px;
    color: var(--smg-gold);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: clamp(2.6rem, 5vw, 4.1rem);
    font-weight: 700;
    line-height: .88;
    text-transform: uppercase;
}

.smg-feature-content h2 span {
    display: block;
    color: var(--smg-gold);
}

.smg-feature-content p:not(.smg-red-label) {
    max-width: 390px;
    color: var(--smg-muted);
    font-size: .96rem;
    line-height: 1.45;
}

.smg-outline-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    min-height: 40px;
    border: 1px solid var(--smg-border);
    color: var(--smg-gold-bright);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.smg-outline-button span {
    position: relative;
    width: 22px;
    height: 22px;
    margin-left: 12px;
}

.smg-outline-button span::after {
    border-top-width: 5px;
    border-bottom-width: 5px;
    border-left-width: 8px;
}

.smg-stat-list {
    margin-top: 30px;
    border-left: 1px solid rgba(200, 164, 90, .55);
    padding-left: 34px;
}

.smg-stat {
    display: flex;
    align-items: center;
    gap: 22px;
    border-top: 1px solid rgba(200, 164, 90, .34);
    padding: 13px 0;
}

.smg-stat:first-child {
    border-top: 0;
}

.smg-stat > span {
    color: var(--smg-red);
}

.smg-stat svg {
    width: 33px;
    height: 33px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.smg-stat strong,
.smg-stat small {
    display: block;
    text-transform: uppercase;
}

.smg-stat strong {
    color: var(--smg-gold);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: .8;
}

.smg-stat small {
    color: var(--smg-gold-bright);
    font-size: .65rem;
    font-weight: 900;
    letter-spacing: .15em;
}

.smg-project {
    min-height: 244px;
    display: flex;
    align-items: stretch;
    background-position: center right;
    background-size: cover;
    overflow: hidden;
}

.smg-project-copy {
    width: min(42%, 390px);
    padding: 17px 24px 18px;
    background: linear-gradient(90deg, rgba(0, 0, 0, .96) 0%, rgba(0, 0, 0, .86) 72%, rgba(0, 0, 0, 0) 100%);
}

.smg-project-copy h2 {
    margin: 0 0 6px;
    color: var(--smg-red);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: clamp(4rem, 7vw, 6.1rem);
    font-weight: 900;
    line-height: .74;
    text-transform: uppercase;
}

.smg-project-copy h3 {
    margin: 0 0 8px;
    color: var(--smg-gold-bright);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: 1.65rem;
    font-weight: 800;
    text-transform: uppercase;
}

.smg-project-copy p:not(.smg-red-label) {
    max-width: 285px;
    margin-bottom: 12px;
    color: var(--smg-muted);
    font-size: .92rem;
    line-height: 1.35;
}

.smg-artists-row .smg-section-heading h2 {
    margin-bottom: 7px;
}

.smg-slider-controls {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.smg-slider-controls button {
    display: inline-grid;
    place-items: center;
    width: 37px;
    height: 34px;
    border: 1px solid var(--smg-border);
    background: transparent;
    color: var(--smg-gold-bright);
}

.smg-slider-controls svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.smg-artist-card {
    position: relative;
    overflow: hidden;
    min-height: 139px;
}

.smg-artist-image {
    height: 80px;
}

.smg-artist-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 28%, rgba(0, 0, 0, .94) 78%);
}

.smg-artist-meta {
    position: relative;
    padding: 0 13px 11px;
    margin-top: -4px;
}

.smg-artist-meta h3 {
    margin: 0;
    color: var(--smg-gold-bright);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.smg-artist-meta p {
    margin: -2px 0 5px;
    color: var(--smg-muted);
    font-size: .77rem;
}

.smg-artist-socials {
    gap: 9px;
}

.smg-artist-socials a {
    color: var(--smg-red);
}

.smg-artist-socials svg {
    width: 15px;
    height: 15px;
}

.smg-media-feature-row .smg-framed-row,
.smg-artist-media-row .smg-framed-row {
    padding-top: 16px;
    padding-bottom: 16px;
}

.smg-media-feature-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(380px, .95fr);
    min-height: clamp(330px, 39vw, 466px);
    overflow: hidden;
    border: 1px solid rgba(200, 164, 90, .48);
    background:
        radial-gradient(circle at 56% 46%, rgba(132, 1, 1, .13), transparent 36%),
        linear-gradient(90deg, rgba(5, 5, 5, .98), rgba(0, 0, 0, .99));
}

.smg-media-feature-art {
    position: relative;
    min-height: inherit;
    background-position: center;
    background-size: cover;
}

.smg-media-feature-art::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .2) 62%, rgba(0, 0, 0, .84) 100%),
        linear-gradient(180deg, transparent 44%, rgba(0, 0, 0, .78) 100%);
}

.smg-media-feature-title {
    position: absolute;
    right: 7%;
    bottom: 9%;
    left: 7%;
    z-index: 1;
    font-family: "Barlow Condensed", Impact, sans-serif;
    line-height: .8;
    text-align: center;
    text-transform: uppercase;
}

.smg-media-feature-title strong,
.smg-media-feature-title span {
    display: block;
    font-size: clamp(4.4rem, 9vw, 8.35rem);
    font-weight: 900;
    letter-spacing: .02em;
    text-shadow: 0 4px 18px #000;
}

.smg-media-feature-title strong {
    color: rgba(244, 239, 227, .7);
}

.smg-media-feature-title span {
    color: var(--smg-red-dark);
}

.smg-media-feature-title small {
    display: block;
    margin-top: 13px;
    color: rgba(244, 239, 227, .68);
    font-size: clamp(1.1rem, 2.2vw, 1.85rem);
    font-weight: 800;
    letter-spacing: .18em;
}

.smg-media-feature-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(26px, 4vw, 54px) clamp(24px, 4vw, 50px);
}

.smg-media-feature-kicker {
    margin: 0 0 13px;
    color: var(--smg-gold);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .24em;
    text-transform: uppercase;
}

.smg-media-feature-copy h2 {
    margin: 0 0 18px;
    color: #f4efe3;
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: clamp(3rem, 5.2vw, 5.1rem);
    font-weight: 800;
    line-height: .88;
    text-transform: uppercase;
}

.smg-media-feature-copy p:not(.smg-media-feature-kicker) {
    max-width: 430px;
    margin: 0 0 18px;
    color: #cbc4bb;
    font-size: .98rem;
    font-weight: 700;
    line-height: 1.42;
}

.smg-media-feature-network {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 10px 0 22px;
    color: var(--smg-gold-bright);
    text-transform: uppercase;
}

.smg-media-feature-network span,
.smg-media-feature-network small {
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .18em;
}

.smg-media-feature-network strong {
    color: #f4efe3;
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: 3rem;
    font-weight: 900;
    line-height: .78;
}

.smg-artist-media-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.smg-artist-media-card {
    overflow: hidden;
    border: 1px solid var(--smg-border);
    border-radius: 4px;
    background: #050505;
}

.smg-artist-media-image {
    position: relative;
    display: block;
    aspect-ratio: 1.82 / 1;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 30%, rgba(203, 16, 16, .34), transparent 34%),
        linear-gradient(135deg, #160202, #050505);
    color: rgba(224, 38, 28, .78);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: clamp(3.4rem, 7vw, 5.8rem);
    font-weight: 900;
    text-align: center;
}

.smg-artist-media-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .22));
}

.smg-artist-media-image img,
.smg-artist-media-image > span:not(.smg-play-button) {
    display: block;
    width: 100%;
    height: 100%;
}

.smg-artist-media-image img {
    object-fit: cover;
    object-position: center top;
}

.smg-artist-media-image > span:not(.smg-play-button) {
    display: grid;
    place-items: center;
}

.smg-artist-media-image .smg-play-button {
    z-index: 1;
}

.smg-artist-media-body {
    display: flex;
    min-height: 86px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px 15px;
    background: linear-gradient(180deg, rgba(12, 12, 12, .98), rgba(5, 5, 5, 1));
}

.smg-artist-media-body h2 {
    margin: 0;
    color: #f4efe3;
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: clamp(1.35rem, 2vw, 1.65rem);
    font-weight: 700;
    letter-spacing: .08em;
    line-height: .95;
    text-transform: uppercase;
}

.smg-artist-media-body p {
    margin: 4px 0 0;
    color: var(--smg-gold);
    font-size: .82rem;
    font-weight: 800;
}

.smg-artist-media-body > a {
    flex: 0 0 auto;
    color: var(--smg-gold-bright);
    font-size: 1.6rem;
    line-height: 1;
}

.smg-artist-media-actions {
    display: flex;
    justify-content: center;
    margin-top: 14px;
}

.smg-artist-media-empty {
    border: 1px solid rgba(200, 164, 90, .38);
    padding: 24px;
    text-align: center;
}

.smg-artist-media-empty p {
    margin: 0;
    color: var(--smg-muted);
    font-weight: 700;
}

.smg-create-callout-row {
    padding-bottom: 0;
}

.smg-create-callout {
    position: relative;
    display: flex;
    align-items: center;
    min-height: clamp(178px, 22vw, 252px);
    overflow: hidden;
    border-top: 1px solid rgba(200, 164, 90, .5);
    border-bottom: 1px solid rgba(200, 164, 90, .5);
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .5) 44%, rgba(0, 0, 0, .08) 100%),
        url("/images/theme/syndicate-media-groups/media_callout_bg.png") right center / cover no-repeat;
}

.smg-create-callout::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .34));
}

.smg-create-callout-copy {
    position: relative;
    z-index: 1;
}

.smg-create-callout-copy {
    align-self: center;
    padding: clamp(24px, 4vw, 40px) clamp(26px, 5vw, 58px);
    text-transform: uppercase;
}

.smg-create-callout-copy h2 {
    margin: 0 0 10px;
    color: #f4efe3;
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: clamp(2.8rem, 5.2vw, 4.85rem);
    font-weight: 800;
    line-height: .9;
}

.smg-create-callout-copy h2 span {
    display: block;
    color: var(--smg-gold);
}

.smg-create-callout-copy p {
    max-width: 610px;
    margin: 0;
    color: #d8d3cb;
    font-size: clamp(.94rem, 1.3vw, 1.12rem);
    font-weight: 700;
    line-height: 1.45;
    text-transform: none;
}

.smg-artist-listing {
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding: clamp(38px, 5vw, 74px) 0 clamp(44px, 6vw, 84px);
    background: transparent;
}

.smg-artist-listing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(24px, 3vw, 36px);
}

.smg-artist-listing-card {
    overflow: hidden;
    border: 2px solid rgba(168, 120, 25, .82);
    border-radius: 5px;
    background:
        radial-gradient(circle at 74% 0%, rgba(143, 3, 3, .12), transparent 34%),
        linear-gradient(180deg, rgba(8, 7, 5, .96), rgba(0, 0, 0, .99));
    box-shadow:
        inset 0 0 30px rgba(200, 164, 90, .08),
        0 24px 50px rgba(0, 0, 0, .38);
}

.smg-artist-listing-image {
    display: block;
    overflow: hidden;
    aspect-ratio: 1.45 / 1;
    background:
        radial-gradient(circle at 50% 28%, rgba(203, 16, 16, .34), transparent 34%),
        linear-gradient(135deg, #160202, #050505);
    color: rgba(224, 38, 28, .78);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: clamp(4.5rem, 10vw, 8rem);
    font-weight: 900;
    text-decoration: none;
}

.smg-artist-listing-image img,
.smg-artist-listing-image span {
    display: block;
    width: 100%;
    height: 100%;
}

.smg-artist-listing-image img {
    object-fit: cover;
    object-position: center;
    transition: transform .26s ease, filter .26s ease;
}

.smg-artist-listing-image span {
    display: grid;
    place-items: center;
}

.smg-artist-listing-card:hover .smg-artist-listing-image img,
.smg-artist-listing-card:focus-within .smg-artist-listing-image img {
    filter: contrast(1.06) saturate(1.08);
    transform: scale(1.025);
}

.smg-artist-listing-body {
    padding: 18px 22px 20px;
    background: linear-gradient(180deg, rgba(8, 8, 7, .98), rgba(0, 0, 0, .99));
}

.smg-artist-listing-body h2 {
    margin: 0 0 4px;
    color: #f4efe3;
    font-size: clamp(1.28rem, 2vw, 1.68rem);
    font-weight: 800;
    line-height: 1.05;
}

.smg-artist-listing-body p {
    margin: 0 0 13px;
    color: var(--smg-muted);
    font-size: .98rem;
    font-weight: 700;
    line-height: 1.2;
}

.smg-artist-listing-socials {
    display: flex;
    min-height: 24px;
    align-items: center;
    gap: 18px;
    margin-bottom: 17px;
}

.smg-artist-listing-socials a {
    display: inline-grid;
    place-items: center;
    color: var(--smg-red);
    transition: color .18s ease, transform .18s ease;
}

.smg-artist-listing-socials a:hover,
.smg-artist-listing-socials a:focus {
    color: var(--smg-gold-bright);
    transform: translateY(-1px);
}

.smg-artist-listing-socials svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    stroke: none;
}

.smg-artist-listing-link {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    color: var(--smg-gold-bright);
    font-size: .92rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: color .18s ease;
}

.smg-artist-listing-link span {
    font-size: 1.35rem;
    line-height: 1;
    transition: transform .18s ease;
}

.smg-artist-listing-link:hover,
.smg-artist-listing-link:focus {
    color: #fff;
}

.smg-artist-listing-link:hover span,
.smg-artist-listing-link:focus span {
    transform: translateX(4px);
}

.smg-artist-listing-empty {
    border: 2px solid rgba(168, 120, 25, .72);
    border-radius: 5px;
    padding: 34px;
    background: rgba(0, 0, 0, .72);
    text-align: center;
}

.smg-artist-listing-empty p {
    margin: 0;
    color: var(--smg-muted);
    font-weight: 800;
    text-transform: uppercase;
}

.smg-artist-info-detail {
    position: relative;
    overflow: hidden;
    padding: clamp(54px, 6vw, 92px) 0 clamp(58px, 7vw, 104px);
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .98) 0%, rgba(0, 0, 0, .92) 37%, rgba(0, 0, 0, .72) 67%, rgba(0, 0, 0, .9) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, .22) 0%, #000 100%),
        url("/images/theme/syndicate-media-groups/smg-hero-full.png") right center / cover no-repeat;
}

.smg-artist-info-layout {
    display: grid;
    grid-template-columns: minmax(280px, 390px) minmax(0, 1fr);
    gap: clamp(38px, 6vw, 74px);
    align-items: start;
}

.smg-artist-info-profile {
    position: relative;
    border-right: 2px solid rgba(168, 120, 25, .48);
    padding-right: clamp(24px, 3vw, 42px);
}

.smg-artist-info-heading {
    margin-bottom: 23px;
    text-transform: uppercase;
}

.smg-artist-info-heading h2 {
    margin: 0;
    color: rgba(198, 164, 93, .82);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: clamp(3.4rem, 6vw, 5.6rem);
    font-weight: 900;
    letter-spacing: .05em;
    line-height: .82;
}

.smg-artist-info-heading p {
    margin: 9px 0 0;
    color: var(--smg-red);
    font-size: clamp(1.12rem, 1.8vw, 1.58rem);
    font-weight: 900;
    letter-spacing: .16em;
}

.smg-artist-info-photo {
    overflow: hidden;
    border: 2px solid rgba(168, 120, 25, .74);
    background:
        radial-gradient(circle at 50% 20%, rgba(143, 3, 3, .22), transparent 36%),
        #050505;
    box-shadow: inset 0 0 30px rgba(200, 164, 90, .08);
}

.smg-artist-info-photo img,
.smg-artist-info-photo span {
    display: block;
    width: 100%;
    aspect-ratio: .72 / 1;
}

.smg-artist-info-photo img {
    object-fit: cover;
    object-position: center top;
}

.smg-artist-info-photo span {
    display: grid;
    place-items: center;
    color: rgba(224, 38, 28, .78);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: 8rem;
    font-weight: 900;
}

.smg-artist-info-connect {
    margin-top: 18px;
    padding: 0 4px;
}

.smg-artist-info-connect p {
    margin: 0 0 14px;
    color: #f4efe3;
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.smg-artist-info-socials {
    display: flex;
    align-items: center;
    gap: 22px;
}

.smg-artist-info-socials a {
    display: inline-grid;
    place-items: center;
    color: var(--smg-red);
    transition: color .18s ease, transform .18s ease;
}

.smg-artist-info-socials a:hover,
.smg-artist-info-socials a:focus {
    color: var(--smg-gold-bright);
    transform: translateY(-1px);
}

.smg-artist-info-socials svg {
    width: 21px;
    height: 21px;
    fill: currentColor;
    stroke: none;
}

.smg-artist-info-copy {
    position: relative;
    min-height: 100%;
    padding-top: 10px;
}

.smg-artist-info-copy::after {
    content: "";
    position: absolute;
    top: 18px;
    right: -8%;
    bottom: 0;
    width: min(36vw, 455px);
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, .82));
    pointer-events: none;
}

.smg-artist-info-copy-inner {
    position: relative;
    z-index: 1;
    width: min(100%, 760px);
}

.smg-artist-info-kicker {
    position: relative;
    margin: 0 0 29px;
    color: rgba(198, 164, 93, .92);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: clamp(1.38rem, 2.1vw, 2rem);
    font-weight: 900;
    letter-spacing: .16em;
    line-height: 1;
    text-transform: uppercase;
}

.smg-artist-info-kicker::after {
    content: "";
    display: block;
    width: 52px;
    height: 3px;
    margin-top: 13px;
    background: var(--smg-red);
}

.smg-artist-info-description {
    color: #c8c1b8;
    font-size: clamp(1rem, 1.18vw, 1.12rem);
    font-weight: 700;
    line-height: 1.68;
}

.smg-artist-info-description p {
    margin: 0 0 22px;
}

.smg-artist-info-description p:last-child {
    margin-bottom: 0;
}

.smg-artist-info-quote {
    position: relative;
    margin: clamp(26px, 4vw, 40px) 0 0;
    padding: 24px 0 14px 58px;
    color: rgba(198, 164, 93, .92);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: clamp(2rem, 3.8vw, 3.25rem);
    font-weight: 900;
    letter-spacing: .08em;
    line-height: 1.08;
    text-transform: uppercase;
}

.smg-artist-info-quote::before,
.smg-artist-info-quote::after {
    content: "";
    position: absolute;
    height: 3px;
    background: linear-gradient(90deg, rgba(198, 164, 93, .95), rgba(198, 164, 93, .25));
}

.smg-artist-info-quote::before {
    top: 0;
    left: 54px;
    width: min(100%, 520px);
}

.smg-artist-info-quote::after {
    right: 0;
    bottom: 0;
    width: min(100%, 460px);
}

.smg-artist-info-quote blockquote {
    margin: 0;
}

.smg-artist-info-quote blockquote::before,
.smg-artist-info-quote blockquote::after {
    color: var(--smg-red);
    font-size: 3rem;
    line-height: 0;
}

.smg-artist-info-quote blockquote::before {
    content: "\201C";
    position: absolute;
    top: 31px;
    left: 0;
}

.smg-artist-info-quote blockquote::after {
    content: "\201D";
    display: inline-block;
    margin-left: 14px;
    transform: translateY(18px);
}

.smg-artist-discography {
    position: relative;
    overflow: hidden;
    padding: clamp(48px, 6vw, 86px) 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .98), rgba(5, 5, 5, .98)),
        #050505;
}

.smg-discography-header {
    margin-bottom: clamp(22px, 3vw, 34px);
}

.smg-discography-header span {
    display: block;
    margin-bottom: 7px;
    color: var(--smg-red);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    font-weight: 900;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.smg-discography-header h2 {
    margin: 0;
    color: #f4efe3;
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: clamp(2.4rem, 6vw, 5rem);
    font-weight: 900;
    line-height: .9;
    text-transform: uppercase;
}

.smg-discography-accordion {
    display: grid;
    gap: 8px;
}

.smg-discography-item {
    overflow: hidden;
    border: 1px solid rgba(168, 120, 25, .62);
    border-radius: 5px;
    background: linear-gradient(180deg, rgba(18, 18, 18, .96), rgba(7, 7, 7, .98));
}

.smg-discography-toggle {
    display: grid;
    grid-template-columns: 58px minmax(180px, 1fr) minmax(100px, .6fr) 78px 32px;
    gap: clamp(14px, 2.2vw, 34px);
    align-items: center;
    min-height: 70px;
    padding: 10px 20px;
    border: 0;
    background: rgba(12, 12, 12, .92);
    box-shadow: none;
    color: #d8d2c7;
    font-weight: 800;
}

.smg-discography-toggle:not(.collapsed) {
    background: linear-gradient(180deg, rgba(18, 18, 18, .98), rgba(7, 7, 7, .98));
    color: #f4efe3;
    box-shadow: inset 0 0 0 1px rgba(168, 120, 25, .34);
}

.smg-discography-toggle:focus {
    border-color: transparent;
    box-shadow: inset 0 0 0 2px rgba(224, 38, 28, .52);
}

.smg-discography-toggle::after {
    content: none;
}

.smg-discography-toggle-cover {
    overflow: hidden;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(168, 120, 25, .55);
    background: #000;
}

.smg-discography-toggle-cover img,
.smg-discography-release-cover img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.smg-discography-toggle-title {
    min-width: 0;
    color: #f4efe3;
    font-size: clamp(1rem, 1.25vw, 1.2rem);
}

.smg-discography-toggle-type,
.smg-discography-toggle-year {
    color: #a8a199;
    font-size: .98rem;
}

.smg-discography-toggle-icon {
    position: relative;
    width: 18px;
    height: 18px;
    justify-self: end;
}

.smg-discography-toggle-icon::before,
.smg-discography-toggle-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 11px;
    height: 3px;
    background: var(--smg-red);
    transition: transform .18s ease;
}

.smg-discography-toggle-icon::before {
    left: 0;
    transform: rotate(45deg);
}

.smg-discography-toggle-icon::after {
    right: 0;
    transform: rotate(-45deg);
}

.smg-discography-toggle.collapsed .smg-discography-toggle-icon::before {
    transform: rotate(-45deg);
}

.smg-discography-toggle.collapsed .smg-discography-toggle-icon::after {
    transform: rotate(45deg);
}

.smg-discography-body {
    padding: clamp(18px, 2vw, 26px);
    border-top: 1px solid rgba(168, 120, 25, .42);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .01)),
        rgba(7, 7, 7, .96);
}

.smg-discography-release {
    display: grid;
    grid-template-columns: minmax(150px, 220px) minmax(0, 1fr);
    gap: clamp(22px, 3vw, 46px);
    align-items: start;
}

.smg-discography-release-cover {
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border: 2px solid rgba(168, 120, 25, .64);
    background: #000;
}

.smg-discography-release-info h4 {
    margin: 0 0 12px;
    color: rgba(198, 164, 93, .92);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: clamp(2rem, 3.8vw, 3.4rem);
    font-weight: 900;
    line-height: .92;
    text-transform: uppercase;
}

.smg-discography-release-meta {
    display: flex;
    gap: 15px;
    align-items: center;
    margin: 0 0 18px;
    color: #d9d1c8;
    font-weight: 900;
}

.smg-discography-release-meta span + span::before {
    content: "\2022";
    margin-right: 15px;
    color: rgba(198, 164, 93, .84);
}

.smg-discography-copy {
    max-width: 640px;
    color: #c8c1b8;
    font-size: clamp(.98rem, 1.08vw, 1.08rem);
    font-weight: 700;
    line-height: 1.72;
}

.smg-discography-copy p {
    margin: 0 0 14px;
}

.smg-discography-copy p:last-child {
    margin-bottom: 0;
}

.smg-discography-tracks {
    grid-column: 1 / -1;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(4, 4, 4, .48);
}

.smg-discography-track-head,
.smg-discography-track {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr) 88px 46px;
    align-items: center;
    min-height: 38px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.smg-discography-track-head {
    min-height: 42px;
    color: var(--smg-red);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.smg-discography-track-head > span,
.smg-discography-track > span {
    padding: 0 14px;
}

.smg-discography-track {
    color: #d6d0c8;
    font-size: .96rem;
    font-weight: 800;
}

.smg-discography-track:last-child {
    border-bottom: 0;
}

.smg-discography-track-number,
.smg-discography-track-time {
    color: #aaa39b;
}

.smg-discography-play {
    display: grid;
    box-sizing: border-box;
    width: 30px;
    height: 30px;
    padding: 0;
    place-items: center;
    justify-self: center;
    border: 2px solid rgba(244, 239, 227, .72);
    border-radius: 999px;
    color: #f4efe3;
    text-decoration: none;
    transition: border-color .18s ease, color .18s ease, transform .18s ease;
}

.smg-discography-track > .smg-discography-play {
    padding: 0;
}

.smg-discography-play:hover,
.smg-discography-play:focus,
.smg-discography-play.is-playing {
    border-color: var(--smg-red);
    color: var(--smg-red);
    transform: scale(1.06);
}

.smg-discography-play-icon {
    display: block;
    width: 11px;
    height: 13px;
    margin-left: 2px;
    background: currentColor;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.smg-discography-play.is-playing .smg-discography-play-icon {
    width: 10px;
    height: 12px;
    margin-left: 0;
    background: transparent;
    clip-path: none;
    border-right: 3px solid currentColor;
    border-left: 3px solid currentColor;
}

.smg-discography-play-disabled {
    opacity: .32;
    pointer-events: none;
}

.smg-discography-empty,
.smg-discography-empty-card {
    margin: 0;
    padding: 22px;
    color: #c8c1b8;
    font-weight: 800;
}

.smg-discography-empty-card {
    border: 1px solid rgba(168, 120, 25, .62);
    border-radius: 5px;
    background: rgba(8, 8, 8, .92);
}

.smg-footer {
    border-top: 1px solid rgba(180, 120, 17, .42);
    border-bottom: 1px solid rgba(180, 120, 17, .28);
    padding: 15px 0 22px;
    background: #020202;
}

.smg-footer-heading {
    font-family: "Barlow Condensed", Impact, sans-serif;
    line-height: .88;
    text-transform: uppercase;
}

.smg-footer-heading span {
    display: block;
    color: #f1e7d6;
    font-size: 2.05rem;
    font-style: italic;
    letter-spacing: .14em;
}

.smg-footer-heading strong {
    display: block;
    color: var(--smg-red);
    font-size: 2.65rem;
    font-style: italic;
    font-weight: 800;
    letter-spacing: .06em;
}

.smg-footer p {
    margin: 8px 0 0;
    color: var(--smg-muted);
    font-size: .84rem;
    line-height: 1.35;
}

.smg-subscribe-form {
    display: grid;
    grid-template-columns: 1fr 128px;
    width: min(100%, 420px);
    margin: 0 auto 9px;
    border: 1px solid var(--smg-border);
}

.smg-subscribe-form input,
.smg-subscribe-form button {
    min-height: 36px;
    border: 0;
    font-size: .78rem;
}

.smg-subscribe-form input {
    padding: 0 17px;
    background: #050505;
    color: #fff;
}

.smg-subscribe-form button {
    background: linear-gradient(90deg, #d8b36a, #f2d38d);
    color: #150c02;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.smg-subscribe-form button:disabled {
    cursor: wait;
    opacity: .7;
}

.smg-footer-socials {
    margin-top: 14px;
    justify-content: center;
    gap: 28px;
}

.smg-footer-nav,
.smg-footer-legal {
    display: block;
    color: var(--smg-muted);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.smg-footer-nav {
    margin: 0 0 9px;
    text-align: center;
}

.smg-footer-legal {
    text-align: center;
}

.smg-footer-nav a,
.smg-footer-legal a,
.smg-footer-credit a {
    color: var(--smg-gold-bright);
}

.smg-footer-nav a + a::before {
    content: "|";
    margin: 0 9px 0 6px;
    color: rgba(239, 200, 115, .48);
}

.smg-footer-nav a:hover,
.smg-footer-legal a:hover,
.smg-footer-credit a:hover {
    color: #fff;
}

.smg-footer-credit {
    margin-top: 12px;
    text-align: center;
    color: #7d7972;
    font-size: .62rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: none;
}

.smg-footer-credit a {
    color: #9b958b;
    font-weight: 700;
}

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

.smg-contact-submit-button {
    background: linear-gradient(180deg, var(--smg-red), var(--smg-red-dark));
    box-shadow: 0 0 18px rgba(242, 8, 8, .34);
}

.smg-contact-submit-button:disabled {
    cursor: wait;
    opacity: .68;
}

.smg-contact-modal-secondary {
    background: rgba(255, 255, 255, .08);
}

.smg-contact-modal .modal-content {
    max-height: calc(100dvh - 2rem);
    border: 1px solid rgba(200, 164, 90, .58);
    border-radius: 7px;
    background:
        linear-gradient(135deg, rgba(242, 8, 8, .08), transparent 42%),
        rgba(3, 3, 3, .995);
    color: #f5f5f5;
}

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

.smg-contact-modal .modal-title {
    margin: 0;
    color: var(--smg-gold-bright);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: 1.7rem;
    font-style: italic;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

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

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

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

.smg-contact-modal input,
.smg-contact-modal select,
.smg-contact-modal textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 3px;
    background-color: rgba(255, 255, 255, .06);
    color: #fff;
    font: inherit;
    padding: .75rem .85rem;
}

.smg-contact-modal select {
    color-scheme: dark;
}

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

.smg-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");
}

.smg-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");
}

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

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

.smg-contact-artist-dropdown {
    width: 100%;
}

.smg-contact-artist-toggle {
    display: flex;
    width: 100%;
    min-height: 49px;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 3px;
    background-color: rgba(255, 255, 255, .06);
    color: #fff;
    font: inherit;
    padding: .75rem .85rem;
    text-align: left;
}

.smg-contact-artist-toggle:focus,
.smg-contact-artist-toggle.show {
    border-color: rgba(200, 164, 90, .72);
    outline: 0;
    box-shadow: 0 0 0 .15rem rgba(200, 164, 90, .18);
}

.smg-contact-artist-toggle-icon {
    width: 9px;
    height: 9px;
    flex: 0 0 auto;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    color: var(--smg-gold-bright);
    transform: translateY(-2px) rotate(45deg);
}

.smg-contact-artist-menu {
    --bs-dropdown-min-width: 100%;
    --bs-dropdown-padding-x: .35rem;
    --bs-dropdown-padding-y: .4rem;
    width: 100%;
    max-height: 230px;
    overflow-y: auto;
    border: 1px solid rgba(200, 164, 90, .42);
    border-radius: 0;
    background: rgba(0, 0, 0, .96);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .45);
}

.smg-contact-artist-item {
    color: #f6f0e7;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .08em;
    padding: .65rem .8rem;
    text-transform: uppercase;
}

.smg-contact-artist-item:hover,
.smg-contact-artist-item:focus {
    background: rgba(242, 8, 8, .18);
    color: var(--smg-gold-bright);
}

.smg-footer .col-lg-4 {
    text-align: right;
}

.smg-footer-brand .smg-brand-mark {
    width: 57px;
    height: 57px;
    font-size: 36px;
}

.smg-footer-brand .smg-brand-text strong {
    font-size: 2.8rem;
}

.smg-footer-tagline {
    color: var(--smg-gold-bright) !important;
    font-size: .76rem !important;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.smg-page #terms-of-service {
    margin-top: 0 !important;
    padding: clamp(42px, 6vw, 76px) 0;
    background:
        radial-gradient(circle at 14% 0%, rgba(242, 8, 8, .16), transparent 30rem),
        radial-gradient(circle at 84% 8%, rgba(200, 164, 90, .18), transparent 28rem),
        linear-gradient(180deg, #030303 0%, #080603 58%, #000 100%);
}

.smg-page #terms-of-service .lineup-contents {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.smg-page #terms-of-service .container {
    width: min(100%, 980px);
    padding-right: 26px;
    padding-left: 26px;
}

.smg-page #terms-of-service h1 {
    margin: 0 0 22px;
    color: var(--smg-gold-bright);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: clamp(2.7rem, 6vw, 5rem);
    font-style: italic;
    font-weight: 900;
    line-height: .88;
    text-transform: uppercase;
}

.smg-page #terms-of-service .card {
    border: 1px solid rgba(200, 164, 90, .5) !important;
    border-radius: 0;
    padding: clamp(22px, 4vw, 42px) !important;
    background:
        linear-gradient(180deg, rgba(9, 8, 5, .96), rgba(0, 0, 0, .92)) !important;
    color: var(--smg-text);
    box-shadow: inset 0 0 0 1px rgba(242, 8, 8, .12), 0 24px 60px rgba(0, 0, 0, .36);
}

.smg-page #terms-of-service .card h1 {
    color: var(--smg-red);
}

.smg-page #terms-of-service h4,
.smg-page #terms-of-service strong {
    color: var(--smg-gold-bright);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: 1.25rem !important;
    font-style: italic;
    font-weight: 900;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.smg-page #terms-of-service p,
.smg-page #terms-of-service li,
.smg-page #terms-of-service .card {
    color: #e8ddc8;
    font-size: .98rem;
    line-height: 1.75;
}

.smg-page #terms-of-service ol,
.smg-page #terms-of-service ul {
    padding-left: 1.35rem;
}

.smg-page #terms-of-service li {
    margin-bottom: 1rem;
}

.smg-page #terms-of-service a {
    color: var(--smg-gold-bright);
    font-weight: 800;
}

.smg-page #terms-of-service a:hover,
.smg-page #terms-of-service a:focus {
    color: #fff;
}

.smg-page #media_gallery {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: clamp(42px, 6vw, 76px) 0;
    background:
        radial-gradient(circle at 16% 0%, rgba(242, 8, 8, .18), transparent 30rem),
        radial-gradient(circle at 86% 10%, rgba(200, 164, 90, .16), transparent 28rem),
        linear-gradient(180deg, #030303 0%, #070503 58%, #000 100%);
}

.smg-page #media_gallery .lineup-contents {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    background: transparent !important;
}

.smg-page #media_gallery .ellipse-image-2 {
    display: none;
}

.smg-page #media_gallery .container {
    width: min(100%, 1180px);
    padding-right: 26px;
    padding-left: 26px;
}

.smg-page #media_gallery .section-title {
    margin-bottom: clamp(22px, 4vw, 42px) !important;
}

.smg-page #media_gallery .straight-line-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem .8rem;
    align-items: center;
    color: var(--smg-gold-bright);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: clamp(2.25rem, 5vw, 4.6rem) !important;
    font-style: italic;
    font-weight: 900 !important;
    line-height: .9;
    text-transform: uppercase;
}

.smg-page #media_gallery .straight-line {
    width: 52px;
    height: 3px;
    background: var(--smg-red);
}

.smg-page #media_gallery .straight-line-wrapper a {
    color: var(--smg-red);
}

.smg-page #media_gallery .straight-line-wrapper a:hover,
.smg-page #media_gallery .straight-line-wrapper a:focus {
    color: #fff;
}

.smg-page #media_gallery .row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: clamp(14px, 2vw, 24px);
    margin-right: 0;
    margin-left: 0;
}

.smg-page #media_gallery .lineup-image-wrapper {
    width: auto;
    max-width: none;
    padding: 0;
}

.smg-page #media_gallery .gallery-image {
    overflow: hidden;
    height: 100%;
    border-radius: 0;
}

.smg-page #media_gallery .image-link,
.smg-page #media_gallery .video-popup-link {
    position: relative;
    display: block;
    overflow: hidden;
    height: 100%;
    min-height: 190px;
    border: 1px solid rgba(200, 164, 90, .52);
    border-radius: 0;
    background: #050505;
    box-shadow: inset 0 0 0 1px rgba(242, 8, 8, .08), 0 18px 42px rgba(0, 0, 0, .32);
}

.smg-page #media_gallery .image-link::before,
.smg-page #media_gallery .video-popup-link::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, transparent 46%, rgba(0, 0, 0, .62)),
        radial-gradient(circle at 50% 50%, transparent 48%, rgba(242, 8, 8, .18));
    opacity: 0;
    transition: opacity .22s ease;
}

.smg-page #media_gallery .video-popup-link::after {
    content: "Play";
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 2;
    border: 1px solid rgba(200, 164, 90, .72);
    background: rgba(0, 0, 0, .82);
    color: var(--smg-gold-bright);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .12em;
    padding: .35rem .55rem;
    text-transform: uppercase;
}

.smg-page #media_gallery .image-link img,
.smg-page #media_gallery .video-popup-link img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    min-height: 190px !important;
    aspect-ratio: 1 / 1;
    border-radius: 0 !important;
    object-fit: cover;
    filter: saturate(.92) contrast(1.08);
    transition: transform .24s ease, filter .24s ease;
}

.smg-page #media_gallery .image-link:hover,
.smg-page #media_gallery .image-link:focus,
.smg-page #media_gallery .video-popup-link:hover,
.smg-page #media_gallery .video-popup-link:focus {
    border-color: var(--smg-red);
    outline: 0;
}

.smg-page #media_gallery .image-link:hover::before,
.smg-page #media_gallery .image-link:focus::before,
.smg-page #media_gallery .video-popup-link:hover::before,
.smg-page #media_gallery .video-popup-link:focus::before {
    opacity: 1;
}

.smg-page #media_gallery .image-link:hover img,
.smg-page #media_gallery .image-link:focus img,
.smg-page #media_gallery .video-popup-link:hover img,
.smg-page #media_gallery .video-popup-link:focus img {
    transform: scale(1.045);
    filter: saturate(1.08) contrast(1.12);
}

.glightbox-clean.smg-gallery-lightbox .gslide-media {
    border: 1px solid rgba(200, 164, 90, .58);
    background: #050505;
}

.glightbox-clean.smg-gallery-lightbox .gslide-description {
    background: #050505;
    color: var(--smg-text);
}

.smg-staff-listing {
    padding: clamp(34px, 5vw, 62px) 0;
    background:
        radial-gradient(circle at 3% 7%, rgba(242, 8, 8, .24), transparent 22rem),
        radial-gradient(circle at 96% 90%, rgba(242, 8, 8, .16), transparent 24rem),
        linear-gradient(180deg, #030303 0%, #070503 52%, #000 100%);
}

.smg-staff-frame {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(200, 164, 90, .58);
    clip-path: polygon(14px 0, calc(100% - 14px) 0, 100% 14px, 100% calc(100% - 14px), calc(100% - 14px) 100%, 14px 100%, 0 calc(100% - 14px), 0 14px);
    padding: clamp(28px, 5vw, 62px) clamp(18px, 5vw, 74px) 0;
    background:
        linear-gradient(90deg, rgba(242, 8, 8, .12), transparent 20%, transparent 80%, rgba(200, 164, 90, .08)),
        radial-gradient(circle at 50% 0%, rgba(200, 164, 90, .08), transparent 34rem),
        rgba(5, 5, 5, .96);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .78), 0 24px 70px rgba(0, 0, 0, .36);
}

.smg-staff-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .88)),
        repeating-linear-gradient(110deg, rgba(255, 255, 255, .018) 0 1px, transparent 1px 9px);
    pointer-events: none;
}

.smg-staff-frame > * {
    position: relative;
    z-index: 1;
}

.smg-staff-header {
    max-width: 900px;
    margin: 0 auto clamp(28px, 4vw, 46px);
    text-align: center;
}

.smg-staff-kicker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    color: var(--smg-red);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: .38em;
    text-transform: uppercase;
}

.smg-staff-kicker span {
    width: 48px;
    height: 2px;
    background: var(--smg-red);
}

.smg-staff-header h1 {
    margin: 10px 0 12px;
    color: var(--smg-gold-bright);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: clamp(3.3rem, 8vw, 6.7rem);
    font-style: italic;
    font-weight: 900;
    letter-spacing: .03em;
    line-height: .82;
    text-transform: uppercase;
    text-shadow: 0 2px 0 rgba(90, 58, 12, .8), 0 0 24px rgba(200, 164, 90, .18);
}

.smg-staff-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: var(--smg-gold-bright);
    font-family: Georgia, serif;
    font-size: 2rem;
    font-weight: 900;
}

.smg-staff-mark::before,
.smg-staff-mark::after {
    content: "";
    width: min(28vw, 260px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 164, 90, .68), transparent);
}

.smg-staff-header p {
    max-width: 660px;
    margin: 16px auto 0;
    color: #dfd3bf;
    font-size: clamp(.98rem, 1.2vw, 1.18rem);
    font-weight: 600;
    line-height: 1.48;
}

.smg-staff-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2.5vw, 30px);
    justify-items: center;
}

.smg-staff-card {
    position: relative;
    overflow: hidden;
    width: min(100%, 296px);
    border: 1px solid rgba(200, 164, 90, .7);
    clip-path: polygon(13px 0, calc(100% - 13px) 0, 100% 13px, 100% calc(100% - 13px), calc(100% - 13px) 100%, 13px 100%, 0 calc(100% - 13px), 0 13px);
    background: #050505;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .86), 0 18px 42px rgba(0, 0, 0, .4);
}

.smg-staff-card::before,
.smg-staff-card::after {
    content: "";
    position: absolute;
    left: 50%;
    z-index: 2;
    width: 92px;
    height: 3px;
    background: var(--smg-red);
    box-shadow: 0 0 18px rgba(242, 8, 8, .85);
    transform: translateX(-50%);
    pointer-events: none;
}

.smg-staff-card::before {
    top: 0;
}

.smg-staff-card::after {
    bottom: 0;
}

.smg-staff-card-image {
    display: block;
    height: 214px;
    overflow: hidden;
    border-bottom: 1px solid rgba(200, 164, 90, .45);
    background:
        radial-gradient(circle at 50% 70%, rgba(242, 8, 8, .2), transparent 56%),
        #090909;
}

.smg-staff-card-image img,
.smg-staff-card-image span {
    width: 100%;
    height: 100%;
}

.smg-staff-card-image img {
    display: block;
    object-fit: cover;
    object-position: center top;
    filter: saturate(.92) contrast(1.08);
    transition: transform .24s ease, filter .24s ease;
}

.smg-staff-card-image span {
    display: grid;
    place-items: center;
    color: var(--smg-gold-bright);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: 5rem;
    font-weight: 900;
}

.smg-staff-card:hover .smg-staff-card-image img,
.smg-staff-card:focus-within .smg-staff-card-image img {
    transform: scale(1.045);
    filter: saturate(1.05) contrast(1.13);
}

.smg-staff-card-body {
    padding: 17px 18px 18px;
    text-align: center;
}

.smg-staff-card-body h2 {
    margin: 0;
    color: var(--smg-gold-bright);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: .08em;
    line-height: .95;
    text-transform: uppercase;
}

.smg-staff-card-body p {
    margin: 5px 0 11px;
    color: #dfd3bf;
    font-size: 1rem;
    font-weight: 600;
}

.smg-staff-card-body a {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    color: var(--smg-gold-bright);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.smg-staff-card-body a span {
    color: var(--smg-red);
    font-size: 1.15rem;
    transition: transform .18s ease;
}

.smg-staff-card-body a:hover,
.smg-staff-card-body a:focus {
    color: #fff;
}

.smg-staff-card-body a:hover span,
.smg-staff-card-body a:focus span {
    transform: translateX(5px);
}

.smg-staff-empty {
    border: 1px solid rgba(200, 164, 90, .45);
    padding: 28px;
    text-align: center;
}

.smg-staff-empty p {
    margin: 0;
    color: #dfd3bf;
    font-weight: 800;
}

.smg-staff-values {
    display: grid;
    grid-template-columns: 1fr 1fr 90px 1fr 1fr;
    gap: 0;
    align-items: center;
    margin: clamp(28px, 4vw, 46px) calc(clamp(18px, 5vw, 74px) * -1) 0;
    border-top: 1px solid rgba(200, 164, 90, .42);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: rgba(0, 0, 0, .72);
}

.smg-staff-value {
    position: relative;
    display: grid;
    min-height: 88px;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 13px;
    align-items: center;
    padding: 16px 22px;
}

.smg-staff-value + .smg-staff-value {
    border-left: 1px solid rgba(200, 164, 90, .26);
}

.smg-staff-value strong,
.smg-staff-value small {
    display: block;
}

.smg-staff-value strong {
    color: var(--smg-gold-bright);
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.smg-staff-value small {
    color: #c8c0b4;
    font-size: .74rem;
    font-weight: 600;
}

.smg-staff-value-icon {
    position: relative;
    display: block;
    width: 38px;
    height: 38px;
    color: var(--smg-gold-bright);
}

.smg-staff-value-icon-people::before,
.smg-staff-value-icon-people::after,
.smg-staff-value-icon-culture::before,
.smg-staff-value-icon-production::before,
.smg-staff-value-icon-star::before {
    content: "";
    position: absolute;
    inset: 5px;
    border: 3px solid currentColor;
}

.smg-staff-value-icon-people::before {
    border-radius: 50% 50% 35% 35%;
}

.smg-staff-value-icon-people::after {
    inset: 18px 2px 4px;
    border-radius: 12px 12px 2px 2px;
}

.smg-staff-value-icon-production::before {
    transform: skewY(-12deg);
}

.smg-staff-value-icon-culture::before {
    border-radius: 999px;
}

.smg-staff-value-icon-culture::after {
    content: "";
    position: absolute;
    left: 18px;
    top: 5px;
    bottom: 4px;
    width: 4px;
    background: currentColor;
}

.smg-staff-value-icon-star::before {
    inset: 2px;
    border: 0;
    background: currentColor;
    clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 56%, 79% 92%, 50% 70%, 21% 92%, 32% 56%, 2% 35%, 39% 35%);
}

.smg-staff-value-emblem {
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    padding: 0;
}

.smg-staff-value-emblem span {
    display: grid;
    width: 62px;
    height: 62px;
    place-items: center;
    border: 3px solid var(--smg-gold-bright);
    border-radius: 50%;
    color: var(--smg-gold-bright);
    font-family: Georgia, serif;
    font-size: 2.45rem;
    font-weight: 900;
    line-height: 1;
}

.smg-staff-footer-line {
    margin: 0 calc(clamp(18px, 5vw, 74px) * -1);
    padding: 18px;
    border-bottom: 1px solid rgba(200, 164, 90, .42);
    color: var(--smg-gold-bright);
    font-size: .9rem;
    font-weight: 800;
    letter-spacing: .42em;
    text-align: center;
    text-transform: uppercase;
}

.smg-staff-footer-line strong {
    color: var(--smg-red);
}

.smg-staff-detail {
    padding: clamp(34px, 5vw, 62px) 0;
    background:
        radial-gradient(circle at 2% 12%, rgba(242, 8, 8, .2), transparent 22rem),
        radial-gradient(circle at 98% 84%, rgba(200, 164, 90, .08), transparent 24rem),
        linear-gradient(180deg, #030303 0%, #070503 54%, #000 100%);
}

.smg-staff-detail-frame {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(200, 164, 90, .5);
    padding: clamp(18px, 3vw, 30px);
    background:
        linear-gradient(90deg, rgba(242, 8, 8, .1), transparent 28%, transparent 78%, rgba(200, 164, 90, .08)),
        rgba(5, 5, 5, .96);
}

.smg-staff-detail-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .82)),
        repeating-linear-gradient(110deg, rgba(255, 255, 255, .018) 0 1px, transparent 1px 9px);
    pointer-events: none;
}

.smg-staff-detail-frame > * {
    position: relative;
    z-index: 1;
}

.smg-staff-detail-grid {
    display: grid;
    grid-template-columns: minmax(280px, 390px) minmax(0, 1fr);
    gap: clamp(30px, 5vw, 58px);
    align-items: start;
}

.smg-staff-detail-profile {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(200, 164, 90, .72);
    clip-path: polygon(13px 0, calc(100% - 13px) 0, 100% 13px, 100% calc(100% - 13px), calc(100% - 13px) 100%, 13px 100%, 0 calc(100% - 13px), 0 13px);
    background: #050505;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .86), 0 22px 60px rgba(0, 0, 0, .48);
}

.smg-staff-detail-profile::before,
.smg-staff-detail-profile::after {
    content: "";
    position: absolute;
    left: 50%;
    z-index: 2;
    width: 122px;
    height: 3px;
    background: var(--smg-red);
    box-shadow: 0 0 20px rgba(242, 8, 8, .9);
    transform: translateX(-50%);
    pointer-events: none;
}

.smg-staff-detail-profile::before {
    top: 0;
}

.smg-staff-detail-profile::after {
    bottom: 0;
}

.smg-staff-detail-image {
    display: block;
    height: clamp(300px, 36vw, 470px);
    overflow: hidden;
    border-bottom: 1px solid rgba(200, 164, 90, .45);
    background:
        radial-gradient(circle at 54% 76%, rgba(242, 8, 8, .2), transparent 58%),
        #090909;
}

.smg-staff-detail-image img,
.smg-staff-detail-image span {
    width: 100%;
    height: 100%;
}

.smg-staff-detail-image img {
    display: block;
    object-fit: cover;
    object-position: center top;
    filter: saturate(.94) contrast(1.08);
}

.smg-staff-detail-image span {
    display: grid;
    place-items: center;
    color: var(--smg-gold-bright);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: 8rem;
    font-weight: 900;
}

.smg-staff-detail-card-body {
    padding: clamp(22px, 3vw, 30px) 20px 26px;
    text-align: center;
}

.smg-staff-detail-card-body h2 {
    margin: 0;
    color: var(--smg-gold-bright);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: .09em;
    line-height: .9;
    text-transform: uppercase;
}

.smg-staff-detail-card-body p {
    margin: 10px 0 28px;
    color: #dfd3bf;
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.smg-staff-detail-card-body strong {
    color: var(--smg-gold-bright);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.smg-staff-detail-content {
    padding-top: clamp(6px, 1vw, 12px);
}

.smg-staff-detail-header {
    border-bottom: 1px solid rgba(200, 164, 90, .34);
    padding-bottom: clamp(18px, 2.5vw, 26px);
}

.smg-staff-detail-header .smg-staff-kicker {
    justify-content: flex-start;
    gap: 17px;
    font-size: .95rem;
}

.smg-staff-detail-header .smg-staff-kicker span {
    width: 34px;
}

.smg-staff-detail-header h1 {
    margin: 10px 0 14px;
    color: var(--smg-gold-bright);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: clamp(4rem, 9vw, 7.25rem);
    font-style: italic;
    font-weight: 900;
    letter-spacing: .04em;
    line-height: .78;
    text-transform: uppercase;
    text-shadow: 0 2px 0 rgba(90, 58, 12, .82), 0 0 24px rgba(200, 164, 90, .18);
}

.smg-staff-detail-header .smg-staff-mark {
    justify-content: flex-start;
    font-size: 1.75rem;
}

.smg-staff-detail-header .smg-staff-mark::before,
.smg-staff-detail-header .smg-staff-mark::after {
    width: min(22vw, 205px);
}

.smg-staff-detail-intro,
.smg-staff-detail-bio {
    color: #dfd3bf;
    font-size: .98rem;
    font-weight: 600;
    line-height: 1.55;
}

.smg-staff-detail-intro {
    max-width: 760px;
    margin-top: 16px;
}

.smg-staff-detail-intro p,
.smg-staff-detail-bio p {
    margin: 0 0 13px;
}

.smg-staff-detail-bio {
    max-width: 780px;
    padding-top: clamp(20px, 3vw, 28px);
}

.smg-staff-detail-bio h2 {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 0 0 12px;
    color: var(--smg-gold-bright);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: .24em;
    text-transform: uppercase;
}

.smg-staff-detail-bio h2::after {
    content: "";
    width: 36px;
    height: 1px;
    background: var(--smg-red);
}

.smg-staff-detail-quote {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr) 36px;
    gap: 12px;
    align-items: center;
    max-width: 820px;
    margin: clamp(20px, 3vw, 28px) 0 0;
    border: 1px solid rgba(200, 164, 90, .72);
    clip-path: polygon(13px 0, calc(100% - 13px) 0, 100% 13px, 100% calc(100% - 13px), calc(100% - 13px) 100%, 13px 100%, 0 calc(100% - 13px), 0 13px);
    padding: 21px 22px;
    background: rgba(5, 5, 5, .9);
}

.smg-staff-detail-quote span {
    color: var(--smg-gold-bright);
    font-family: Georgia, serif;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.smg-staff-detail-quote p {
    margin: 0;
    color: var(--smg-gold-bright);
    font-size: clamp(.95rem, 1.3vw, 1.15rem);
    font-weight: 900;
    letter-spacing: .08em;
    line-height: 1.45;
    text-transform: uppercase;
}

.smg-featured-artists-row .smg-framed-row {
    position: relative;
    overflow: hidden;
    padding-top: 22px;
    padding-bottom: 28px;
    background:
        radial-gradient(circle at 50% 45%, rgba(156, 0, 0, .18), transparent 44%),
        linear-gradient(180deg, rgba(8, 7, 4, .96), rgba(2, 2, 1, .98));
}

.smg-featured-artist-heading h2 {
    margin-bottom: 15px;
    font-size: clamp(2rem, 4vw, 3.05rem);
    font-weight: 900;
}

.smg-featured-artist-stage {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    align-items: center;
    gap: clamp(10px, 2vw, 22px);
}

.smg-featured-artist-swiper {
    width: 100%;
    padding: 4px 0 18px;
}

.smg-featured-artist-swiper .swiper-wrapper {
    align-items: stretch;
}

.smg-featured-artist-swiper .swiper-slide {
    display: flex;
    height: auto;
}

.smg-featured-artist-card {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: clamp(255px, 24vw, 326px);
    overflow: hidden;
    border: 1px solid rgba(190, 132, 26, .55);
    border-radius: 5px;
    background: #050505;
    box-shadow: inset 0 0 22px rgba(190, 132, 26, .08);
}

.smg-featured-artist-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .06) 0%, rgba(0, 0, 0, .22) 45%, rgba(0, 0, 0, .9) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, .45) 0%, transparent 42%, rgba(0, 0, 0, .35) 100%);
    pointer-events: none;
}

.smg-featured-artist-card img,
.smg-featured-artist-fallback {
    width: 100%;
    height: 100%;
    min-height: inherit;
}

.smg-featured-artist-card img {
    display: block;
    object-fit: cover;
    object-position: center top;
    transform: scale(1.01);
}

.smg-featured-artist-fallback {
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 50% 30%, rgba(203, 16, 16, .45), transparent 34%),
        linear-gradient(135deg, #160202, #050505);
    color: rgba(224, 38, 28, .78);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: 7rem;
    font-weight: 900;
}

.smg-featured-artist-overlay {
    position: absolute;
    right: 26px;
    bottom: 25px;
    left: 26px;
    z-index: 1;
}

.smg-featured-artist-overlay h3 {
    margin: 0 0 4px;
    color: #f2eee6;
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: clamp(1.45rem, 2.35vw, 2.15rem);
    font-weight: 700;
    line-height: .95;
    text-transform: uppercase;
}

.smg-featured-artist-overlay p {
    margin: 0 0 14px;
    color: var(--smg-red);
    font-size: clamp(.94rem, 1.35vw, 1.18rem);
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.smg-featured-artist-overlay a {
    color: var(--smg-gold-bright);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: 1.04rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-decoration: none;
    text-transform: uppercase;
}

.smg-featured-artist-overlay a span {
    display: inline-block;
    margin-left: 8px;
    transition: transform .2s ease;
}

.smg-featured-artist-overlay a:hover span {
    transform: translateX(4px);
}

.smg-featured-artist-nav {
    display: grid;
    width: 42px;
    height: 70px;
    place-items: center;
    border: 0;
    background: transparent;
    color: #d7a710;
    transition: color .2s ease, transform .2s ease;
}

.smg-featured-artist-nav svg {
    width: 31px;
    height: 31px;
}

.smg-featured-artist-nav:hover,
.smg-featured-artist-nav:focus {
    color: var(--smg-gold-bright);
    transform: scale(1.08);
}

.smg-featured-artist-all {
    display: inline-flex;
    min-width: 230px;
    min-height: 45px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(229, 13, 16, .78);
    border-radius: 4px;
    color: var(--smg-red);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: 1.06rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.smg-featured-artist-all:hover,
.smg-featured-artist-all:focus {
    border-color: var(--smg-red);
    background: var(--smg-red);
    color: #050505;
}

.smg-info-text-left-icons-top {
    background: #000;
}

.syndicate-service-detail-hero + .smg-info-text-left-icons-top {
    padding-top: 5px !important;
}

.smg-info-text-left-icons-top .container {
    width: min(100%, 1508px);
    max-width: none;
    padding-right: 54px;
    padding-left: 54px;
}

.smg-info-text-left-icons-top-panel {
    display: grid;
    grid-template-columns: minmax(260px, 1.15fr) minmax(0, 2fr);
    align-items: stretch;
    border: 1px solid var(--smg-border);
    border-radius: 4px;
    background:
        radial-gradient(circle at 26% 42%, rgba(92, 3, 2, .16), transparent 32%),
        linear-gradient(180deg, rgba(6, 5, 3, .98), rgba(0, 0, 0, .99));
    box-shadow: inset 0 0 32px rgba(200, 164, 90, .08);
}

.smg-info-text-left-icons-top-copy {
    padding: 30px 34px;
}

.smg-info-text-left-icons-top-copy h2,
.smg-info-text-left-icons-top-subtitle,
.smg-info-text-left-icons-top-item h3 {
    font-family: "Barlow Condensed", Impact, sans-serif;
    text-transform: uppercase;
}

.smg-info-text-left-icons-top-copy h2 {
    margin: 0;
    color: #f4efe3;
    font-size: 2.12rem;
    font-weight: 800;
    line-height: .95;
}

.smg-info-text-left-icons-top-subtitle {
    margin: 1px 0 13px;
    color: var(--smg-red);
    font-size: 2.18rem;
    font-weight: 900;
    line-height: .9;
}

.smg-info-text-left-icons-top-intro {
    max-width: 390px;
    color: var(--smg-muted);
    font-size: .94rem;
    font-weight: 600;
    line-height: 1.45;
}

.smg-info-text-left-icons-top-items {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.smg-info-text-left-icons-top-item {
    display: flex;
    min-height: 205px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border-left: 1px solid rgba(200, 164, 90, .54);
    padding: 31px 25px 24px;
    text-align: center;
}

.smg-info-text-left-icons-top-item img {
    width: 48px;
    height: 48px;
    margin-bottom: 15px;
    object-fit: contain;
}

.smg-info-text-left-icons-top-item h3 {
    margin: 0 0 10px;
    color: var(--smg-gold);
    font-size: 1.18rem;
    font-weight: 800;
    line-height: 1.05;
}

.smg-info-text-left-icons-top-item p {
    max-width: 150px;
    margin: 0 auto;
    color: var(--smg-muted);
    font-size: .82rem;
    font-weight: 600;
    line-height: 1.45;
}

@media (max-width: 1199.98px) {
    :root {
        --smg-header-offset: 123px;
    }

    .smg-container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .smg-navbar {
        padding: 11px 0;
    }

    .smg-primary-nav {
        align-items: flex-start;
        gap: 0;
        padding-top: 14px;
    }

    .smg-primary-nav .nav-link {
        padding: 8px 0;
        font-size: .95rem;
    }

    .smg-primary-nav .nav-link.active::after {
        bottom: 3px;
    }

    .smg-nav-link-row {
        width: 100%;
    }

    .smg-nav-dropdown {
        width: 100%;
    }

    .smg-nav-dropdown-menu {
        width: 100%;
        margin: .15rem 0 .45rem;
    }

    .smg-social-nav {
        margin-left: 0;
        padding-bottom: 12px;
    }

    .smg-hero {
        min-height: calc(100vh - var(--smg-header-offset));
        background-position: center top;
    }

    .smg-hero > .smg-container {
        min-height: calc(100vh - var(--smg-header-offset));
        padding-top: 34px;
        padding-bottom: 34px;
    }

    .syndicate-service-detail-hero {
        min-height: 590px;
        --syndicate-service-hero-position: right center;
    }

    .smg-artist-hero {
        height: min(calc(100vh - var(--smg-header-offset) - 100px), 550px);
        align-items: flex-start;
        background-position: left top, left top, right top;
    }

    .smg-artist-hero-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        align-content: start;
    }

    .smg-artist-hero-stage {
        min-height: 360px;
    }

    .smg-artist-hero-animation {
        right: auto;
        left: 50%;
        bottom: -74px;
        transform: translateX(-50%) scale(.72);
    }

    .smg-discography-toggle {
        grid-template-columns: 58px minmax(0, 1fr) 90px 72px 28px;
        gap: 16px;
    }

    .syndicate-service-detail-hero ~ .product-info-section-icon-strip .container {
        padding-right: 26px;
        padding-left: 26px;
    }

    .syndicate-service-detail-hero ~ .product-info-section-icon-strip .row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .syndicate-service-detail-hero ~ .product-info-section-icon-strip .product-info-section-item {
        min-height: 320px;
    }

    .syndicate-service-detail-hero ~ .product-info-section-icon-strip + .product-info-section-icon-strip .row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 30px;
    }

    .syndicate-service-detail-hero ~ .product-info-section-icon-strip + .product-info-section-icon-strip .col:nth-child(2)::after {
        display: none;
    }

    .syndicate-service-detail-hero ~ .product-info-section-icon-strip + .product-info-section-icon-strip .product-info-section-item {
        padding-right: 34px;
        padding-left: 34px;
    }

    .smg-info-image-left-info-right .container {
        padding-right: 26px;
        padding-left: 26px;
    }

    .smg-info-image-left-info-right-panel {
        grid-template-columns: 1fr;
    }

    .smg-artist-info-layout {
        grid-template-columns: 1fr;
    }

    .smg-artist-info-profile {
        border-right: 0;
        border-bottom: 2px solid rgba(168, 120, 25, .48);
        padding-right: 0;
        padding-bottom: 34px;
    }

    .smg-artist-info-photo {
        width: min(100%, 430px);
    }

    .smg-artist-info-copy::after {
        content: none;
    }

    .smg-info-image-left-info-right-media,
    .smg-info-image-left-info-right-media img {
        min-height: 360px;
    }

    .smg-info-image-left-info-right-content {
        border-top: 2px solid rgba(168, 120, 25, .54);
        border-left: 0;
    }

    .smg-info-text-left-icons-top .container {
        padding-right: 26px;
        padding-left: 26px;
    }

    .smg-feature-content {
        padding-left: 0;
    }

    .smg-stat-list {
        border-left: 0;
        padding-left: 0;
    }

    .smg-project-copy {
        width: min(58%, 390px);
    }

    .smg-footer,
    .smg-footer .col-lg-4 {
        text-align: center;
    }

    .smg-footer-brand {
        justify-content: center;
    }

    .smg-info-text-left-icons-top-panel {
        grid-template-columns: 1fr;
    }

    .smg-info-text-left-icons-top-copy {
        border-bottom: 1px solid rgba(200, 164, 90, .54);
    }

    .smg-info-text-left-icons-top-items {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .smg-media-feature-panel {
        grid-template-columns: 1fr;
    }

    .smg-media-feature-art {
        min-height: 390px;
    }

    .smg-media-feature-copy {
        border-top: 1px solid rgba(200, 164, 90, .4);
    }

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

    .smg-page .hla-about-icon-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .smg-artist-listing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .smg-staff-values {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .smg-staff-value-emblem {
        grid-column: 1 / -1;
        min-height: 84px;
        border-top: 1px solid rgba(200, 164, 90, .26);
        border-bottom: 1px solid rgba(200, 164, 90, .26);
    }

    .smg-staff-detail-grid {
        grid-template-columns: 1fr;
    }

    .smg-staff-detail-profile {
        width: min(100%, 430px);
        margin: 0 auto;
    }

    .smg-staff-detail-header,
    .smg-staff-detail-bio,
    .smg-staff-detail-quote {
        max-width: none;
    }

    .smg-staff-detail-header .smg-staff-kicker,
    .smg-staff-detail-header .smg-staff-mark {
        justify-content: center;
    }

    .smg-staff-detail-header h1,
    .smg-staff-detail-intro,
    .smg-staff-detail-bio h2 {
        text-align: center;
    }

    .smg-staff-detail-bio h2 {
        justify-content: center;
    }

    .smg-info-text-left-icons-top-item:nth-child(odd) {
        border-left: 0;
    }

    .smg-info-text-left-icons-top-item:nth-child(n + 3) {
        border-top: 1px solid rgba(200, 164, 90, .38);
    }
}

@media (min-width: 1200px) {
    .smg-nav-dropdown:hover > .smg-nav-dropdown-menu {
        display: block;
    }

    .smg-nav-dropdown::after {
        position: absolute;
        top: 100%;
        left: 0;
        display: none;
        width: 14rem;
        height: .7rem;
        content: "";
    }

    .smg-nav-dropdown:hover::after,
    .smg-nav-dropdown:focus-within::after {
        display: block;
    }

    .smg-nav-dropdown-menu {
        margin-top: .5rem;
    }
}

@media (max-width: 575.98px) {
    :root {
        --smg-header-offset: 123px;
    }

    .smg-brand-mark {
        width: 38px;
        height: 38px;
        font-size: 25px;
    }

    .smg-brand-text strong {
        font-size: 1.6rem;
    }

    .smg-brand-text small {
        font-size: .52rem;
    }

    .smg-hero {
        min-height: calc(100vh - var(--smg-header-offset));
        background-position: center top;
    }

    .smg-hero > .smg-container {
        min-height: calc(100vh - var(--smg-header-offset));
        padding-top: 24px;
        padding-bottom: 28px;
    }

    .syndicate-service-detail-hero {
        min-height: 620px;
        align-items: flex-end;
        background:
            linear-gradient(180deg, rgba(0, 0, 0, .42) 0%, rgba(0, 0, 0, .76) 42%, rgba(0, 0, 0, .98) 100%),
            var(--syndicate-service-hero-bg) var(--syndicate-service-hero-position) / cover no-repeat;
    }

    .syndicate-service-detail-hero-content {
        padding: 42px 0 46px;
    }

    .syndicate-service-detail-eyebrow {
        font-size: 1.08rem;
    }

    .syndicate-service-detail-title {
        font-size: clamp(3.3rem, 16vw, 4.65rem);
    }

    .syndicate-service-detail-copy {
        margin-top: 20px;
        font-size: 1.22rem;
    }

    .syndicate-service-detail-actions {
        gap: 14px;
        margin-top: 24px;
    }

    .syndicate-service-detail-button {
        width: 100%;
        min-height: 56px;
        font-size: 1rem;
    }

    .syndicate-service-detail-hero ~ .product-info-section-icon-strip {
        padding: 40px 0 46px !important;
    }

    .syndicate-service-detail-hero ~ .product-info-section-icon-strip .container {
        padding-right: 18px;
        padding-left: 18px;
    }

    .syndicate-service-detail-hero ~ .product-info-section-icon-strip .product-info-section-title {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 20px !important;
        font-size: 1.6rem;
    }

    .syndicate-service-detail-hero ~ .product-info-section-icon-strip .product-info-section-title::before,
    .syndicate-service-detail-hero ~ .product-info-section-icon-strip .product-info-section-title::after {
        width: min(68vw, 230px);
        margin: 0 auto;
    }

    .syndicate-service-detail-hero ~ .product-info-section-icon-strip .row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .syndicate-service-detail-hero ~ .product-info-section-icon-strip .product-info-section-item {
        min-height: 0;
        padding: 26px 22px 24px;
    }

    .syndicate-service-detail-hero ~ .product-info-section-icon-strip .product-info-section-item img {
        width: 74px !important;
        height: 74px !important;
        margin-bottom: 20px;
    }

    .syndicate-service-detail-hero ~ .product-info-section-icon-strip + .product-info-section-icon-strip {
        padding-top: 38px !important;
    }

    .syndicate-service-detail-hero ~ .product-info-section-icon-strip + .product-info-section-icon-strip .product-info-section-title {
        margin-bottom: 20px !important;
    }

    .syndicate-service-detail-hero ~ .product-info-section-icon-strip + .product-info-section-icon-strip .row {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 20px;
        padding: 28px 20px 24px;
    }

    .syndicate-service-detail-hero ~ .product-info-section-icon-strip + .product-info-section-icon-strip .col:not(:last-child)::after {
        display: none;
    }

    .syndicate-service-detail-hero ~ .product-info-section-icon-strip + .product-info-section-icon-strip .col + .col {
        border-top: 1px solid rgba(168, 120, 25, .32);
    }

    .syndicate-service-detail-hero ~ .product-info-section-icon-strip + .product-info-section-icon-strip .product-info-section-item {
        grid-template-columns: 74px minmax(0, 1fr);
        min-height: 0;
        padding: 24px 0;
    }

    .syndicate-service-detail-hero ~ .product-info-section-icon-strip + .product-info-section-icon-strip .product-info-section-item::before {
        width: 62px;
        height: 62px;
        font-size: 2.4rem;
    }

    .syndicate-service-detail-hero ~ .product-info-section-icon-strip + .product-info-section-icon-strip .product-info-section-item h3 {
        margin-bottom: 5px;
        font-size: 1.18rem;
    }

    .syndicate-service-detail-hero ~ .product-info-section-icon-strip + .product-info-section-icon-strip .product-info-section-item p {
        max-width: none;
        font-size: .9rem;
    }

    .smg-page .sir-about-bigquote-card {
        grid-template-columns: 1fr;
        gap: .2rem;
        min-height: 0;
        padding: 1.15rem;
    }

    .smg-page .sir-about-bigquote-bg {
        width: 100%;
        opacity: .28;
        mask-image: linear-gradient(180deg, transparent, #000 20%);
    }

    .smg-page .sir-about-bigquote-mark {
        font-size: 4.4rem;
    }

    .smg-page .sir-about-bigquote-copy blockquote {
        font-size: clamp(1.45rem, 8vw, 2.35rem);
    }

    .smg-page .sir-about-bigquote-copy cite {
        margin-left: clamp(5rem, 30vw, 9rem);
    }

    .smg-info-image-left-info-right .container {
        padding-right: 18px;
        padding-left: 18px;
    }

    .smg-info-image-left-info-right-media,
    .smg-info-image-left-info-right-media img {
        min-height: 280px;
    }

    .smg-info-image-left-info-right-content {
        padding: 27px 22px 24px;
    }

    .smg-info-image-left-info-right-subtitle {
        font-size: 2.25rem;
    }

    .smg-info-image-left-info-right-content h2 {
        font-size: 2.1rem;
    }

    .smg-info-image-left-info-right-items {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 22px;
    }

    .smg-info-image-left-info-right-item {
        border-left: 1px solid rgba(168, 120, 25, .38);
        padding: 0 14px;
    }

    .smg-info-image-left-info-right-item:nth-child(odd) {
        border-left: 0;
    }

    .smg-info-image-left-info-right-item img {
        width: 46px;
        height: 46px;
        margin-bottom: 10px;
    }

    .smg-info-image-left-info-right-item h3 {
        font-size: 1.72rem;
    }

    .smg-info-image-left-info-right-item p {
        font-size: .82rem;
    }

    .smg-staff-detail-frame {
        padding: 16px;
    }

    .smg-staff-detail-image {
        height: 350px;
    }

    .smg-staff-detail-card-body p {
        margin-bottom: 20px;
    }

    .smg-staff-detail-header .smg-staff-kicker {
        gap: 12px;
        font-size: .78rem;
        letter-spacing: .26em;
    }

    .smg-staff-detail-header h1 {
        font-size: clamp(3.1rem, 17vw, 4.8rem);
        line-height: .86;
    }

    .smg-staff-detail-header .smg-staff-mark::before,
    .smg-staff-detail-header .smg-staff-mark::after {
        width: min(28vw, 120px);
    }

    .smg-staff-detail-quote {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 20px 18px;
        text-align: center;
    }

    .smg-staff-detail-quote span {
        font-size: 2.35rem;
    }

    .smg-staff-detail-quote p {
        font-size: .88rem;
        letter-spacing: .05em;
    }

    .smg-info-text-left-icons-top .container {
        padding-right: 18px;
        padding-left: 18px;
    }

    .smg-framed-row {
        border-left: 0;
        border-right: 0;
    }

    .smg-service-card {
        min-height: 0;
    }

    .smg-project {
        min-height: 360px;
        background-position: 58% center;
    }

    .smg-project-copy {
        width: 100%;
        background: linear-gradient(90deg, rgba(0, 0, 0, .98) 0%, rgba(0, 0, 0, .9) 62%, rgba(0, 0, 0, .25) 100%);
    }

    .smg-artist-hero {
        height: min(calc(100vh - var(--smg-header-offset) - 100px), 360px);
    }

    .smg-artist-hero-grid {
        padding-top: 42px;
        padding-bottom: 42px;
    }

    .smg-artist-hero-copy::before {
        inset: -18px -18px -18px -18px;
        background: rgba(0, 0, 0, .68);
    }

    .smg-artist-hero-text {
        width: 100%;
    }

    .smg-artist-hero-btn {
        width: 100%;
    }

    .smg-artist-hero-stage {
        display: none;
    }

    .smg-artist-listing-grid {
        grid-template-columns: 1fr;
    }

    .smg-artist-listing-body {
        padding: 16px 20px 18px;
    }

    .smg-artist-info-detail {
        padding-top: 40px;
        padding-bottom: 52px;
    }

    .smg-artist-info-heading h2 {
        font-size: clamp(3rem, 16vw, 4.4rem);
    }

    .smg-artist-info-photo {
        width: 100%;
    }

    .smg-artist-info-quote {
        padding-left: 42px;
        font-size: clamp(1.75rem, 9vw, 2.5rem);
    }

    .smg-artist-info-quote::before {
        left: 42px;
    }

    .smg-subscribe-form {
        grid-template-columns: 1fr;
    }

    .smg-info-text-left-icons-top-copy {
        padding: 25px 22px;
    }

    .smg-info-text-left-icons-top-copy h2 {
        font-size: 1.75rem;
    }

    .smg-info-text-left-icons-top-subtitle {
        font-size: 1.82rem;
    }

    .smg-info-text-left-icons-top-items {
        grid-template-columns: 1fr;
    }

    .smg-media-feature-art {
        min-height: 310px;
    }

    .smg-media-feature-copy {
        padding: 25px 22px 28px;
    }

    .smg-media-feature-network {
        flex-wrap: wrap;
        gap: 8px 14px;
    }

    .smg-artist-media-grid {
        grid-template-columns: 1fr;
    }

    .smg-artist-media-body {
        min-height: 74px;
    }

    .smg-create-callout-copy {
        padding-right: 22px;
        padding-left: 22px;
    }

    .smg-page .hla-about-icon-list {
        grid-template-columns: 1fr;
    }

    .smg-page .hla-about-icon-list-icon,
    .smg-page .hla-about-icon-list-icon img {
        min-height: 170px;
        height: 170px;
    }

    .smg-info-text-left-icons-top-item,
    .smg-info-text-left-icons-top-item:nth-child(odd) {
        min-height: 0;
        border-left: 0;
    }

    .smg-info-text-left-icons-top-item + .smg-info-text-left-icons-top-item {
        border-top: 1px solid rgba(200, 164, 90, .38);
    }
}

@media (max-width: 767.98px) {
    .smg-featured-artist-stage {
        position: relative;
        display: block;
    }

    .smg-featured-artist-swiper {
        padding-right: 35px;
        padding-left: 35px;
    }

    .smg-featured-artist-nav {
        position: absolute;
        top: 50%;
        z-index: 2;
        transform: translateY(-50%);
    }

    .smg-featured-artist-prev {
        left: -6px;
    }

    .smg-featured-artist-next {
        right: -6px;
    }

    .smg-featured-artist-nav:hover,
    .smg-featured-artist-nav:focus {
        transform: translateY(-50%) scale(1.08);
    }

    .smg-discography-header h2 {
        font-size: clamp(2.35rem, 14vw, 3.8rem);
    }

    .smg-discography-toggle {
        grid-template-columns: 48px minmax(0, 1fr) 26px;
        min-height: 64px;
        padding: 8px 12px;
    }

    .smg-discography-toggle-cover {
        width: 44px;
        height: 44px;
    }

    .smg-discography-toggle-type,
    .smg-discography-toggle-year {
        display: none;
    }

    .smg-discography-release {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .smg-discography-release-cover {
        width: min(100%, 220px);
    }

    .smg-discography-track-head,
    .smg-discography-track {
        grid-template-columns: 38px minmax(0, 1fr) 62px 42px;
    }

    .smg-discography-track-head > span,
    .smg-discography-track > span {
        padding: 0 8px;
    }

    .smg-discography-track {
        font-size: .88rem;
    }

    .smg-staff-frame {
        padding-right: 16px;
        padding-left: 16px;
    }

    .smg-staff-kicker {
        gap: 12px;
        font-size: 1rem;
        letter-spacing: .24em;
    }

    .smg-staff-kicker span {
        width: 30px;
    }

    .smg-staff-grid {
        grid-template-columns: 1fr;
    }

    .smg-staff-card {
        width: min(100%, 320px);
    }

    .smg-staff-values,
    .smg-staff-footer-line {
        margin-right: -16px;
        margin-left: -16px;
    }

    .smg-staff-values {
        grid-template-columns: 1fr;
    }

    .smg-staff-value + .smg-staff-value {
        border-top: 1px solid rgba(200, 164, 90, .26);
        border-left: 0;
    }

    .smg-staff-footer-line {
        letter-spacing: .22em;
        line-height: 1.8;
    }
}
