:root {
    --blue: #235ca6;
    --deep-blue: #234f9a;
    --white: #ffffff;
    --muted: #9aa1ab;
    --text: #353535;
    --socialbar-height: 34px;
    --topbar-height: 66px;
    --servicebar-height: 0px;
    --fixed-header-height: 100px;
}

* {
    box-sizing: border-box;
}

[hidden] {
    display: none !important;
}

body {
    margin: 0;
    color: var(--text);
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.8;
    background: #fff;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 20;
    background: var(--blue);
    color: #fff;
    font-family: "Sora", sans-serif;
    font-weight: 700;
}

.topbar__social-strip {
    min-height: var(--socialbar-height);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    background: #1d4f93;
}

.topbar {
    min-height: var(--topbar-height);
    display: grid;
    grid-template-columns: minmax(150px, 1fr) minmax(0, auto) minmax(150px, 1fr);
    align-items: center;
    gap: 18px;
    padding: 8px 16px;
    font-size: 14px;
    text-transform: none;
}

.topbar__brand,
.topbar__center,
.topbar__left,
.topbar__social,
.servicebar {
    display: flex;
    align-items: center;
}

.topbar__center {
    justify-content: center;
}

.topbar__brand {
    justify-self: start;
    width: 148px;
    min-height: 48px;
    justify-content: center;
    padding: 0;
    opacity: 1;
}

.topbar__brand img {
    display: block;
    width: 100%;
    height: auto;
}

.topbar__left {
    justify-content: center;
    gap: 24px;
    white-space: nowrap;
}

.topbar__social {
    justify-content: center;
    gap: 8px;
}

.topbar__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: .95;
    transition: opacity .18s ease, transform .18s ease;
}

.topbar__social a:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.topbar a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    opacity: .95;
}

.topbar .topbar__brand {
    opacity: 1;
}

.topbar__account {
    justify-self: end;
    min-height: 34px;
    padding: 0 14px;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 4px;
}

.topbar i {
    font-size: 20px;
}

.topbar .fa-chevron-down {
    font-size: 10px;
}

.topbar__dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.topbar__dropdown > a::after {
    content: "";
    width: 0;
    height: 0;
    margin-left: 6px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    transform: translateY(1px);
}

.topbar__menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    z-index: 40;
    width: 310px;
    max-height: min(70vh, 520px);
    overflow-y: auto;
    padding: 10px 0;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 6px;
    background: rgba(35,92,166,.98);
    box-shadow: 0 18px 36px rgba(11,34,72,.24);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.topbar__menu--services {
    width: 270px;
}

.topbar__menu--compact {
    width: 180px;
}

.topbar__dropdown:hover .topbar__menu,
.topbar__dropdown:focus-within .topbar__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.topbar__menu a {
    display: flex;
    width: 100%;
    padding: 9px 16px;
    color: #fff;
    font-size: 12px;
    line-height: 1.35;
    text-transform: none;
    white-space: normal;
}

.topbar__menu a:hover {
    background: rgba(255,255,255,.12);
}

.topbar__social img {
    display: block;
    width: 24px;
    height: 24px;
    border-radius: 3px;
    object-fit: contain;
}

.servicebar {
    justify-content: center;
    gap: 30px;
    min-height: 0;
    padding: 0;
    background: transparent;
    color: #fff;
    font-family: "Open Sans", sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
    text-align: left;
    text-transform: uppercase;
}

.servicebar a {
    position: relative;
    width: 128px;
    min-height: 34px;
    padding-bottom: 8px;
    text-shadow: 0 1px 2px rgba(0,0,0,.22);
}

.servicebar a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #fff;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .3s ease;
}

.servicebar a:hover::after {
    transform: scaleX(1);
}
.hero {
    position: relative;
    overflow: hidden;
    min-height: 720px;
    margin-top: var(--fixed-header-height);
    background: #133d73;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    transition: opacity .5s ease;
}

.hero__bg.is-zooming {
    animation: heroZoom 5.5s ease-out both;
}

.hero__overlay,
.soon-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(35, 92, 166, .37);
}

.hero__inner {
    position: relative;
    z-index: 1;
    width: min(1200px, calc(100% - 40px));
    min-height: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 220px 0 58px;
}

.hero__content {
    width: min(550px, 100%);
    /*margin-left: 150px;*/
}

.hero__logo {
    width: 70%;
    display: block;
    margin-bottom: 35px;
}

.eyebrow,
.section__heading {
    margin: 0 0 14px;
    color: inherit;
    font-family: "Sora", sans-serif;
    font-size: 15px;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.hero .eyebrow,
.mission .eyebrow {
    color: #fff;
}

.hero h1 {
    margin: 0 0 22px;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 90px;
    line-height: .92;
    text-transform: uppercase;
}

.hero h1 span,
.hero h1 strong {
    display: block;
}

.hero h1 span {
    color: #fff;
    font-weight: 700;
}

.hero h1 strong {
    color: transparent;
    font-weight: 700;
    -webkit-text-stroke: 2px #fff;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 14px 34px;
    border: 0;
    background: var(--blue);
    color: #fff;
    font-family: "Sora", sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}

.button--small {
    min-height: 36px;
    padding: 10px 25px;
    margin: 24px auto 0;
    display: flex;
}

.hero__services {
    display: grid;
    grid-template-columns: repeat(4, minmax(130px, 1fr));
    gap: 32px;
    align-self: flex-end;
    width: min(570px, 100%);
    margin-top: 88px;
}

.hero__services a {
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,.35);
    color: #fff;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

.section {
    width: 100%;
    margin: 0 auto;
    padding: 52px 42px 72px;
}

.section__heading {
    color: #686868;
    text-align: center;
}

.filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
    margin: 34px 0 32px;
}

.filter {
    border: 0;
    border-radius: 20px;
    padding: 8px 15px;
    background: transparent;
    color: var(--blue);
    font: 600 14px "Open Sans", sans-serif;
    cursor: pointer;
}

.filter.is-active {
    background: var(--blue);
    color: #fff;
}

.placement-grid {
    display: grid;
    grid-template-columns: repeat(11, minmax(0, 1fr));
    gap: 28px;
}

.placement-grid:not(.is-expanded) .is-more-placement {
    display: none;
}

.placement-card {
    position: relative;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    display: block;
    width: 100%;
    border: 0;
    padding: 0;
    background: #f2f2f2;
    color: inherit;
    cursor: pointer;
    text-align: left;
    font: inherit;
}

.placement-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .25s ease;
}

.placement-card span {
    position: absolute;
    inset: auto 0 0;
    padding: 28px 10px 10px;
    color: #fff;
    font: 600 13px "Sora", sans-serif;
    background: linear-gradient(to top, rgba(0,0,0,.72), transparent);
    opacity: 0;
    transition: opacity .25s ease;
}

.placement-card:hover img {
    transform: scale(1.04);
}

.placement-card:hover span {
    opacity: 1;
}

.placement-card--popup::after {
    content: "+";
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(35,92,166,.92);
    color: #fff;
    display: grid;
    place-items: center;
    font: 700 22px/1 "Sora", sans-serif;
    opacity: 0;
    transform: scale(.86);
    transition: opacity .22s ease, transform .22s ease;
}

.placement-card--popup:hover::after,
.placement-card--popup:focus-visible::after {
    opacity: 1;
    transform: scale(1);
}

.home-videos {
    padding-top: 24px;
    background: #fff;
}

.home-videos__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.home-video {
    min-width: 0;
}

.home-video__frame {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #e8eef7;
}

.home-video__frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.home-video h3 {
    margin: 12px 0 0;
    color: #172339;
    font: 700 16px/1.35 "Sora", sans-serif;
}

.our-work-page {
    min-height: calc(100vh - var(--fixed-header-height));
    margin-top: var(--fixed-header-height);
    padding: 46px 24px 82px;
    background: #fff;
    color: #172339;
}

.our-work-shell {
    width: min(1500px, 100%);
    margin: 0 auto;
}

.our-work-header {
    margin-bottom: 22px;
    text-align: left;
}

.our-work-header h1 {
    margin: 0;
    color: var(--blue);
    font: 700 28px/1.15 "Sora", sans-serif;
}

.our-work-grid {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 22px;
}

.mission {
    background: #2f5398;
    color: #fff;
    overflow: hidden;
}

.mission__inner {
    width: 100%;
    margin: 0 auto;
    padding: 88px 0 58px;
}

.mission .eyebrow,
.mission__copy {
    width: min(940px, calc(100% - 40px));
    margin-left: auto;
    margin-right: auto;
}

.mission__copy {
    width: min(940px, calc(100% - 40px));
    font-family: "Sora", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.35;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 56px;
    width: min(1760px, calc(100% - 100px));
    margin: 72px auto 118px;
    text-align: center;
}

.stats strong {
    display: block;
    color: #9fb0d8;
    font: 700 74px "Sora", sans-serif;
    line-height: .95;
    letter-spacing: 0;
    margin-bottom: 18px;
}

.stats > div > span {
    display: block;
    color: #fff;
    font: 700 20px/1.25 "Open Sans", sans-serif;
}

.client-card span {
    display: block;
    color: rgba(255,255,255,.76);
    font-size: 12px;
    line-height: 1.55;
}

.clients-title {
    width: 100%;
    text-align: center;
    margin-bottom: 38px;
}

.client-arrows {
    position: absolute;
    inset: 48% 12px auto;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.client-arrow {
    width: 34px;
    height: 44px;
    border: 0;
    border-radius: 4px;
    background: rgba(255,255,255,.08);
    color: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    pointer-events: auto;
    opacity: .95;
    transition: background .2s ease, opacity .2s ease, transform .2s ease;
}

.client-arrow:hover {
    background: rgba(255,255,255,.16);
    opacity: 1;
    transform: scale(1.04);
}

.client-carousel {
    --client-gap: 28px;
    --client-edge-cover: 58px;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-top: 0;
    padding: 0 64px;
}

.client-carousel::before,
.client-carousel::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: var(--client-edge-cover);
    background: #2f5398;
    pointer-events: none;
}

.client-carousel::before {
    left: 0;
}

.client-carousel::after {
    right: 0;
}

.client-slider {
    display: flex;
    gap: var(--client-gap);
    transition: transform .45s ease;
    will-change: transform;
}

.client-card {
    flex: 0 0 calc((100% - (var(--client-gap) * 3)) / 4);
    position: relative;
    min-height: 360px;
    padding: 24px 34px 28px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 6px;
    background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.client-card::before {
    content: "\201D";
    position: absolute;
    top: 8px;
    right: 26px;
    color: rgba(255,255,255,.11);
    font: 92px/1 Georgia, serif;
}

.client-card img {
    width: 230px;
    max-width: 100%;
    height: 104px;
    object-fit: contain;
    object-position: left center;
}

.client-card p {
    min-height: 122px;
    margin: 0 0 0px;
    color: rgba(255,255,255,.94);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.72;
}

.client-card hr {
    width: 38px;
    margin: 0 0 20px;
    border: 0;
    border-top: 1px solid rgba(255,255,255,.55);
}

.client-card strong {
    display: block;
    margin-bottom: 4px;
    color: #fff;
    font: 700 12px "Sora", sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.client-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 34px;
}

.client-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.48);
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}

.client-dots button.is-active {
    background: #fff;
    transform: scale(1.2);
}

.partners {
    overflow: hidden;
    padding: 24px 0 22px;
    background: #fff;
}

.partners h2 {
    margin: 0 0 18px;
    color: #172339;
    font-size: 15px;
    text-align: center;
    font-family: 'Sora';
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 5px;
}

.partners__track {
    display: flex;
    align-items: center;
    width: max-content;
    min-width: 200%;
    animation: marquee 34s linear infinite;
}

.partners:hover .partners__track {
    animation-play-state: paused;
}

.partners__track a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 24px;
    /*padding: 22px 40px;*/
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 6px;
    transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.partners__track a::before,
.partners__track a::after {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(.92);
    transition: opacity .25s ease, transform .25s ease;
}

.partners__track a::before {
    content: "";
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 10px 22px rgba(35,92,166,.22);
}

.partners__track a::after {
    content: "\2197";
    color: #fff;
    font: 700 20px/1 "Sora", sans-serif;
}

.partners__track a:hover {
    border-color: rgba(35,92,166,.12);
    background: rgba(35,92,166,.045);
    box-shadow: 0 10px 24px rgba(16,43,82,.08);
}

.partners__track a:hover::before,
.partners__track a:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.partners__track a:hover img {
    opacity: .72;
    transform: scale(.98);
}

.partners__track img {
    max-width: 220px;
    max-height: 130px;
    object-fit: contain;
    transition: opacity .25s ease, transform .25s ease;
}

.soon-hero {
    position: relative;
    min-height: calc(100vh - var(--fixed-header-height));
    margin-top: var(--fixed-header-height);
    display: grid;
    align-items: center;
    background: url("../images/img-01.jpg") center / cover;
    text-align: left;
}

.soon-hero__content {
    position: relative;
    z-index: 1;
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
    color: #fff;
}

.soon-hero__content img {
    width: 250px;
    margin-bottom: 30px;
}

.soon-hero h1 {
    margin: 0;
    color: var(--blue);
    font: 700 28px/1.15 "Sora", sans-serif;
    text-transform: uppercase;
}

.soon-hero__message {
    margin: 12px 0 32px;
    font: 700 40px Helvetica, Arial, sans-serif;
    color: transparent;
    -webkit-text-stroke: 2px #fff;
    text-transform: uppercase;
}

.contact-page {
    margin-top: var(--fixed-header-height);
    background: #fff;
}

.contact-hero {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 42px 0 24px;
    background: transparent;
    color: #172339;
    text-align: left;
}

.contact-hero h1 {
    margin: 0;
    color: var(--blue);
    font: 700 28px/1.15 "Sora", sans-serif;
}

.contact-list {
    width: min(1180px, calc(100% - 40px));
    margin: 44px auto 64px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid #d9e2ee;
    border-bottom: 1px solid #d9e2ee;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
}

.contact-card {
    display: grid;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 12px;
    padding: 24px 26px;
    border: 0;
    border-right: 1px solid #d9e2ee;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
}

.contact-card:last-child {
    border-right: 0;
}

.contact-card__flag img {
    display: block;
    width: 84px;
    max-width: 100%;
    border: 1px solid #e1e6ee;
}

.contact-card__body h2 {
    margin: 0 0 8px;
    color: var(--blue);
    font: 700 22px/1.15 "Sora", sans-serif;
    text-transform: uppercase;
}

.contact-card__body strong {
    display: block;
    margin-bottom: 6px;
    color: #4f5660;
    font-size: 15px;
    line-height: 1.35;
}

.contact-card__body p {
    margin: 0;
    color: #66707c;
    font-size: 15px;
    line-height: 1.36;
}

.contact-card dl {
    margin: 7px 0 0;
    color: #66707c;
    font-size: 15px;
    line-height: 1.36;
}

.contact-card dl div {
    display: flex;
    gap: 3px;
}

.contact-card dt {
    min-width: 0;
    margin: 0;
    font-weight: 700;
}

.contact-card dd {
    margin: 0;
}

.contact-card a {
    color: #237fc0;
}

.media-page {
    min-height: calc(100vh - var(--fixed-header-height));
    margin-top: var(--fixed-header-height);
    padding: 42px 24px 68px;
    background: linear-gradient(180deg, #f7f9fc 0%, #eef4fb 100%);
    color: #172339;
}

.media-shell {
    width: min(980px, 100%);
    margin: 0 auto;
}

.media-header {
    margin-bottom: 18px;
}

.media-header span {
    display: block;
    margin-bottom: 5px;
    color: var(--blue);
    font: 700 11px/1 "Sora", sans-serif;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.media-header h1 {
    margin: 0;
    color: var(--blue);
    font: 700 28px/1.15 "Sora", sans-serif;
}

.media-list {
    display: grid;
    gap: 16px;
}

.media-logo-card {
    padding: 22px 24px;
    border: 1px solid #dfe7f2;
    border-radius: 8px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 14px 30px rgba(17,45,88,.07);
}

.media-logo-card__body {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    align-items: center;
    gap: 28px;
}

.media-logo-card__preview {
    width: 220px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    padding: 18px;
    border: 1px solid #d9e2ee;
    border-radius: 8px;
    background: #fff;
}

.media-logo-card__preview img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.media-logo-card__downloads {
    display: grid;
    gap: 10px;
}

.media-logo-card__downloads h2 {
    margin: 0 0 4px;
    color: #172339;
    font: 700 24px/1.2 "Sora", sans-serif;
}

.media-download-row {
    min-height: 44px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 8px 10px 8px 0;
    border-bottom: 1px solid #edf2f8;
}

.media-download-row:last-child {
    border-bottom: 0;
}

.media-download-row strong,
.media-download-row span {
    display: inline-block;
    color: #172339;
    font: 700 14px/1.2 "Sora", sans-serif;
}

.media-download-row strong {
    min-width: 72px;
}

.media-download-row span {
    color: #5c6675;
    font-weight: 600;
}

.media-download-row nav {
    display: flex;
    gap: 8px;
}

.media-download-row a {
    min-width: 54px;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(35,92,166,.18);
    border-radius: 5px;
    background: #f5f8fc;
    color: var(--blue);
    font: 700 12px/1 "Sora", sans-serif;
    transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.media-download-row a:hover {
    border-color: var(--blue);
    background: var(--blue);
    color: #fff;
}

.media-shell {
    width: min(1180px, 100%);
}

.media-header {
    margin-bottom: 18px;
}

.media-header h1 {
    font-size: 28px;
}

.media-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 44px;
    row-gap: 28px;
}

.media-logo-item h2,
.media-banner-section h2 {
    margin: 0 0 14px;
    color: #050b16;
    font: 700 24px/1.2 "Sora", sans-serif;
}

.media-logo-item__body {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    align-items: center;
    gap: 22px;
}

.media-logo-preview {
    width: 190px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    margin: 0;
    border: 1px solid #cfd6de;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

.media-logo-preview img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.media-downloads {
    color: #050b16;
    font: 400 17px/1.65 "Sora", sans-serif;
}

.media-downloads p {
    margin: 0;
}

.media-downloads strong {
    font-weight: 600;
}

.media-downloads a {
    position: relative;
    color: var(--blue);
    text-decoration: none;
}

.media-downloads a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .24s ease;
}

.media-downloads a:hover {
    color: var(--deep-blue);
}

.media-downloads a:hover::after {
    transform: scaleX(1);
}

.media-downloads span {
    color: #374151;
}

.media-banner-section {
    margin-top: 42px;
}

.media-banner-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.media-banner-card {
    position: relative;
    margin: 0;
    aspect-ratio: 16 / 7;
    overflow: hidden;
    background: #edf2f8;
}

.media-banner-trigger {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    cursor: pointer;
    overflow: hidden;
    background: transparent;
}

.media-banner-trigger img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .28s ease, filter .28s ease;
}

.media-banner-trigger span {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(35,92,166,.92);
    color: #fff;
    font: 400 34px/1 Arial, sans-serif;
    transform: translate(-50%, -50%) scale(.72);
    opacity: 0;
    transition: opacity .24s ease, transform .24s ease;
}

.media-banner-trigger::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10,30,60,.18);
    opacity: 0;
    transition: opacity .24s ease;
    z-index: 1;
}

.media-banner-trigger span {
    z-index: 2;
}

.media-banner-trigger:hover img {
    transform: scale(1.04);
    filter: saturate(.92);
}

.media-banner-trigger:hover::before,
.media-banner-trigger:hover span {
    opacity: 1;
}

.media-banner-trigger:hover span {
    transform: translate(-50%, -50%) scale(1);
}

.media-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: rgba(7,15,29,.84);
}

.media-lightbox.is-open {
    display: flex;
}

.media-lightbox img {
    display: block;
    max-width: min(1100px, 92vw);
    max-height: 84vh;
    object-fit: contain;
    box-shadow: 0 22px 70px rgba(0,0,0,.38);
}

.media-lightbox__close {
    position: absolute;
    top: 18px;
    right: 22px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.95);
    color: #172339;
    cursor: pointer;
    font: 400 34px/38px Arial, sans-serif;
}

.composer-page {
    min-height: calc(100vh - var(--fixed-header-height));
    margin-top: var(--fixed-header-height);
    padding: 42px 24px 76px;
    background: #f7f9fc;
    color: #172339;
}

.composer-shell {
    width: min(1120px, 100%);
    margin: 0 auto;
}

.composer-header {
    margin-bottom: 18px;
}

.composer-header h1 {
    margin: 0;
    color: var(--blue);
    font: 700 28px/1.15 "Sora", sans-serif;
}

.composer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.composer-card {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 1;
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 2px;
    background: #eef2f7;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
}

.composer-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .32s ease, filter .32s ease;
}

.composer-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px;
    background: rgba(18,42,78,.62);
    opacity: 0;
    transition: opacity .25s ease;
}

.composer-card__overlay h2 {
    margin: 0;
    color: #fff;
    font: 700 22px/1.25 "Sora", sans-serif;
    text-align: center;
}

.composer-card__overlay span {
    color: rgba(255,255,255,.82);
    font: 700 13px/1.35 "Sora", sans-serif;
    letter-spacing: 0;
    text-transform: none;
    overflow-wrap: anywhere;
}

.composer-card:hover img {
    transform: scale(1.05);
    filter: grayscale(.15);
}

.composer-card:hover .composer-card__overlay {
    opacity: 1;
}

.composer-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background: rgba(8,22,44,.72);
}

.composer-modal.is-open {
    display: flex;
}

.composer-modal__panel {
    position: relative;
    width: min(1020px, 100%);
    max-height: min(86vh, 820px);
    display: flow-root;
    overflow-y: auto;
    padding: 28px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 28px 70px rgba(0,0,0,.28);
}

.composer-modal__close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: #eef3f9;
    color: var(--blue);
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
}

.composer-modal__media {
    float: left;
    width: min(340px, 42%);
    margin: 0 28px 0px 0;
}

.composer-modal__media img {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    border: 1px solid #dfe7f2;
    border-radius: 6px;
    background: #f7f9fc;
}

.composer-modal__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 14px;
}

.composer-modal__socials a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #dfe7f2;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 8px 18px rgba(23,48,82,.08);
    transition: transform .18s ease, box-shadow .18s ease;
}

.composer-modal__socials a:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(23,48,82,.14);
}

.composer-modal__socials img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.composer-modal__content {
    min-width: 0;
    padding: 6px 24px 0 0;
}

.composer-modal__content h2 {
    margin: 0 0 8px;
    color: var(--blue);
    font: 700 30px/1.15 "Sora", sans-serif;
}

.composer-modal__designation {
    margin: 0 0 16px;
    color: #526176;
    font: 700 14px/1.45 "Sora", sans-serif;
    text-transform: none;
}

.composer-modal__copy {
    color: #405068;
    font-size: 15px;
    line-height: 1.72;
}

.composer-modal__copy p {
    margin: 0 0 14px;
}

.composer-modal__copy ul,
.composer-modal__copy ol {
    margin: 0 0 14px 20px;
    padding: 0;
}

.composer-modal__copy a {
    color: var(--blue);
    font-weight: 700;
    text-decoration: underline;
}

.pitch-page {
    min-height: calc(100vh - var(--fixed-header-height));
    margin-top: var(--fixed-header-height);
    padding: 58px 24px 82px;
    background: linear-gradient(180deg, #f6f9fd 0%, #edf3fa 100%);
    color: #172339;
}

.pitch-shell {
    width: min(1120px, 100%);
    margin: 0 auto;
}

.pitch-header {
    margin-bottom: 30px;
}

.pitch-header span {
    display: block;
    margin-bottom: 10px;
    color: var(--blue);
    font: 700 12px/1 "Sora", sans-serif;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.pitch-header h1 {
    margin: 0;
    color: var(--blue);
    font: 700 28px/1.15 "Sora", sans-serif;
}

.pitch-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.pitch-video-card {
    overflow: hidden;
    border: 1px solid #dce6f2;
    border-radius: 8px;
    background: rgba(255,255,255,.9);
    color: #172339;
    box-shadow: 0 14px 34px rgba(23,48,82,.07);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.pitch-video-card__frame {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #dce6f2;
}

.pitch-video-card__frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.pitch-video-card h2 {
    margin: 0;
    padding: 16px 16px 18px;
    color: #172339;
    font: 700 15px/1.45 "Sora", sans-serif;
}

.pitch-video-card a {
    position: relative;
    display: inline-block;
    margin: 0 18px 18px;
    color: var(--blue);
    font: 700 12px/1.2 "Sora", sans-serif;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
}

.pitch-video-card a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .24s ease;
}

.pitch-video-card a:hover::after {
    transform: scaleX(1);
}

.pitch-video-card:hover {
    transform: translateY(-3px);
    border-color: rgba(35,92,166,.36);
    box-shadow: 0 18px 42px rgba(23,48,82,.12);
}

.playlists-page {
    min-height: calc(100vh - var(--fixed-header-height));
    margin-top: var(--fixed-header-height);
    padding: 44px 24px 82px;
    background: #f4f7fb;
    color: #172339;
}

.playlists-shell {
    width: min(1320px, 100%);
    margin: 0 auto;
}

.playlists-hero {
    display: grid;
    grid-template-columns: minmax(420px, 1fr) minmax(0, 1.15fr);
    gap: 34px;
    align-items: end;
    margin-bottom: 34px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(35,92,166,.16);
}

.playlists-hero span,
.playlist-section__heading span {
    display: block;
    color: var(--blue);
    font: 800 10px/1 "Sora", sans-serif;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.playlists-hero span {
    margin-bottom: 9px;
}

.playlists-hero h1 {
    margin: 0;
    color: var(--blue);
    font: 800 28px/1.15 "Sora", sans-serif;
    letter-spacing: 0;
}

.playlists-tabs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.playlists-tabs button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 14px;
    border: 1px solid rgba(35,92,166,.18);
    border-radius: 6px;
    background: #fff;
    color: var(--blue);
    cursor: pointer;
    font: 800 13px/1 "Sora", sans-serif;
    text-decoration: none;
    transition: border-color .22s ease, background .22s ease, color .22s ease;
}

.playlists-tabs button::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 8px;
    height: 2px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .22s ease;
}

.playlists-tabs button:hover,
.playlists-tabs button.is-active {
    border-color: rgba(35,92,166,.45);
    background: #f8fbff;
    color: #172339;
}

.playlists-tabs button:hover::after,
.playlists-tabs button.is-active::after {
    transform: scaleX(1);
}

.playlist-section {
    scroll-margin-top: calc(var(--fixed-header-height) + 24px);
    margin-top: 36px;
}

.playlist-section__heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 14px;
}

.playlist-section__heading h2 {
    margin: 0;
    color: var(--blue);
    font: 800 24px/1.15 "Sora", sans-serif;
}

.playlist-section__heading span {
    color: #6b7688;
    white-space: nowrap;
}

.playlist-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.playlist-card {
    overflow: hidden;
    border: 1px solid rgba(35,92,166,.15);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(23,48,82,.07);
    transition: border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}

.playlist-card:hover {
    transform: translateY(-2px);
    border-color: rgba(35,92,166,.34);
    box-shadow: 0 18px 44px rgba(23,48,82,.1);
}

.playlist-card h3 {
    margin: 0;
    padding: 15px 16px 12px;
    color: #172339;
    font: 800 15px/1.35 "Sora", sans-serif;
}

.playlist-card__embed {
    padding: 0 10px 10px;
}

.playlist-card__embed iframe {
    display: block;
    width: 100%;
    height: 600px;
    border: 0;
    border-radius: 6px;
}

.playlist-section {
    transition: opacity .24s ease, transform .24s ease;
}

.playlist-section.is-switching {
    opacity: 0;
    transform: translateY(10px);
}

.playlist-soon {
    min-height: 260px;
    display: grid;
    place-items: center;
    padding: 46px 22px;
    border: 1px solid rgba(35,92,166,.16);
    border-radius: 8px;
    background: #fff;
    text-align: center;
    box-shadow: 0 14px 34px rgba(23,48,82,.07);
}

.playlist-soon h3 {
    margin: 0 0 8px;
    color: #172339;
    font: 800 34px/1.15 "Sora", sans-serif;
}

.playlist-soon p {
    margin: 0;
    color: #516074;
    font: 600 15px/1.6 "Sora", sans-serif;
}

.license-page {
    min-height: calc(100vh - var(--fixed-header-height));
    margin-top: var(--fixed-header-height);
    padding: 42px 24px 78px;
    background: #f6f9fd;
    color: #172339;
}

.license-shell {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.license-hero {
    overflow: hidden;
    background: #e6edf7;
}

.license-hero img {
    display: block;
    width: 100%;
    height: auto;
}

.license-intro {
    padding: 30px 0 24px;
    border-bottom: 1px dashed #cfd9e6;
}

.license-intro h1 {
    margin: 0 0 18px;
    color: var(--blue);
    font: 700 28px/1.15 "Sora", sans-serif;
}

.license-intro p {
    width: min(980px, 100%);
    margin: 0 0 16px;
    color: #405068;
    font: 400 16px/1.75 "Open Sans", Arial, sans-serif;
}

.license-intro a {
    color: var(--blue);
    font-weight: 700;
}

.license-actions {
    margin-top: 22px;
}

.license-actions a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 42px;
    padding: 11px 16px;
    border: 1px solid rgba(35,92,166,.22);
    border-radius: 6px;
    background: #fff;
    color: var(--blue);
    font: 700 13px/1.2 "Sora", sans-serif;
    text-decoration: none;
    transition: background .22s ease, color .22s ease, border-color .22s ease;
}

.license-actions a:hover {
    border-color: var(--blue);
    background: var(--blue);
    color: #fff;
}

.license-section-title {
    padding: 22px 0 18px;
    color: #172339;
    font: 700 15px/1.4 "Sora", sans-serif;
}

.license-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.license-card {
    min-width: 0;
}

.license-card__button {
    position: relative;
    width: 100%;
    display: block;
    padding: 0;
    border: 0;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: #e8eef7;
    box-shadow: 0 10px 24px rgba(17,45,88,.08);
}

.license-card__button img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform .26s ease, filter .26s ease;
}

.license-card__button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10,30,60,.22);
    opacity: 0;
    z-index: 1;
    transition: opacity .24s ease;
}

.license-card__button span {
    position: absolute;
    inset: 50% auto auto 50%;
    z-index: 2;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(35,92,166,.94);
    color: #fff;
    font: 400 34px/1 Arial, sans-serif;
    opacity: 0;
    transform: translate(-50%, -50%) scale(.72);
    transition: opacity .24s ease, transform .24s ease;
}

.license-card__button:hover img {
    transform: scale(1.04);
    filter: saturate(.92);
}

.license-card__button:hover::before,
.license-card__button:hover span {
    opacity: 1;
}

.license-card__button:hover span {
    transform: translate(-50%, -50%) scale(1);
}

.license-card h2 {
    margin: 9px 0 0;
    color: #172339;
    font: 600 12px/1.35 "Sora", sans-serif;
    text-align: center;
}

.license-empty {
    margin: 0;
    color: #405068;
    font: 700 16px/1.5 "Sora", sans-serif;
}

.license-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background: rgba(7,15,29,.82);
}

.license-modal.is-open {
    display: flex;
}

.license-modal__panel {
    position: relative;
    width: min(760px, 94vw);
    max-height: 90vh;
    overflow: auto;
    padding: 22px;
    border-radius: 12px;
    background: #fff;
    text-align: center;
    box-shadow: 0 24px 70px rgba(0,0,0,.38);
}

.license-modal__close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: #edf3fa;
    color: #172339;
    cursor: pointer;
    font: 400 28px/30px Arial, sans-serif;
}

.license-modal img {
    display: block;
    max-width: 100%;
    max-height: 62vh;
    margin: 0 auto;
    object-fit: contain;
    border-radius: 8px;
}

.license-modal h2 {
    margin: 14px 0 12px;
    color: #172339;
    font: 700 20px/1.35 "Sora", sans-serif;
}

.license-modal__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 9px;
}

.license-modal__links a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 34px;
    padding: 8px 12px;
    border: 1px solid rgba(35,92,166,.22);
    border-radius: 6px;
    color: var(--blue);
    font: 700 13px/1 "Sora", sans-serif;
    text-decoration: none;
    transition: background .22s ease, color .22s ease, border-color .22s ease;
}

.license-modal__links a:hover {
    border-color: var(--blue);
    background: var(--blue);
    color: #fff;
}

.placement-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background: rgba(7,15,29,.82);
}

.placement-modal.is-open {
    display: flex;
}

.placement-modal__panel {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(520px, 760px);
    align-items: start;
    gap: 25px;
    width: fit-content;
    max-width: calc(100vw - 56px);
    max-height: 90vh;
    overflow: auto;
    padding: 24px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 24px 80px rgba(0,0,0,.38);
}

.placement-modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: #edf3fa;
    color: #172339;
    cursor: pointer;
    font: 400 28px/32px Arial, sans-serif;
    z-index: 2;
}

.placement-modal__image {
    min-height: 0;
    height: auto;
    width: auto;
    border-radius: 8px;
    background: #f2f5f9;
    overflow: hidden;
}

.placement-modal__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.placement-modal__content {
    align-self: start;
    padding: 10px 18px 10px 0;
}

.placement-modal__eyebrow {
    margin: 0 0 10px;
    color: var(--blue);
    font: 800 11px/1 "Sora", sans-serif;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.placement-modal h2 {
    margin: 0 40px 18px 0;
    color: #172339;
    font: 800 30px/1.18 "Sora", sans-serif;
    letter-spacing: 0;
}

.placement-modal__section {
    margin-top: 18px;
}

.placement-modal__section h3,
.placement-modal__facts strong {
    display: block;
    margin: 0 0 7px;
    color: #172339;
    font: 800 12px/1 "Sora", sans-serif;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.placement-modal__section p,
.placement-modal__facts span {
    margin: 0;
    color: #405068;
    font: 500 15px/1.7 "Sora", sans-serif;
}

.placement-modal__facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 20px;
}

.placement-modal__facts div {
    padding: 14px;
    border: 1px solid rgba(35,92,166,.16);
    border-radius: 8px;
    background: #f7faff;
}

.placement-modal__meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 20px 0 4px;
}

.placement-modal__meta[hidden] {
    display: none;
}

.placement-modal__meta div {
    min-height: 74px;
    padding: 13px 14px;
    border: 1px solid rgba(35,92,166,.16);
    border-radius: 8px;
    background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}

.placement-modal__meta dt {
    margin: 0 0 7px;
    color: #235ca6;
    font: 800 11px/1 "Sora", sans-serif;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.placement-modal__meta dd {
    margin: 0;
    color: #172339;
    font: 700 15px/1.45 "Sora", sans-serif;
}

.placement-modal__links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.placement-modal__links--icons::before {
    content: "View More Details";
    flex: 0 0 100%;
    margin: 0 0 2px;
    color: #172339;
    font: 800 12px/1 "Sora", sans-serif;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.placement-modal__links a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 9px 14px;
    border: 1px solid rgba(35,92,166,.24);
    border-radius: 6px;
    color: var(--blue);
    font: 800 13px/1 "Sora", sans-serif;
    text-decoration: none;
    transition: background .22s ease, color .22s ease, border-color .22s ease;
}

.placement-modal__links a:hover {
    border-color: var(--blue);
    background: var(--blue);
    color: #fff;
}

.placement-modal__links--icons a {
    justify-content: center;
    width: 46px;
    height: 46px;
    min-height: 46px;
    padding: 5px;
    border-color: rgba(23,35,57,.12);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(35,92,166,.12);
}

.placement-modal__links--icons a:hover {
    background: #f4f8ff;
    transform: translateY(-1px);
}

.placement-modal__links--icons img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 5px;
}

@media (max-width: 1180px) {
    .placement-modal__panel {
        grid-template-columns: minmax(240px, 36%) minmax(0, 1fr);
        width: min(1040px, calc(100vw - 40px));
    }
}

.contact-hub-wrap {
    width: min(780px, calc(100% - 40px));
    margin: 0 auto 72px;
    padding: 34px;
    border: 1px solid #d9e2ee;
    border-radius: 8px;
    background: #fff;
}

.contact-hub-heading {
    margin-bottom: 22px;
    text-align: center;
}

.contact-hub-heading h2 {
    margin: 0 0 8px;
    color: #172339;
    font: 700 28px/1.2 "Sora", sans-serif;
}

.contact-hub-heading p {
    margin: 0;
    color: #66707c;
    font-weight: 700;
}

.contact-hub-message {
    margin-bottom: 18px;
    padding: 13px 15px;
    border-radius: 6px;
    background: #fff1f1;
    color: #8a2222;
    font-weight: 700;
}

.contact-hub-message p {
    margin: 0;
}

.contact-hub-message--success {
    background: #edf7ef;
    color: #226d39;
}

.contact-hub-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.contact-hub-form label,
.contact-hub-form__captcha,
.contact-hub-form button {
    grid-column: span 2;
}

.contact-hub-form label:nth-of-type(1),
.contact-hub-form label:nth-of-type(2) {
    grid-column: span 1;
}

.contact-hub-form span {
    display: block;
    margin-bottom: 6px;
    color: #516071;
    font: 700 11px "Sora", sans-serif;
    text-transform: uppercase;
}

.contact-hub-form input,
.contact-hub-form textarea {
    width: 100%;
    border: 1px solid #dbe3ee;
    border-radius: 6px;
    padding: 12px 14px;
    color: #172339;
    font: 500 14px "Open Sans", sans-serif;
}

.contact-hub-form input {
    height: 48px;
}

.contact-hub-form textarea {
    min-height: 138px;
    resize: vertical;
}

.contact-hub-form__trap {
    position: absolute;
    left: -9999px;
}

.contact-hub-form button {
    min-height: 48px;
    border: 0;
    border-radius: 6px;
    background: var(--blue);
    color: #fff;
    font: 700 12px "Sora", sans-serif;
    text-transform: uppercase;
    cursor: pointer;
}

.site-footer {
    padding: 22px 20px 18px;
    background: #174c8f;
    color: rgba(255,255,255,.9);
    text-align: center;
}

.site-footer__social {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
}

.site-footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    transition: transform .2s ease, opacity .2s ease;
}

.site-footer__social a:hover {
    opacity: .88;
    transform: translateY(-2px);
}

.site-footer__social img {
    display: block;
    width: 28px;
    height: 28px;
    border-radius: 4px;
    object-fit: contain;
}

.site-footer p {
    margin: 0;
    font: 600 12px "Sora", sans-serif;
    letter-spacing: .4px;
}

.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 10;
    width: 36px;
    height: 36px;
    border: 0;
    background: #f3f3f3;
    color: #777;
    cursor: pointer;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes heroZoom {
    from { transform: scale(1); }
    to { transform: scale(1.06); }
}

@media (max-width: 1500px) {
    .topbar {
        grid-template-columns: minmax(120px, 1fr) auto minmax(120px, 1fr);
        gap: 16px;
        font-size: 12px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .topbar__left {
        gap: 14px;
    }

    .topbar__brand {
        width: 128px;
        min-height: 42px;
    }

    .topbar__social {
        gap: 6px;
    }

    .topbar i {
        font-size: 18px;
    }

    .topbar__social img {
        width: 23px;
        height: 23px;
    }
}
@media (max-width: 1100px) {
    .site-header {
        position: relative;
    }

    .topbar__social-strip {
        padding: 10px 12px;
    }

    .topbar {
        grid-template-columns: 1fr;
        height: auto;
        gap: 14px;
        padding: 12px 14px 14px;
    }

    .topbar__brand {
        justify-self: center;
        width: 150px;
    }

    .topbar__center {
        width: 100%;
    }

    .topbar__account {
        justify-self: center;
    }

    .topbar__left,
    .topbar__social,
    .servicebar {
        justify-content: center;
        flex-wrap: wrap;
    }

    .topbar__left,
    .topbar__social {
        gap: 14px;
    }

    .servicebar {
        gap: 18px 24px;
        font-size: 11px;
        line-height: 1.45;
    }

    .servicebar a {
        width: 128px;
        min-height: 34px;
        padding-bottom: 8px;
    }

    .topbar__menu {
        left: 50%;
        transform: translate(-50%, 8px);
    }

    .topbar__dropdown:hover .topbar__menu,
    .topbar__dropdown:focus-within .topbar__menu {
        transform: translate(-50%, 0);
    }

    .contact-page {
        margin-top: 0;
    }

    .media-page {
        margin-top: 0;
    }

    .songs-page {
        padding-top: 24px;
    }

    .hero,
    .soon-hero {
        margin-top: 0;
    }

    .hero {
        min-height: 650px;
    }

    .hero__inner {
        min-height: 650px;
        width: min(900px, calc(100% - 48px));
        padding: 72px 0 44px;
    }

    .hero__services {
        grid-template-columns: repeat(2, minmax(150px, 1fr));
        align-self: flex-start;
        width: min(470px, 100%);
        gap: 22px 30px;
        margin-top: 72px;
    }

    .placement-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 20px;
    }

    .home-videos__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .our-work-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 18px;
    }

    .hero__content {
        margin-left: 0;
    }

    .client-card {
        flex-basis: calc((100% - var(--client-gap)) / 2);
        padding: 24px 30px 28px;
    }

    .client-card img {
        width: 220px;
    }

    .stats {
        grid-template-columns: repeat(4, 1fr);
        width: min(100% - 50px, 900px);
        gap: 28px;
        margin-bottom: 92px;
    }

    .stats strong {
        font-size: 48px;
    }

    .stats > div > span {
        font-size: 15px;
    }

    .mission__copy {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .topbar {
        grid-template-columns: 1fr;
        height: auto;
        gap: 10px;
        padding: 10px;
    }

    .topbar nav,
    .topbar__center,
    .topbar__social,
    .topbar__right {
        justify-content: center;
        flex-wrap: wrap;
        gap: 14px;
    }

    .topbar__dropdown {
        position: static;
    }

    .topbar__menu,
    .topbar__menu--services {
        left: 12px;
        right: 12px;
        width: auto;
        max-height: 340px;
        transform: translateY(8px);
    }

    .topbar__dropdown:hover .topbar__menu,
    .topbar__dropdown:focus-within .topbar__menu {
        transform: translateY(0);
    }

    .servicebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px 14px;
        min-height: 0;
        padding: 16px 18px 18px;
        background: #235ca6;
        font-size: 11px;
        line-height: 1.45;
    }

    .servicebar a {
        width: auto;
        min-height: 0;
        padding-bottom: 9px;
    }

    .hero,
    .soon-hero {
        margin-top: 0;
        min-height: 620px;
    }

    .hero__bg {
        background-position: center top;
    }

    .hero__inner {
        min-height: 620px;
        width: calc(100% - 32px);
        padding: 76px 0 34px;
    }

    .hero__logo {
        width: 188px;
        margin-bottom: 28px;
    }

    .eyebrow,
    .section__heading {
        font-size: 11px;
        letter-spacing: 4px;
    }

    .hero h1 {
        font-size: 44px;
    }

    .button {
        min-height: 42px;
        padding: 12px 24px;
    }

    .hero__services {
        grid-template-columns: 1fr;
        align-self: flex-start;
        gap: 14px;
        width: 100%;
        margin-top: 52px;
    }

    .section {
        width: 100%;
        padding: 50px 18px 70px;
    }

    .filters {
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 12px;
        overflow-x: auto;
        padding-bottom: 6px;
        margin: 28px -18px 26px;
        padding-left: 18px;
        padding-right: 18px;
    }

    .filter {
        flex: 0 0 auto;
    }

    .placement-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .home-videos {
        padding-top: 18px;
    }

    .home-videos__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .our-work-page {
        margin-top: 0;
        padding: 38px 18px 62px;
    }

    .our-work-header h1 {
        font-size: 28px;
    }

    .our-work-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .mission__inner {
        padding: 62px 0 48px;
    }

    .mission .eyebrow,
    .mission__copy {
        width: min(100% - 36px, 560px);
    }

    .mission__copy {
        font-size: 18px;
        line-height: 1.5;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 34px 18px;
        width: min(100% - 36px, 520px);
        margin: 52px auto 72px;
    }

    .stats strong {
        font-size: 50px;
        margin-bottom: 8px;
    }

    .stats > div > span {
        font-size: 13px;
    }

    .clients-title {
        margin-bottom: 34px;
    }

    .client-carousel {
        --client-gap: 18px;
        --client-edge-cover: 24px;
        padding: 0 28px;
    }

    .client-card {
        flex-basis: 100%;
        min-height: 0;
        padding: 22px 22px 26px;
    }

    .client-card::before {
        top: 8px;
        right: 18px;
        left: auto;
        font-size: 76px;
    }

    .client-card img {
        width: 210px;
        height: 92px;
        margin-bottom: 26px;
    }

    .client-card p {
        min-height: 0;
        font-size: 12px;
        line-height: 1.65;
    }

    .client-arrows {
        inset: 48% 2px auto;
    }

    .client-arrow {
        width: 24px;
        height: 38px;
        font-size: 16px;
        background: rgba(255,255,255,.13);
    }

    .partners {
        padding: 22px 0 20px;
    }

    .partners h2 {
        margin-bottom: 14px;
        font-size: 19px;
    }

    .partners__track a {
        margin: 0 14px;
        padding: 12px 20px;
    }

    .partners__track img {
        max-width: 165px;
        max-height: 90px;
    }

    .soon-hero {
        min-height: 620px;
    }

    .soon-hero__content img {
        width: 200px;
    }

    .soon-hero h1 {
        font-size: 28px;
    }

    .soon-hero__message {
        font-size: 34px;
    }

    .contact-page {
        margin-top: 0;
    }

    .media-page {
        margin-top: 0;
        padding: 34px 18px 54px;
    }

    .media-header h1 {
        font-size: 28px;
    }

    .media-list {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .media-logo-item h2,
    .media-banner-section h2 {
        font-size: 22px;
    }

    .media-logo-item__body {
        grid-template-columns: 160px minmax(0, 1fr);
        gap: 16px;
    }

    .media-logo-preview {
        width: 160px;
    }

    .media-downloads {
        font-size: 15px;
        line-height: 1.6;
    }

    .media-banner-section {
        margin-top: 42px;
    }

    .media-banner-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .media-logo-card {
        padding: 18px;
    }

    .media-logo-card__downloads h2 {
        font-size: 22px;
    }

    .media-logo-card__body {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .media-logo-card__preview {
        width: min(220px, 100%);
    }

    .composer-page {
        margin-top: 0;
        padding: 34px 18px 56px;
    }

    .composer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .composer-modal {
        padding: 18px;
    }

    .composer-modal__panel {
        padding: 22px;
    }

    .composer-modal__media {
        float: none;
        width: min(340px, 100%);
        margin: 0 0 18px;
    }

    .composer-modal__content {
        padding-right: 0;
    }

    .pitch-page {
        margin-top: 0;
        padding: 42px 18px 58px;
    }

    .pitch-header h1 {
        font-size: 28px;
    }

    .pitch-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .playlists-page {
        margin-top: 0;
        padding: 38px 18px 58px;
    }

    .playlists-hero {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 28px;
    }

    .playlists-hero h1 {
        font-size: 28px;
    }

    .playlists-tabs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .playlist-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .playlist-card__embed iframe {
        height: 520px;
    }

    .license-page {
        margin-top: 0;
        padding: 34px 18px 58px;
    }

    .license-intro h1 {
        font-size: 28px;
    }

    .license-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
    }

    .contact-hero {
        width: calc(100% - 28px);
        padding: 34px 0 22px;
    }

    .contact-hero h1 {
        font-size: 28px;
    }

    .contact-list {
        width: calc(100% - 28px);
        margin: 34px auto 46px;
        gap: 0;
        grid-template-columns: 1fr;
        border: 1px solid #d9e2ee;
    }

    .contact-card {
        grid-template-columns: 104px 1fr;
        gap: 14px;
        padding: 14px;
        border-right: 0;
        border-bottom: 1px solid #d9e2ee;
    }

    .contact-card:last-child {
        border-bottom: 0;
    }

    .contact-card__flag img {
        width: 92px;
    }

    .contact-card__body h2 {
        font-size: 24px;
    }

    .contact-card__body strong,
    .contact-card__body p,
    .contact-card dl {
        font-size: 15px;
    }

    .contact-hub-wrap {
        width: calc(100% - 28px);
        padding: 24px 18px;
        margin-bottom: 48px;
    }

    .contact-hub-form,
    .admin-settings-form {
        grid-template-columns: 1fr;
    }

    .contact-hub-form label,
    .contact-hub-form label:nth-of-type(1),
    .contact-hub-form label:nth-of-type(2),
    .contact-hub-form__captcha,
    .contact-hub-form button {
        grid-column: span 1;
    }

    .site-footer {
        padding: 20px 16px 18px;
    }

    .site-footer__social {
        gap: 9px;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }

    .site-footer__social a {
        width: 30px;
        height: 30px;
    }

    .site-footer__social img {
        width: 25px;
        height: 25px;
    }

    .site-footer p {
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .topbar nav,
    .topbar__social,
    .topbar__right {
        gap: 11px;
    }

    .media-page {
        padding: 30px 14px 48px;
    }

    .media-logo-item__body {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .media-logo-preview {
        width: min(180px, 100%);
    }

    .media-downloads {
        font-size: 15px;
    }

    .media-banner-grid {
        grid-template-columns: 1fr;
    }

    .media-logo-card {
        padding: 16px 14px;
    }

    .media-download-row {
        grid-template-columns: 1fr;
        gap: 8px;
        padding-right: 0;
    }

    .media-download-row nav {
        width: 100%;
    }

    .media-download-row a {
        flex: 1;
    }

    .composer-page {
        padding: 30px 14px 48px;
    }

    .composer-header h1 {
        font-size: 26px;
    }

    .composer-grid {
        grid-template-columns: 1fr;
    }

    .composer-modal {
        padding: 12px;
    }

    .composer-modal__panel {
        padding: 18px 14px;
    }

    .composer-modal__content h2 {
        font-size: 25px;
    }

    .composer-modal__socials a {
        width: 34px;
        height: 34px;
    }

    .pitch-page {
        padding: 34px 14px 48px;
    }

    .pitch-header h1 {
        font-size: 26px;
    }

    .pitch-grid {
        grid-template-columns: 1fr;
    }

    .playlists-page {
        padding: 30px 14px 48px;
    }

    .playlists-hero h1 {
        font-size: 26px;
    }

    .playlists-tabs {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .playlists-tabs button {
        justify-content: flex-start;
        min-height: 40px;
    }

    .playlist-section__heading h2 {
        font-size: 22px;
    }

    .playlist-section__heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .playlist-grid {
        grid-template-columns: 1fr;
    }

    .playlist-card h3 {
        padding: 13px 12px 10px;
        font-size: 15px;
    }

    .playlist-card__embed {
        padding: 0 8px 8px;
    }

    .playlist-card__embed iframe {
        height: 430px;
    }

    .pitch-video-card h2 {
        font-size: 15px;
        padding: 15px 15px 8px;
    }

    .license-page {
        padding: 28px 14px 48px;
    }

    .license-intro {
        padding: 24px 0 18px;
    }

    .license-intro h1 {
        font-size: 28px;
    }

    .license-intro p {
        font-size: 15px;
        line-height: 1.65;
    }

    .license-grid {
        grid-template-columns: 1fr 1fr;
    }

    .license-modal {
        padding: 16px;
    }

    .license-modal__panel {
        padding: 18px 14px;
    }

    .placement-modal {
        padding: 16px;
    }

    .placement-modal__panel {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 18px;
    }

    .placement-modal__image {
        min-height: 0;
    }

    .placement-modal__image img {
        height: auto;
        object-fit: contain;
    }

    .placement-modal__content {
        padding: 0;
    }

    .placement-modal h2 {
        font-size: 23px;
    }

    .placement-modal__facts {
        grid-template-columns: 1fr;
    }

    .placement-modal__meta {
        grid-template-columns: 1fr;
    }

    .servicebar {
        font-size: 9px;
    }

    .hero {
        min-height: 590px;
    }

    .hero__inner {
        min-height: 590px;
        padding-top: 62px;
    }

    .hero h1 {
        font-size: 39px;
    }

    .placement-grid {
        gap: 11px;
    }

    .our-work-page {
        padding: 32px 14px 52px;
    }

    .our-work-grid {
        gap: 11px;
    }

    .stats strong {
        font-size: 54px;
    }

    .stats > div > span {
        font-size: 12px;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .mission__copy {
        font-size: 17px;
    }

    .contact-card {
        grid-template-columns: 82px 1fr;
        gap: 10px;
        padding: 12px 10px;
    }

    .contact-card__flag img {
        width: 74px;
    }

    .contact-card__body h2 {
        font-size: 22px;
    }

    .contact-card__body strong,
    .contact-card__body p,
    .contact-card dl {
        font-size: 14px;
        line-height: 1.45;
    }

    .contact-card dl div {
        align-items: flex-start;
    }

    .contact-card dt {
        min-width: 0;
    }

    .contact-hub-heading h2 {
        font-size: 22px;
    }

    .contact-hub-form__captcha {
        overflow-x: auto;
    }

    .site-footer {
        padding: 20px 14px 18px;
    }

    .site-footer__social {
        gap: 8px;
        width: min(320px, 100%);
        margin-left: auto;
        margin-right: auto;
    }

    .site-footer__social a {
        width: 28px;
        height: 28px;
    }

    .site-footer__social img {
        width: 24px;
        height: 24px;
    }

    .site-footer p {
        font-size: 10px;
        line-height: 1.5;
        letter-spacing: .2px;
    }
}

.songs-page {
    min-height: 100vh;
    padding: calc(var(--fixed-header-height) + 18px) 32px 80px;
    background: #f7f9fc;
}

.songs-hero {
    width: min(1600px, 100%);
    margin: 0 auto 14px;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border: 1px solid #dfe8f6;
    border-radius: 8px;
    background: linear-gradient(135deg, #ffffff 0%, #eef5ff 100%);
    box-shadow: 0 16px 36px rgba(23,55,101,.08);
    color: #172339;
    text-align: left;
}

.songs-hero h1 {
    margin: 0;
    color: var(--blue);
    font: 700 28px/1.15 "Sora", sans-serif;
    text-transform: none;
}

.catalogue-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    width: min(620px, 55%);
    margin: 0;
}

.catalogue-stat-card {
    position: relative;
    overflow: hidden;
    padding: 0 0 0 18px;
    border: 0;
    border-left: 1px solid rgba(35,92,166,.2);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    text-align: left;
    transition: opacity .22s ease;
}

.catalogue-stat-card::before {
    content: none;
}

.catalogue-stat-card:hover {
    opacity: .82;
}

.catalogue-stat-card strong {
    position: relative;
    display: block;
    margin-bottom: 3px;
    color: var(--blue);
    font: 700 24px/1 "Sora", sans-serif;
    text-shadow: none;
}

.catalogue-stat-card span {
    position: relative;
    display: block;
    color: #596779;
    font: 700 11px "Sora", sans-serif;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.songs-filter {
    display: grid;
    grid-template-columns: minmax(190px, .8fr) minmax(160px, .7fr) minmax(260px, 1.4fr) auto auto;
    gap: 14px;
    width: min(1180px, 100%);
    margin: 0 auto 24px;
    padding: 22px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(17,45,88,.09);
}

.songs-filter label {
    display: block;
}

.songs-filter span {
    display: block;
    margin-bottom: 6px;
    color: #516071;
    font: 700 11px "Sora", sans-serif;
    text-transform: uppercase;
}

.songs-filter select,
.songs-filter input {
    width: 100%;
    height: 42px;
    border: 1px solid #dbe3ee;
    border-radius: 5px;
    padding: 0 12px;
    color: #172339;
    font: 500 13px "Open Sans", sans-serif;
    background: #fff;
}

.songs-filter button,
.songs-filter a {
    align-self: end;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 5px;
    padding: 0 22px;
    background: var(--blue);
    color: #fff;
    font: 700 12px "Sora", sans-serif;
    text-transform: uppercase;
    cursor: pointer;
}

.songs-filter a {
    background: #edf2f8;
    color: var(--blue);
}

.auth-page {
    min-height: calc(100vh - var(--fixed-header-height));
    margin-top: var(--fixed-header-height);
    padding: 72px 20px;
    display: grid;
    place-items: start center;
    background:
        radial-gradient(circle at 20% 10%, rgba(255,255,255,.18), transparent 28%),
        linear-gradient(rgba(35,92,166,.80), rgba(22,70,135,.92)),
        url("../images/songs-bg.webp") center / cover;
}

.auth-panel {
    width: min(760px, 100%);
    padding: 42px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 28px 70px rgba(12,39,78,.26);
}

.auth-panel--small {
    width: min(540px, 100%);
}

.auth-panel img {
    display: block;
    width: 270px;
    max-width: 86%;
    margin: 0 auto 18px;
}

.auth-panel h1 {
    margin: 0 0 26px;
    color: #172339;
    font: 700 34px/1.1 "Sora", sans-serif;
    text-align: center;
    text-transform: none;
}

.auth-panel .eyebrow {
    display: block;
    color: #6d7b8c;
    text-align: center;
}

.auth-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.auth-panel--small .auth-form {
    grid-template-columns: 1fr;
}

.auth-form label,
.account-summary p {
    margin: 0;
}

.auth-form span,
.account-summary strong {
    display: block;
    margin-bottom: 6px;
    color: #516071;
    font: 700 11px "Sora", sans-serif;
    text-transform: uppercase;
}

.auth-form input {
    width: 100%;
    height: 48px;
    border: 1px solid #dbe3ee;
    border-radius: 6px;
    padding: 0 14px;
    color: #172339;
    font: 500 13px "Open Sans", sans-serif;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.auth-form input:focus {
    outline: 0;
    border-color: rgba(35,92,166,.65);
    box-shadow: 0 0 0 4px rgba(35,92,166,.10);
}

.auth-form button,
.auth-link-button,
.admin-table button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 6px;
    padding: 0 22px;
    background: var(--blue);
    color: #fff;
    font: 700 12px "Sora", sans-serif;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}

.auth-form button:hover,
.auth-link-button:hover,
.admin-table button:hover {
    background: #174c8f;
    transform: translateY(-1px);
}

.auth-form button {
    align-self: end;
    min-height: 48px;
}

.password-field__control {
    position: relative;
    display: block;
}

.password-field__control input {
    padding-right: 52px;
}

.password-toggle {
    position: absolute;
    top: 50%;
    right: 8px;
    z-index: 2;
    width: 34px;
    height: 34px;
    min-height: 0 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    border-radius: 4px !important;
    background: #edf2f8 !important;
    color: var(--blue) !important;
    font-size: 14px !important;
    cursor: pointer;
    transform: translateY(-50%) !important;
}

.password-toggle::before {
    content: "\f06e";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.password-toggle.is-visible::before {
    content: "\f070";
}

.password-toggle:hover {
    background: #dfe9f6 !important;
}

.auth-message {
    margin: 0 0 18px;
    padding: 14px 16px;
    border-radius: 5px;
    background: #fff1f1;
    color: #8a2222;
    font-weight: 700;
}

.auth-message p {
    margin: 0;
}

.auth-message--success {
    background: #edf7ef;
    color: #226d39;
}

.auth-switch {
    margin: 22px 0 0;
    color: #516071;
    font-weight: 700;
    text-align: center;
}

.auth-switch a {
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.account-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 24px;
}

.account-summary p {
    padding: 16px 18px;
    border: 1px solid #e5edf5;
    border-radius: 8px;
    background: linear-gradient(180deg, #f8fbff, #fff);
}

.account-summary span {
    color: #172339;
    font-weight: 700;
}

.admin-panel {
    width: min(1180px, 100%);
}

.admin-panel--dashboard {
    width: min(1480px, 100%);
    padding: 0;
    overflow: hidden;
}

.admin-panel--dashboard > img,
.admin-panel--dashboard > .eyebrow,
.admin-panel--dashboard > h1 {
    display: none;
}

.admin-dashboard {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    min-height: 760px;
    background: #f4f7fb;
}

.admin-sidebar {
    position: sticky;
    top: var(--fixed-header-height);
    align-self: start;
    min-height: 760px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 24px 18px;
    background: #173f78;
    color: #fff;
}

.admin-sidebar__title {
    padding: 0 4px 14px;
    border-bottom: 1px solid rgba(255,255,255,.18);
}

.admin-sidebar__title strong,
.admin-sidebar__title span {
    display: block;
}

.admin-sidebar__title strong {
    font: 700 19px/1.2 "Sora", sans-serif;
}

.admin-sidebar__title span {
    margin-top: 5px;
    color: rgba(255,255,255,.72);
    font-size: 12px;
}

.admin-menu {
    display: grid;
    gap: 7px;
}

.admin-menu a,
.admin-logout {
    min-height: 40px;
    display: flex;
    align-items: center;
    border-radius: 6px;
    padding: 0 12px;
    color: rgba(255,255,255,.88);
    font: 700 12px "Sora", sans-serif;
    transition: background .18s ease, color .18s ease;
}

.admin-menu a:hover,
.admin-menu a.is-active,
.admin-logout:hover {
    background: rgba(255,255,255,.12);
    color: #fff;
}

.admin-logout {
    margin-top: auto;
    background: rgba(255,255,255,.10);
}

.admin-workspace {
    min-width: 0;
    padding: 24px;
}

.admin-workspace-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
    padding: 22px 24px;
    border: 1px solid #e1e9f3;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(17,45,88,.06);
}

.admin-workspace-header p {
    margin: 0 0 5px;
    color: #6d7b8c;
    font: 700 11px "Sora", sans-serif;
    text-transform: uppercase;
}

.admin-workspace-header h2 {
    margin: 0;
    color: #172339;
    font: 700 26px/1.15 "Sora", sans-serif;
}

.admin-ajax-status {
    margin: 0 0 18px;
    padding: 12px 14px;
    border: 1px solid #cce7d4;
    border-radius: 6px;
    background: #eef9f1;
    color: #226d39;
    font: 700 13px "Sora", sans-serif;
}

.admin-ajax-status.is-error {
    border-color: #f0caca;
    background: #fff1f1;
    color: #8a2222;
}

.admin-dashboard button:disabled {
    opacity: .62;
    cursor: wait;
}

.admin-topline {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin: 0;
    color: #172339;
    font: 700 13px "Sora", sans-serif;
}

.admin-table-wrap {
    margin-top: 24px;
    padding: 22px;
    border: 1px solid #e5edf5;
    border-radius: 8px;
    background: #fff;
    overflow-x: auto;
    box-shadow: 0 12px 30px rgba(17,45,88,.05);
}

.admin-table-wrap h2 {
    margin: 0 0 16px;
    color: #172339;
    font: 700 20px "Sora", sans-serif;
}

.admin-section {
    scroll-margin-top: calc(var(--fixed-header-height) + 22px);
}

.admin-overview {
    display: grid;
    gap: 18px;
}

.admin-stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.admin-stat-card {
    display: block;
    padding: 20px;
    border: 1px solid #e1e9f3;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(17,45,88,.05);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.admin-stat-card:hover {
    transform: translateY(-2px);
    border-color: rgba(35,92,166,.30);
    box-shadow: 0 18px 38px rgba(17,45,88,.09);
}

.admin-stat-card span {
    display: block;
    margin-bottom: 12px;
    color: #617086;
    font: 700 11px "Sora", sans-serif;
    text-transform: uppercase;
}

.admin-stat-card strong {
    color: var(--blue);
    font: 800 34px/1 "Sora", sans-serif;
}

.admin-quick-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 18px;
}

.admin-quick-grid section {
    padding: 22px;
    border: 1px solid #e1e9f3;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(17,45,88,.05);
}

.admin-quick-grid h3 {
    margin: 0 0 14px;
    color: #172339;
    font: 700 18px "Sora", sans-serif;
}

.admin-quick-grid p {
    margin: 0 0 10px;
    color: #526176;
    font-size: 14px;
    line-height: 1.55;
}

.admin-quick-actions {
    display: grid;
    gap: 10px;
}

.admin-quick-actions a {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #dbe6f3;
    border-radius: 6px;
    padding: 0 14px;
    color: var(--blue);
    font: 700 12px "Sora", sans-serif;
}

.admin-quick-actions a::after {
    content: "\2192";
}

.admin-settings-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.admin-settings-form label {
    display: block;
}

.admin-settings-form span {
    display: block;
    margin-bottom: 6px;
    color: #516071;
    font: 700 11px "Sora", sans-serif;
    text-transform: uppercase;
}

.admin-settings-form input,
.admin-settings-form select,
.admin-settings-form textarea {
    width: 100%;
    border: 1px solid #dbe3ee;
    border-radius: 5px;
    padding: 0 12px;
    color: #172339;
}

.admin-settings-form input,
.admin-settings-form select {
    height: 44px;
}

.admin-settings-form textarea {
    min-height: 140px;
    padding-top: 11px;
    padding-bottom: 11px;
    font: 500 13px/1.55 "Open Sans", sans-serif;
    resize: vertical;
}

.admin-settings-form button {
    min-height: 44px;
    border: 0;
    border-radius: 5px;
    padding: 0 22px;
    background: var(--blue);
    color: #fff;
    font: 700 12px "Sora", sans-serif;
    text-transform: uppercase;
    cursor: pointer;
}

.composer-admin-note {
    margin: 0 0 14px;
    padding: 10px 12px;
    border: 1px solid #dbe6f3;
    border-radius: 6px;
    background: #f5f8fc;
    color: #526176;
    font-size: 13px;
}

.composer-content-field {
    grid-column: 1 / -1;
}

.composer-active-toggle input {
    width: auto;
    height: auto;
}

.composer-admin-card {
    margin-top: 12px;
    border: 1px solid #e1e9f3;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

.composer-admin-card summary {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    cursor: pointer;
    list-style: none;
    background: #f8fbff;
}

.composer-admin-card summary::-webkit-details-marker {
    display: none;
}

.composer-admin-card summary::after {
    content: "\002B";
    grid-column: 3;
    color: var(--blue);
    font: 700 20px/1 "Sora", sans-serif;
}

.composer-admin-card[open] summary::after {
    content: "\2212";
}

.composer-admin-card summary strong,
.composer-admin-card summary small {
    display: block;
}

.composer-admin-card summary strong {
    color: #172339;
    font: 700 15px/1.25 "Sora", sans-serif;
}

.composer-admin-card summary small {
    margin-top: 3px;
    color: #64748a;
    font-size: 12px;
}

.composer-admin-avatar {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid #dbe6f3;
    border-radius: 6px;
    background: #fff;
}

.composer-admin-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.composer-form {
    padding: 18px;
    border-top: 1px solid #e5edf5;
    background: #fff;
}

.composer-social-admin {
    padding: 0 18px 18px;
}

.composer-social-admin h3 {
    margin: 0 0 10px;
    color: #172339;
    font: 700 15px "Sora", sans-serif;
}

.composer-social-form {
    display: grid;
    grid-template-columns: minmax(110px, .7fr) minmax(170px, 1fr) minmax(220px, 1.5fr) 86px 82px auto;
    gap: 8px;
    align-items: center;
    margin-bottom: 8px;
}

.composer-social-form input,
.composer-social-form select {
    width: 100%;
    height: 38px;
    border: 1px solid #dbe3ee;
    border-radius: 5px;
    padding: 0 10px;
    color: #172339;
    font-size: 13px;
}

.composer-social-active {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #516071;
    font: 700 11px "Sora", sans-serif;
    text-transform: uppercase;
}

.composer-social-active input {
    width: auto;
    height: auto;
}

.composer-social-form button,
.composer-social-delete button {
    min-height: 38px;
    border: 0;
    border-radius: 5px;
    padding: 0 14px;
    background: var(--blue);
    color: #fff;
    cursor: pointer;
    font: 700 11px "Sora", sans-serif;
    text-transform: uppercase;
}

.composer-social-delete {
    margin: -4px 0 10px;
}

.composer-social-delete button {
    background: #d94545;
}

.composer-social-form--new {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed #dbe3ee;
}

.rich-text-editor {
    min-height: 260px;
    resize: vertical;
}

.tox-tinymce {
    border-color: #dbe3ee !important;
    border-radius: 6px !important;
    overflow: hidden;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    color: #172339;
    font-size: 13px;
}

.admin-table th,
.admin-table td {
    padding: 12px;
    border-bottom: 1px solid #e5edf5;
    text-align: left;
    vertical-align: middle;
}

.admin-table th {
    color: #516071;
    font: 700 11px "Sora", sans-serif;
    text-transform: uppercase;
}

.admin-table tr:last-child td {
    border-bottom: 0;
}

@media (max-width: 900px) {
    .admin-page {
        padding-inline: 14px;
    }

    .admin-panel {
        padding: 22px 16px;
    }

    .admin-panel--dashboard {
        padding: 0;
    }

    .admin-dashboard {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: static;
        min-height: 0;
        padding: 18px;
    }

    .admin-menu {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-logout {
        margin-top: 0;
    }

    .admin-workspace {
        padding: 16px;
    }

    .admin-workspace-header {
        align-items: flex-start;
        flex-direction: column;
        padding: 18px;
    }

    .admin-stat-grid,
    .admin-quick-grid {
        grid-template-columns: 1fr;
    }

    .admin-table-wrap {
        padding: 14px;
    }

    .admin-table {
        display: block;
        min-width: 0;
    }

    .admin-table thead {
        display: none;
    }

    .admin-table tbody,
    .admin-table tr,
    .admin-table td {
        display: block;
        width: 100%;
    }

    .admin-table tr {
        padding: 14px;
        border: 1px solid #e5edf5;
        border-radius: 8px;
        background: #fff;
    }

    .admin-table tr + tr {
        margin-top: 12px;
    }

    .admin-table td {
        min-height: 38px;
        padding: 8px 0;
        border-bottom: 1px solid #edf2f8;
        word-break: break-word;
    }

    .admin-table td::before {
        content: attr(data-label);
        display: block;
        margin-bottom: 4px;
        color: #6d7b8c;
        font: 700 10px "Sora", sans-serif;
        text-transform: uppercase;
        letter-spacing: .08em;
    }

    .admin-table td:last-child {
        border-bottom: 0;
    }

    .admin-table td form,
    .admin-table button {
        width: 100%;
    }

    .composer-social-form {
        grid-template-columns: 1fr;
    }

    .composer-social-form button,
    .composer-social-delete button {
        width: 100%;
    }
}

.songs-results-meta {
    width: min(1180px, 100%);
    margin: 0 auto 18px;
    color: #657285;
    font: 700 12px "Sora", sans-serif;
    text-transform: uppercase;
}

.songs-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
    width: min(1500px, 100%);
    margin: 0 auto;
}

.song-card {
    overflow: hidden;
    border: 1px solid #e4eaf2;
    border-radius: 7px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(20,50,92,.07);
    transition: transform .22s ease, box-shadow .22s ease;
}

.song-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(20,50,92,.12);
}

.song-card__cover {
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
    background: #e9eef6;
    color: #7b8797;
    font: 700 12px "Sora", sans-serif;
    text-transform: uppercase;
}

.song-card__cover img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.song-card__body {
    padding: 13px 13px 15px;
}

.song-card h2 {
    min-height: 40px;
    margin: 0 0 7px;
    color: #18263c;
    font: 700 13px/1.35 "Sora", sans-serif;
}

.song-card p {
    margin: 0 0 8px;
    color: #516071;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.45;
}

.song-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    min-height: 24px;
}

.song-card__meta span {
    border-radius: 30px;
    padding: 3px 8px;
    background: #edf3fb;
    color: var(--blue);
    font: 700 10px "Open Sans", sans-serif;
}

.song-card__links {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 0px !important;
    justify-content: center;
}

.song-card__links a {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-size: 14px;
    transition: transform .2s ease, background .2s ease;
}

.song-card__links a:hover {
    transform: translateY(-2px);
    background: #173f78;
}

.songs-empty {
    width: min(760px, 100%);
    margin: 20px auto;
    padding: 28px;
    border-radius: 8px;
    background: #fff;
    color: #516071;
    text-align: center;
    box-shadow: 0 10px 28px rgba(20,50,92,.07);
}

.songs-pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 34px auto 0;
}

.songs-pagination a,
.songs-pagination span {
    min-width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dbe3ee;
    border-radius: 5px;
    padding: 0 12px;
    background: #fff;
    color: var(--blue);
    font: 700 12px "Sora", sans-serif;
}

.songs-pagination .is-current,
.songs-pagination a:hover {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

.songs-pagination .dots {
    border-color: transparent;
    background: transparent;
    box-shadow: none;
    color: #7a8798;
}

@media (max-width: 1200px) {
    .songs-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .songs-hero {
        align-items: flex-start;
        flex-direction: column;
    }

    .catalogue-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        width: 100%;
    }

    .songs-filter {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .songs-page {
        padding: 24px 18px 60px;
    }

    .songs-hero {
        width: 100%;
        margin: 0 auto 16px;
        padding: 18px;
        gap: 16px;
    }

    .songs-hero h1 {
        font-size: 28px;
    }

    .songs-filter {
        grid-template-columns: 1fr;
        margin-top: 0;
        padding: 18px;
    }

    .catalogue-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        width: 100%;
        margin: 0;
    }

    .catalogue-stat-card {
        padding: 0 0 0 12px;
        text-align: left;
    }

    .catalogue-stat-card strong {
        font-size: 22px;
    }

    .auth-page {
        margin-top: 0;
        padding: 34px 16px;
        place-items: start stretch;
    }

    .auth-panel {
        padding: 24px 18px;
    }

    .auth-form {
        grid-template-columns: 1fr;
    }

    .account-summary {
        grid-template-columns: 1fr;
    }

    .auth-panel h1 {
        font-size: 28px;
    }

    .auth-panel img {
        width: 230px;
    }

    .admin-topline {
        flex-direction: column;
    }

    .admin-table-wrap {
        padding: 14px;
    }

    .admin-table {
        display: block;
        min-width: 0;
    }

    .admin-table thead {
        display: none;
    }

    .admin-table tbody,
    .admin-table tr,
    .admin-table td {
        display: block;
        width: 100%;
    }

    .admin-table tr {
        padding: 14px;
        border: 1px solid #e5edf5;
        border-radius: 8px;
        background: #fff;
    }

    .admin-table tr + tr {
        margin-top: 12px;
    }

    .admin-table td {
        min-height: 38px;
        padding: 8px 0;
        border-bottom: 1px solid #edf2f8;
        word-break: break-word;
    }

    .admin-table td::before {
        content: attr(data-label);
        display: block;
        margin-bottom: 4px;
        color: #6d7b8c;
        font: 700 10px "Sora", sans-serif;
        text-transform: uppercase;
        letter-spacing: .08em;
    }

    .admin-table td:last-child {
        border-bottom: 0;
    }

    .admin-table td form {
        width: 100%;
    }

    .admin-table button {
        width: 100%;
    }

    .songs-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }
}

@media (max-width: 480px) {
    .songs-grid {
        grid-template-columns: 1fr;
    }

    .catalogue-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .catalogue-stat-card {
        padding: 0 0 0 8px;
    }

    .catalogue-stat-card strong {
        font-size: 18px;
    }

    .catalogue-stat-card span {
        font-size: 9px;
    }
}

/* Songs page lower-section refinement */
.songs-results-meta {
    margin-top: 8px;
    margin-bottom: 20px;
    padding: 0 4px;
    color: #2f5398;
    letter-spacing: 1.2px;
}

.songs-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.song-card {
    display: flex;
    flex-direction: column;
    border: 0;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(18,49,92,.11);
}

.song-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 46px rgba(18,49,92,.16);
}

.song-card__cover {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #e8eef8, #f7f9fc);
}

.song-card__cover::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(to top, rgba(17,36,68,.34), transparent);
    opacity: 0;
    transition: opacity .25s ease;
}

.song-card:hover .song-card__cover::after {
    opacity: 1;
}

.song-card__cover img {
    transition: transform .3s ease;
}

.song-card:hover .song-card__cover img {
    transform: scale(1.04);
}

.song-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 16px 16px 17px;
}

.song-card h2 {
    min-height: 0;
    margin-bottom: 8px;
    color: #132847;
    font-size: 14px;
    line-height: 1.4;
}

.song-card p {
    color: #526278;
    font-size: 12px;
    font-weight: 600;
}

.song-card__meta {
    min-height: 0;
    margin-top: 2px;
}

.song-card__meta span {
    background: #eef4fb;
    color: #2f5398;
}

.song-card__links {
    margin-top: auto;
    padding-top: 14px;
    gap: 4px;
}

.song-card__links a {
    width: 34px;
    height: 34px;
    overflow: hidden;
    border: 1px solid #e3eaf4;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 5px 14px rgba(18,49,92,.08);
}

.song-card__links a:hover {
    background: #fff;
    transform: translateY(-2px) scale(1.03);
}

.song-card__links img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.songs-pagination a,
.songs-pagination span {
    box-shadow: 0 8px 20px rgba(18,49,92,.07);
}

@media (max-width: 1400px) {
    .songs-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .songs-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .songs-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .song-card__body {
        padding: 13px;
    }
}

@media (max-width: 480px) {
    .songs-grid {
        grid-template-columns: 1fr;
    }
}

/* Retailer icons hard size fix */
.song-card__links {
    align-items: center;
    gap: 4px;
}

.song-card__links a {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px;
    min-height: 30px;
    padding: 0 !important;
    overflow: hidden;
    border-radius: 50%;
    line-height: 0;
}

.song-card__links img {
    width: 30px !important;
    height: 30px !important;
    max-width: 30px !important;
    max-height: 30px !important;
    display: block;
    object-fit: cover;
}

.song-card__soon {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 5px;
    background: #eef4fb;
    color: #24579a;
    font: 700 12px "Sora", sans-serif;
    line-height: 1;
}

/* Songs card simplified layout */
/*.song-card__body {*/
/*    min-height: 128px;*/
/*}*/

.song-card h2 {
    margin-bottom: 14px;
}

.song-card__links a,
.song-card__links img {
    border-radius: 5px !important;
}

/* Retailer preview modal */
.retailer-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(10, 25, 49, .72);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .22s ease, visibility .22s ease;
}

.retailer-lightbox.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.retailer-lightbox__panel {
    display: flex;
    flex-direction: column;
    width: min(1120px, 100%);
    height: min(820px, 92vh);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 28px 80px rgba(6, 24, 53, .35);
    transform: translateY(14px) scale(.985);
    transition: transform .24s ease;
}

.retailer-lightbox.is-open .retailer-lightbox__panel {
    transform: translateY(0) scale(1);
}

.retailer-lightbox__header,
.retailer-lightbox__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 18px;
}

.retailer-lightbox__header {
    border-bottom: 1px solid #e3eaf4;
    background: #f7faff;
}

.retailer-lightbox__header h2 {
    margin: 0;
    color: #172339;
    font: 700 16px/1.2 "Sora", sans-serif;
    text-transform: capitalize;
}

.retailer-lightbox__close {
    width: 32px;
    height: 32px;
    display: inline-grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: #eaf1fa;
    color: #24579a;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.retailer-lightbox__close:hover {
    background: #dce9f8;
}

.retailer-lightbox__frame-wrap {
    position: relative;
    flex: 1;
    min-height: 0;
    background: #f4f7fb;
}

.retailer-lightbox__frame-wrap iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    background: #fff;
}

.retailer-lightbox__loading {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: grid;
    place-items: center;
    color: #526278;
    font: 600 13px "Open Sans", sans-serif;
    pointer-events: none;
    transition: opacity .2s ease;
}

.retailer-lightbox__loading.is-hidden {
    opacity: 0;
}

.retailer-lightbox__footer {
    flex-wrap: wrap;
    border-top: 1px solid #e3eaf4;
    color: #66758a;
    font: 500 12px/1.4 "Open Sans", sans-serif;
}

.retailer-lightbox__external {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 5px;
    background: #235ca6;
    color: #fff;
    font: 700 11px "Sora", sans-serif;
    text-decoration: none;
    white-space: nowrap;
}

.retailer-lightbox__external:hover {
    background: #174c8f;
}

body.retailer-modal-open {
    overflow: hidden;
}

.soundtracks-page {
    min-height: calc(100vh - var(--fixed-header-height));
    margin-top: var(--fixed-header-height);
    padding: 54px 24px 84px;
    background: #f5f8fc;
    color: #172339;
}

.soundtracks-shell {
    width: min(1320px, 100%);
    margin: 0 auto;
}

.soundtracks-hero {
    padding: 38px 42px;
    border-radius: 8px;
    background: linear-gradient(135deg, #235ca6, #174c8f);
    color: #fff;
    box-shadow: 0 18px 42px rgba(18,49,92,.16);
}

.soundtracks-hero span,
.soundtracks-section__heading > span {
    display: block;
    margin-bottom: 10px;
    color: #86a9dc;
    font: 700 11px "Sora", sans-serif;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.soundtracks-hero h1 {
    margin: 0;
    font: 700 42px/1.1 "Sora", sans-serif;
}

.soundtracks-hero p {
    max-width: 540px;
    margin: 12px 0 0;
    color: rgba(255,255,255,.82);
    font: 500 15px/1.6 "Open Sans", sans-serif;
}

.soundtracks-section__heading {
    margin-bottom: 18px;
}

.soundtracks-section__heading h2 {
    margin: 0;
    color: var(--blue);
    font: 700 28px/1.2 "Sora", sans-serif;
}

.soundtracks-grid,
.music-tv-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.soundtrack-card {
    overflow: hidden;
    border: 1px solid #dfe8f6;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(18,49,92,.08);
}

.soundtrack-card h3 {
    margin: 0;
    padding: 17px 18px 13px;
    color: #172339;
    font: 700 15px/1.35 "Sora", sans-serif;
}

.soundtrack-card__embed {
    padding: 10px;
}

.soundtrack-card__embed iframe {
    display: block;
    width: 100%;
    height: 620px;
    border: 0;
    border-radius: 6px;
}

.soundtrack-card__link {
    display: inline-flex;
    margin: 14px 18px 17px;
    color: #235ca6;
    font: 700 12px "Sora", sans-serif;
    text-decoration: none;
}

.soundtrack-card__link:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.music-tv-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #dfe8f6;
    border-radius: 8px;
    background: #fff;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 14px 34px rgba(18,49,92,.08);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.music-tv-card:hover {
    transform: translateY(-4px);
    border-color: rgba(35,92,166,.42);
    box-shadow: 0 20px 42px rgba(18,49,92,.14);
}

.music-tv-card__image {
    display: grid;
    min-height: 190px;
    place-items: center;
    padding: 28px;
    background: #f7f9fc;
}

.music-tv-card__image img {
    display: block;
    width: min(240px, 100%);
    height: 120px;
    object-fit: contain;
}

.music-tv-card__body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    border-top: 1px solid #e7edf5;
}

.music-tv-card__body strong {
    color: #172339;
    font: 700 14px "Sora", sans-serif;
}

.music-tv-card__body > span {
    color: #235ca6;
    font: 700 11px "Sora", sans-serif;
    white-space: nowrap;
}

@media (max-width: 900px) {
    .soundtracks-grid,
    .music-tv-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 767px) {
    .soundtracks-page {
        margin-top: 0;
        padding: 36px 18px 58px;
    }

    .soundtracks-hero {
        padding: 30px 24px;
    }

    .soundtracks-hero h1 {
        font-size: 32px;
    }

    .soundtracks-grid,
    .music-tv-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 480px) {
    .soundtracks-page {
        padding: 28px 14px 48px;
    }

    .soundtracks-hero {
        padding: 26px 20px;
    }

    .soundtracks-hero h1 {
        font-size: 28px;
    }

    .soundtracks-section {
        margin-top: 34px;
    }

    .soundtracks-section__heading h2 {
        font-size: 24px;
    }

    .music-tv-card__body {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* Songs page width and final responsive grid */
.songs-filter,
.songs-results-meta,
.songs-grid,
.songs-pagination {
    width: min(1600px, 100%);
}

.songs-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px;
}

@media (max-width: 1400px) {
    .songs-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 1100px) {
    .songs-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .songs-filter,
    .songs-results-meta,
    .songs-grid,
    .songs-pagination {
        width: 100%;
    }

    .songs-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }
}

@media (max-width: 480px) {
    .songs-grid {
        grid-template-columns: 1fr;
    }

    .retailer-lightbox {
        padding: 10px;
    }

    .retailer-lightbox__panel {
        height: calc(100vh - 20px);
        border-radius: 6px;
    }

    .retailer-lightbox__header,
    .retailer-lightbox__footer {
        padding: 12px;
    }

    .retailer-lightbox__footer {
        align-items: stretch;
        flex-direction: column;
        gap: 10px;
    }

    .retailer-lightbox__external {
        width: 100%;
    }
}





