:root {
  --black: #050505;
  --white: #fff;
  --gray: #f2f2f2;
  --line: #d8d8d8;
  --red: #d50b1f;
  --teal: #0c7c89;
  --gold: #c69214;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

.home-page {
  background: #000;
  color: #000;
}

a,
button {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--white);
  padding: .7rem 1rem;
  z-index: 20;
}

.skip:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 46px;
  color: var(--white);
  background: var(--black);
  border-bottom: 1px solid #333;
}

.brand {
  text-decoration: none;
  font-weight: 900;
  font-size: 26px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
}

.nav a,
.nav button {
  text-decoration: none;
  background: transparent;
  border: 0;
  padding: 27px 0;
}

.nav-item {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: -18px;
  width: 240px;
  display: none;
  background: var(--black);
  border-top: 2px solid var(--red);
  box-shadow: 0 18px 32px rgba(0, 0, 0, .35);
}

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

.dropdown a {
  display: block;
  padding: 14px 18px;
  color: var(--white);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid #777;
  color: var(--white);
  padding: .55rem .8rem;
}

.sony-wordmark {
  height: 68px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 16px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 2px;
}

.home-header {
  position: absolute;
  left: 50%;
  top: 70px;
  z-index: 12;
  width: min(1064px, 100vw);
  transform: translateX(-50%);
  display: flex;
  align-items: flex-start;
  gap: 58px;
  padding: 22px 0 0 176px;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .7);
}

.home-logo {
  width: 112px;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
}

.dot-mark {
  width: 82px;
  height: 82px;
  display: block;
  border-radius: 50%;
  background-image: radial-gradient(circle, #e51b23 2.4px, transparent 3px);
  background-size: 9px 9px;
  clip-path: circle(50%);
}

.home-nav {
  gap: 44px;
  align-items: flex-start;
  padding-top: 38px;
  font-size: 16px;
  text-transform: none;
  font-weight: 400;
}

.home-nav a {
  padding: 0;
}

.home-main {
  width: min(1280px, 100vw);
  margin: 0 auto;
  background: #fff;
}

.home-hero {
  position: relative;
  height: 442px;
  overflow: hidden;
  background: #c9c4c4;
}

.hero-artist {
  position: relative;
  height: 100%;
  width: 100%;
  margin: 0 auto;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.2), transparent 28%, transparent 72%, rgba(0,0,0,.18));
  pointer-events: none;
}

.hero-slide h1 {
  position: absolute;
  left: 217px;
  top: 183px;
  z-index: 3;
  margin: 0;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  text-transform: none;
  text-shadow: 0 2px 3px rgba(0, 0, 0, .65);
  font-weight: 400;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 38px;
  height: 64px;
  border: 0;
  background: rgba(0, 0, 0, .18);
  transform: translateY(-50%) rotate(45deg);
  opacity: .95;
  transition: background .2s ease, opacity .2s ease;
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
  background: rgba(0, 0, 0, .38);
  opacity: 1;
  outline: 2px solid rgba(255, 255, 255, .85);
  outline-offset: 3px;
}

.hero-arrow.left {
  left: 18px;
  border-left: 2px solid rgba(255, 255, 255, .92);
  border-bottom: 2px solid rgba(255, 255, 255, .92);
}

.hero-arrow.right {
  right: 18px;
  border-right: 2px solid rgba(255, 255, 255, .92);
  border-top: 2px solid rgba(255, 255, 255, .92);
}

.slider-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  display: flex;
  justify-content: center;
  gap: 12px;
  width: max-content;
  margin: 0 auto;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .24);
}

.slider-dots button {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 50%;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 1px 4px rgba(0, 0, 0, .5);
}

.slider-dots .is-active {
  background: #de666a;
  border-color: #fff;
  transform: scale(1.25);
}

.home-section {
  width: 960px;
  margin: 0 auto;
}

.home-section h2 {
  margin: 0 0 36px;
  font-size: 40px;
  line-height: 1;
  text-transform: none;
  font-weight: 900;
}

.label-showcase {
  padding: 32px 0 54px;
}

.home-labels {
  position: relative;
  display: grid;
  grid-template-columns: 130px 120px 120px 120px 115px 150px;
  align-items: center;
  gap: 18px;
  min-height: 102px;
  padding-left: 70px;
}

.home-labels a {
  text-decoration: none;
  color: #111;
  text-align: center;
  line-height: .9;
  font-weight: 900;
}

.logo-alamo {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
}

.logo-alamo small {
  font-size: 14px;
  letter-spacing: 2px;
}

.logo-arista {
  font-size: 30px;
}

.logo-awal {
  font-size: 38px;
  font-style: italic;
  transform: skew(-12deg);
}

.logo-columbia {
  display: grid;
  place-items: center;
  width: 116px;
  height: 116px;
  border: 2px solid #111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
}

.logo-columbia span {
  width: 64px;
  height: 46px;
  border: 9px double #111;
  border-radius: 50%;
  display: block;
}

.logo-epic {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 47px;
  font-style: italic;
}

.logo-podcast {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  letter-spacing: 1px;
}

.logo-podcast span {
  width: 70px;
  height: 58px;
  display: block;
  margin: 0 auto 6px;
  background-image: linear-gradient(90deg, #111 38%, transparent 38% 62%, #111 62%);
  background-size: 13px 100%;
}

.video-showcase {
  padding-bottom: 22px;
}

.home-videos {
  display: grid;
  grid-template-columns: repeat(3, 255px);
  gap: 16px;
  padding-left: 78px;
}

.home-videos article {
  height: 171px;
  overflow: hidden;
  background: #000;
}

.thumb {
  height: 134px;
  position: relative;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #1a1a1a, #59796d);
}

.thumb-two {
  background: linear-gradient(135deg, #4bacc2, #d89cc5);
}

.thumb-three {
  background: linear-gradient(135deg, #315022, #d14554 52%, #236ed2);
}

.thumb span {
  width: 62px;
  height: 62px;
  border: 5px solid rgba(255, 255, 255, .85);
  border-radius: 50%;
  background: rgba(255, 255, 255, .24);
  position: relative;
}

.thumb span::after {
  content: "";
  position: absolute;
  left: 23px;
  top: 15px;
  border-left: 20px solid #fff;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
}

.home-videos h3 {
  margin: 0;
  padding: 6px 9px;
  color: #fff;
  background: #a70008;
  font-size: 15px;
  line-height: 1.1;
  font-weight: 400;
}

.home-news-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 55px;
  padding: 4px 0 75px;
}

.home-news h2 {
  margin-bottom: 36px;
}

.compact-news {
  gap: 18px;
}

.compact-news .news-item {
  display: block;
  border: 0;
  padding: 0;
}

.compact-news .news-date {
  color: #111;
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
  margin: 9px 0;
}

.compact-news .news-item h3 {
  font-size: 18px;
  line-height: 1.17;
  margin-bottom: 8px;
}

.compact-news .news-item p {
  max-height: 45px;
  overflow: hidden;
  color: #555;
  font-size: 14px;
  line-height: 1.05;
  margin: 0 0 12px;
}

.compact-news .news-item a {
  color: #e31d2b;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.more-news-button {
  display: inline-block;
  margin-top: 36px;
  padding: 15px 34px;
  color: #111;
  background: #f4f4f4;
  text-decoration: none;
  font-size: 18px;
  font-weight: 900;
}

.home-faq-card {
  margin-top: 0;
  align-self: start;
  background: #f3f3f3;
}

.home-faq-card h2 {
  margin: 0;
  padding: 18px 18px 14px;
  color: #df1f2c;
  background: #fff;
  text-align: center;
  font-size: 23px;
  line-height: 1.18;
  text-transform: none;
}

.home-faq-card div {
  padding: 18px 15px 16px;
  font-size: 15px;
}

.home-faq-card strong {
  display: block;
  line-height: 1.05;
  margin-bottom: 8px;
}

.home-faq-card ul {
  margin: 0;
  padding-left: 18px;
}

.home-faq-card a {
  display: block;
  padding: 14px 18px;
  color: #fff;
  background: #df1f2c;
  text-align: center;
  text-decoration: none;
  font-weight: 900;
}

.home-footer {
  width: min(1280px, 100vw);
  margin: 0 auto;
  padding: 0 0 40px;
  background: #1d1d1d;
  color: #929292;
}

.home-footer .back-top {
  width: 100%;
  margin: 0;
  padding: 16px;
  color: #fff;
  background: #000;
  border: 0;
  text-align: center;
}

.home-socials {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 38px 0 26px;
  color: #fff;
  font-size: 28px;
  font-weight: 900;
}

.home-footer-inner {
  width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 62px;
  gap: 70px;
}

.footer-actions {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}

.footer-actions a {
  padding: 9px 13px;
  color: #111;
  background: #fff;
  text-decoration: none;
  font-size: 13px;
}

.home-footer p {
  margin: 0;
  font-size: 12px;
  line-height: 1.1;
}

.work-badge {
  align-self: start;
  padding: 7px 6px;
  color: #fff;
  background: #ee1b2a;
  font-size: 15px;
  line-height: .88;
  font-weight: 900;
}

.work-badge small {
  display: block;
  margin-top: 8px;
  padding-top: 5px;
  border-top: 1px solid rgba(255,255,255,.6);
  font-size: 6px;
  line-height: 1.05;
  text-align: center;
}

.cookie-button {
  position: fixed;
  left: 18px;
  bottom: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: #050505;
  border: 1px solid #777;
  font-size: 26px;
  z-index: 40;
}

.sony-news-page {
  background: #f4f4f4;
}

.sony-news-page + footer,
body:has(.sony-news-page) footer {
  width: 100%;
  max-width: none;
}

body:has(.sony-news-page) .site-header {
  position: relative;
  min-height: 235px;
  align-items: center;
  justify-content: flex-start;
  gap: 62px;
  padding: 42px max(20px, calc((100vw - 1100px) / 2)) 28px;
  background: #000;
  border-bottom: 0;
}

body:has(.sony-news-page) .brand {
  width: 126px;
  display: grid;
  gap: 10px;
  justify-items: center;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  letter-spacing: 2px;
}

body:has(.sony-news-page) .brand::before {
  content: "";
  width: 95px;
  height: 95px;
  border-radius: 50%;
  background-image: radial-gradient(circle, #e51b23 2.8px, transparent 3.5px);
  background-size: 10px 10px;
  clip-path: circle(50%);
}

body:has(.sony-news-page)::before {
  content: "SONY";
  position: absolute;
  right: max(24px, calc((100vw - 1320px) / 2));
  top: 14px;
  z-index: 20;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 900;
  letter-spacing: 2px;
}

body:has(.sony-news-page) .nav {
  gap: 48px;
  font-size: 19px;
  font-weight: 400;
  text-transform: none;
}

body:has(.sony-news-page) .nav a,
body:has(.sony-news-page) .nav button {
  padding: 24px 0;
}

body:has(.sony-news-page) .dropdown {
  left: -18px;
  width: 286px;
  background: #4a4a4a;
  border-top: 0;
  box-shadow: 0 10px 16px rgba(0,0,0,.3);
}

body:has(.sony-news-page) .nav-item:hover > button,
body:has(.sony-news-page) .nav-item:focus-within > button {
  color: #f10f19;
  background: #4a4a4a;
  padding-left: 22px;
  padding-right: 22px;
}

body:has(.sony-news-page) .dropdown a {
  padding: 13px 18px;
  font-size: 20px;
  text-shadow: 0 2px 2px #000;
}

.sony-news-layout {
  width: min(1100px, calc(100% - 40px));
  min-height: 1020px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 70px;
  padding: 38px 0 86px;
}

.sony-news-layout h1 {
  margin: 0 0 8px;
  font-size: 44px;
  line-height: 1.05;
  text-transform: none;
  font-weight: 900;
}

.sony-news-layout > div > p {
  margin: 0 0 18px;
  font-size: 17px;
}

.sony-feed {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.sony-feed-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.logo-feed .sony-feed-item {
  grid-template-columns: 46px 1fr;
}

.sony-feed-item h2 {
  margin: 0 0 12px;
  font-size: 21px;
  line-height: 1.12;
  text-transform: none;
}

.sony-feed-item time {
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
}

.sony-feed-item p {
  max-height: 40px;
  overflow: hidden;
  margin: 0 0 14px;
  color: #555;
  font-size: 15px;
  line-height: 1.08;
}

.sony-feed-item a {
  color: #f00;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
}

.feed-logo {
  width: 36px;
  height: 36px;
  margin-top: 2px;
  border-radius: 50%;
  background-image: radial-gradient(circle, #f32a32 1.7px, transparent 2.2px);
  background-size: 5.5px 5.5px;
  clip-path: circle(50%);
}

.feed-logo.legacy-logo {
  clip-path: none;
  background: none;
  color: #000;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 54px;
  line-height: .72;
  font-weight: 900;
}

.press-tabs {
  display: flex;
  gap: 16px;
  margin: 22px 0 6px 12px;
  font-size: 16px;
}

.press-tabs a {
  color: #111;
  text-decoration: none;
}

.load-more-news {
  margin-top: 44px;
  border: 0;
  background: #eee;
  padding: 16px 38px;
  font-size: 20px;
  font-weight: 900;
}

.news-sidebar {
  padding-top: 105px;
}

.news-sidebar a {
  color: #00e;
  font-size: 17px;
}

.news-sidebar h2 {
  margin: 0 0 28px;
  color: #d71920;
  font-size: 30px;
  line-height: 1;
  text-transform: none;
  font-weight: 400;
}

.featured-video-mini {
  width: 320px;
  background: #a70008;
}

.featured-video-mini .thumb {
  height: 190px;
}

.featured-video-mini p {
  margin: 0;
  padding: 8px 10px;
  color: #fff;
  font-size: 16px;
}

.news-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.news-choice-grid a {
  display: grid;
  gap: 10px;
  min-height: 150px;
  padding: 26px;
  color: #111;
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
}

.news-choice-grid strong {
  font-size: 25px;
}

.tribute-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: rgba(0, 0, 0, .62);
}

.tribute-modal[aria-hidden="false"] {
  display: flex;
}

.tribute-panel {
  position: relative;
  width: min(1360px, calc(100vw - 120px));
  max-height: calc(100vh - 86px);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  overflow: auto;
  background: #fff;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .4);
}

.tribute-close {
  position: absolute;
  right: 22px;
  top: 18px;
  z-index: 2;
  border: 0;
  background: transparent;
  color: #000;
  font-size: 38px;
  line-height: 1;
  font-family: Georgia, "Times New Roman", serif;
}

.tribute-panel img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.tribute-copy {
  padding: 118px 56px 56px;
  color: #171717;
  background: #fff;
  font-size: 18px;
  line-height: 1.16;
}

.tribute-copy header {
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: center;
  gap: 26px;
  margin-bottom: 22px;
}

.tribute-copy h2 {
  margin: 0;
  color: #a9873a;
  font-size: 42px;
  line-height: 1;
  letter-spacing: 14px;
  text-transform: uppercase;
  white-space: nowrap;
}

.tribute-copy header span {
  height: 2px;
  background: #222;
}

.tribute-copy strong {
  display: block;
  margin-bottom: 62px;
  color: #b9b9b9;
  font-size: 37px;
  letter-spacing: 18px;
  line-height: 1;
}

.tribute-copy p {
  margin: 0 0 24px;
}

.tribute-copy blockquote {
  margin: 6px 0 24px;
  font-style: italic;
}

.tribute-copy cite {
  color: #a9873a;
  font-size: 18px;
  font-style: italic;
  font-weight: 900;
}

.tribute-modal.is-closing {
  display: flex;
  opacity: 0;
  transition: opacity .2s ease;
}

.hero {
  min-height: 470px;
  display: grid;
  align-items: end;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0,0,0,.76), rgba(0,0,0,.2)),
    radial-gradient(circle at 72% 25%, rgba(213,11,31,.95), transparent 24%),
    radial-gradient(circle at 58% 75%, rgba(12,124,137,.9), transparent 28%),
    linear-gradient(135deg, #111, #333 38%, #090909);
}

.page-hero {
  min-height: 360px;
  display: grid;
  align-content: end;
  padding: 70px max(20px, calc((100vw - 1120px) / 2));
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.32)),
    radial-gradient(circle at 68% 28%, rgba(213,11,31,.88), transparent 25%),
    linear-gradient(135deg, #101010, #404040);
}

.page-hero p {
  max-width: 680px;
  font-size: 21px;
}

.hero-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding-bottom: 76px;
}

h1 {
  margin: 0;
  font-size: clamp(58px, 11vw, 150px);
  line-height: .9;
  text-transform: uppercase;
}

.hero p {
  max-width: 540px;
  font-size: 21px;
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0;
}

h2 {
  margin: 0 0 28px;
  font-size: 38px;
  text-transform: uppercase;
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.artist-card {
  position: relative;
  aspect-ratio: 1 / 1.04;
  overflow: hidden;
  background: #111;
}

.artist-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(.95) contrast(1.05);
  transition: transform .35s ease;
}

.artist-card:hover img {
  transform: scale(1.06);
}

.artist-card span {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px;
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
  background: linear-gradient(transparent, rgba(0,0,0,.88));
}

.artist-card small {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 700;
  opacity: .82;
}

.search {
  max-width: 360px;
}

.dark {
  width: 100%;
  max-width: none;
  padding: 70px max(20px, calc((100vw - 1120px) / 2));
  color: var(--white);
  background: var(--black);
}

.label-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #333;
}

.label-grid a {
  min-height: 108px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: #111;
  text-decoration: none;
  font-weight: 900;
  font-size: 20px;
}

.label-directory,
.people-grid,
.jobs-grid,
.resource-grid,
.contact-cards,
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.label-directory article,
.people-grid article,
.jobs-grid article,
.resource-grid article,
.contact-cards article,
.stat-grid article {
  border: 1px solid var(--line);
  padding: 24px;
  min-height: 150px;
  background: var(--white);
}

.label-directory h3,
.people-grid h3,
.jobs-grid h3,
.contact-cards h3 {
  margin: 0 0 10px;
  font-size: 23px;
}

.label-directory span,
.jobs-grid span {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
}

.avatar {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--white);
  background: var(--black);
  font-weight: 900;
  font-size: 24px;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 36px;
  align-items: start;
}

.stat-grid {
  grid-template-columns: repeat(3, 1fr);
}

.stat-grid strong {
  display: block;
  color: var(--red);
  font-size: 38px;
}

.timeline article {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 22px;
  border-top: 1px solid var(--line);
  padding: 24px 0;
}

.timeline span {
  font-weight: 900;
  text-transform: uppercase;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.video-card {
  border-bottom: 3px solid var(--red);
}

.video-thumb {
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, #111, var(--teal));
  font-size: 34px;
}

.video-card h3 {
  font-size: 15px;
  line-height: 1.3;
}

.section-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.section-title-row button,
.more-link,
form button,
.faq-callout button,
#faqHelpful {
  border: 0;
  background: var(--red);
  color: var(--white);
  padding: 13px 18px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 800;
}

.news-list {
  display: grid;
  gap: 18px;
}

.news-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 26px;
}

.news-date {
  font-weight: 900;
  color: var(--red);
  text-transform: uppercase;
}

.news-item h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.12;
}

.more-link {
  display: inline-block;
  margin-top: 30px;
}

.faq-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 48px max(20px, calc((100vw - 1120px) / 2));
  color: var(--white);
  background: linear-gradient(90deg, var(--black), #2a2a2a);
}

.faq-callout h2 {
  margin-bottom: 8px;
}

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

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 14px;
  font: inherit;
}

textarea {
  grid-column: 1 / -1;
  min-height: 140px;
  resize: vertical;
}

.form-status {
  margin: 0;
  align-self: center;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, .68);
  z-index: 30;
}

.modal[aria-hidden="false"] {
  display: flex;
}

.modal-panel {
  width: min(680px, 100%);
  max-height: 86vh;
  overflow: auto;
  background: var(--white);
  padding: 32px;
}

.close-modal {
  float: right;
  border: 0;
  background: var(--black);
  color: var(--white);
  width: 38px;
  height: 38px;
}

.faq-entry {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

footer {
  padding: 42px max(20px, calc((100vw - 1120px) / 2));
  color: var(--white);
  background: var(--black);
}

.back-top {
  display: block;
  margin: 0 0 28px auto;
  background: transparent;
  color: var(--white);
  border: 1px solid #777;
  padding: 10px 14px;
}

.newsletter {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.newsletter input {
  max-width: 280px;
}

.footer-links,
.legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 18px 0;
  font-size: 13px;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .site-header {
    padding: 0 20px;
    min-height: 66px;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 20px 20px;
    background: var(--black);
  }

  .nav.open {
    display: flex;
  }

  .nav a,
  .nav button {
    width: 100%;
    text-align: left;
    padding: 15px 0;
  }

  .dropdown {
    position: static;
    display: block;
    width: auto;
    box-shadow: none;
    border-top: 1px solid #333;
  }

  .artist-grid,
  .label-grid,
  .video-grid,
  .label-directory,
  .people-grid,
  .jobs-grid,
  .resource-grid,
  .contact-cards,
  .stat-grid,
  .split {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-item,
  .contact form {
    grid-template-columns: 1fr;
  }

  .faq-callout {
    align-items: flex-start;
    flex-direction: column;
  }

  .timeline article {
    grid-template-columns: 1fr;
  }

  body:has(.sony-news-page) .site-header {
    min-height: 76px;
    padding: 0 20px;
    justify-content: space-between;
  }

  body:has(.sony-news-page) .brand {
    width: auto;
    display: block;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 22px;
  }

  body:has(.sony-news-page) .brand::before,
  body:has(.sony-news-page)::before {
    display: none;
  }

  body:has(.sony-news-page) .nav {
    gap: 0;
    font-size: 16px;
  }

  body:has(.sony-news-page) .nav a,
  body:has(.sony-news-page) .nav button {
    padding: 15px 0;
  }

  .sony-news-layout {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 18px;
  }

  .news-sidebar {
    padding-top: 0;
  }

  .featured-video-mini {
    width: 100%;
  }

  .news-choice-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  h2 {
    font-size: 30px;
  }

  .artist-grid,
  .label-grid,
  .video-grid,
  .label-directory,
  .people-grid,
  .jobs-grid,
  .resource-grid,
  .contact-cards,
  .stat-grid,
  .split {
    grid-template-columns: 1fr;
  }
}

/* Exact homepage pass: match the official dense label strip and five-video module. */
.home-labels {
  grid-template-columns: repeat(6, 1fr);
  gap: 22px 18px;
  min-height: 230px;
  padding-left: 0;
}

.home-labels a {
  min-height: 86px;
  display: grid;
  place-items: center;
}

.logo-legacy,
.logo-masterworks,
.logo-provident,
.logo-rca,
.logo-inspiration,
.logo-santa,
.logo-classical,
.logo-latin,
.logo-nashville,
.logo-orchard,
.logo-ultra {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  letter-spacing: .5px;
}

.logo-legacy { font-size: 33px; }
.logo-masterworks small,
.logo-inspiration small,
.logo-classical small,
.logo-latin small,
.logo-nashville small { font-size: 12px; letter-spacing: 1.5px; }
.logo-provident { font-size: 25px; letter-spacing: 2px; }
.logo-rca { font-size: 48px; }
.logo-santa { font-size: 28px; line-height: .82; }
.logo-orchard { font-size: 22px; }
.logo-ultra { font-size: 39px; font-style: italic; }

.home-videos {
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  padding-left: 0;
}

.home-videos article { height: auto; }
.home-videos h3 { min-height: 38px; }
.thumb-four { background: linear-gradient(135deg, #151515, #7d403f 50%, #141414); }
.thumb-five { background: linear-gradient(135deg, #101010, #6434b6 46%, #edbb43); }

@media (max-width: 860px) {
  .home-labels { grid-template-columns: repeat(3, 1fr); }
  .home-videos { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .home-labels,
  .home-videos { grid-template-columns: 1fr; }
}

/* Exact homepage pass: the live site uses a horizontal label carousel, not a card grid. */
.label-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  align-items: center;
  gap: 8px;
}

.label-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.label-viewport::-webkit-scrollbar { display: none; }

.label-arrow {
  width: 38px;
  height: 72px;
  border: 0;
  color: #777;
  background: transparent;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 54px;
  line-height: 1;
}

.label-arrow:hover,
.label-arrow:focus-visible { color: #df1f2c; outline: 0; }

.home-labels {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  min-height: 128px;
  padding: 0 10px;
}

.home-labels a {
  flex: 0 0 132px;
  min-height: 112px;
  display: grid;
  place-items: center;
  color: #111;
  text-align: center;
  text-decoration: none;
  line-height: .9;
  font-weight: 900;
  transition: color .18s ease, transform .18s ease;
}

.home-labels a:hover,
.home-labels a:focus-visible {
  color: #df1f2c;
  transform: translateY(-2px);
  outline: 0;
}

.logo-legacy,
.logo-masterworks,
.logo-provident,
.logo-rca,
.logo-inspiration,
.logo-santa,
.logo-classical,
.logo-latin,
.logo-nashville,
.logo-orchard,
.logo-ultra {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  letter-spacing: .5px;
}

.logo-legacy { font-size: 33px; }
.logo-masterworks small,
.logo-inspiration small,
.logo-classical small,
.logo-latin small,
.logo-nashville small { font-size: 12px; letter-spacing: 1.5px; }
.logo-provident { font-size: 25px; letter-spacing: 2px; }
.logo-rca { font-size: 48px; }
.logo-santa { font-size: 28px; line-height: .82; }
.logo-orchard { font-size: 22px; }
.logo-ultra { font-size: 39px; font-style: italic; }

.home-videos {
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  padding-left: 0;
}

.home-videos article { height: auto; }
.home-videos h3 { min-height: 38px; }
.thumb-four { background: linear-gradient(135deg, #151515, #7d403f 50%, #141414); }
.thumb-five { background: linear-gradient(135deg, #101010, #6434b6 46%, #edbb43); }

.home-socials a {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
}

.home-socials svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-socials a:hover,
.home-socials a:focus-visible { color: #df1f2c; outline: 0; }

@media (max-width: 860px) {
  .home-videos { grid-template-columns: repeat(2, 1fr); }
  .home-labels a { flex-basis: 122px; }
}

@media (max-width: 520px) {
  .label-carousel { grid-template-columns: 30px 1fr 30px; }
  .home-videos { grid-template-columns: 1fr; }
}

/* Real embedded music videos on the homepage. */
.music-video-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  padding-left: 0;
}

.music-video-card {
  overflow: hidden;
  background: #000;
}

.music-video-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: 0;
  background: #000;
}

.music-video-card h3 {
  min-height: 44px;
  margin: 0;
  padding: 8px 10px;
  color: #fff;
  background: #a70008;
  font-size: 14px;
  line-height: 1.1;
  font-weight: 400;
}

@media (max-width: 960px) {
  .music-video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 520px) {
  .music-video-grid { grid-template-columns: 1fr; }
}

/* Visible official music-video thumbnails with play overlays. */
.music-video-link {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
}

.music-video-link img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .25s ease, filter .25s ease;
}

.music-video-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.22));
}

.video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 52px;
  height: 52px;
  border: 4px solid rgba(255,255,255,.9);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,.28);
}

.video-play::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 13px;
  border-left: 17px solid #fff;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
}

.music-video-link:hover img,
.music-video-link:focus-visible img {
  transform: scale(1.04);
  filter: brightness(.82);
}

/* Sony-style featured video strip and video detail pages. */
.video-strip-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 44px;
  align-items: center;
  gap: 18px;
  margin-left: -132px;
  width: 1200px;
}

.video-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding-left: 0;
}

.sony-video-tile {
  background: #000;
  overflow: hidden;
}

.sony-video-tile a {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9.35;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
}

.sony-video-tile img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.vevo-mark {
  position: absolute;
  left: 13px;
  bottom: 24px;
  z-index: 3;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -2px;
}

.sony-video-tile strong {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  min-height: 37px;
  display: block;
  padding: 8px 12px 8px 14px;
  background: rgba(153, 0, 0, .88);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  font-weight: 400;
}

.ring-play {
  position: absolute;
  left: 50%;
  top: 45%;
  z-index: 3;
  width: 96px;
  height: 96px;
  border: 5px solid rgba(255,255,255,.9);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 12px rgba(255,255,255,.9), inset 0 0 12px rgba(255,255,255,.62);
  background: rgba(255,255,255,.16);
}

.ring-play::after {
  content: "";
  position: absolute;
  left: 37px;
  top: 25px;
  border-left: 32px solid rgba(255,255,255,.92);
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
}

.video-strip-next {
  width: 42px;
  height: 74px;
  display: block;
  border-right: 2px solid #e4e4e4;
  border-top: 2px solid #e4e4e4;
  transform: rotate(45deg);
  opacity: .85;
}

.video-strip-next:hover,
.video-strip-next:focus-visible {
  border-color: #cfcfcf;
  opacity: 1;
  outline: 0;
}

.video-detail-page {
  background: #f4f4f4;
  color: #000;
}

.video-detail-page .video-wordmark {
  width: 100%;
  max-width: none;
  height: 66px;
  padding-right: max(18px, calc((100vw - 1400px) / 2));
  background: #000;
}

.video-detail-page .video-header {
  position: relative;
  left: auto;
  top: auto;
  transform: none;
  width: 100%;
  max-width: none;
  min-height: 196px;
  justify-content: center;
  gap: 58px;
  padding: 42px 20px 28px;
  background: #000;
}

.video-detail-page .home-nav { padding-top: 54px; }

.video-detail-main {
  background: #f4f4f4;
}

.video-article {
  width: min(1130px, calc(100% - 40px));
  margin: 0 auto;
  padding: 36px 0 100px;
}

.video-copy h1 {
  margin: 0 0 16px;
  font-size: 28px;
  line-height: 1.1;
  text-transform: none;
}

.video-copy p {
  margin: 0 0 54px;
  font-size: 20px;
}

.video-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 300px;
  gap: 54px;
  align-items: start;
}

.large-video-link {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

.large-video-link img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.youtube-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 84px;
  height: 58px;
  border-radius: 14px;
  background: #f00;
  transform: translate(-50%, -50%);
}

.youtube-play::after {
  content: "";
  position: absolute;
  left: 34px;
  top: 15px;
  border-left: 25px solid #fff;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}

.watch-youtube {
  position: absolute;
  right: 36px;
  bottom: 28px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.vevo-large {
  position: absolute;
  left: 24px;
  bottom: 18px;
  color: #fff;
  font-size: 58px;
  font-weight: 900;
  letter-spacing: -4px;
}

.video-sidebar .home-faq-card { margin-bottom: 36px; }
.sidebar-video-title {
  margin: 0 0 24px;
  color: #df1f2c;
  font-size: 30px;
  font-weight: 400;
  text-transform: none;
}

.sidebar-tile a { aspect-ratio: 16 / 11; }
.sidebar-tile strong { font-size: 18px; }
.sidebar-tile .ring-play { width: 78px; height: 78px; }
.sidebar-tile .ring-play::after { left: 31px; top: 21px; border-left-width: 25px; border-top-width: 17px; border-bottom-width: 17px; }

@media (max-width: 960px) {
  .video-strip-wrap { width: 100%; margin-left: 0; grid-template-columns: 1fr; }
  .video-strip { grid-template-columns: 1fr; }
  .video-strip-next { display: none; }
  .video-detail-layout { grid-template-columns: 1fr; }
}


/* Sony About submenu pages. */
.nav-item:first-child .dropdown a[href="/diversity-equity-inclusion.html"] {
  line-height: 1.12;
}

body.sony-subpage {
  background: #f4f4f4;
  color: #000;
}

body.sony-subpage .site-header {
  position: relative;
  min-height: 235px;
  align-items: center;
  justify-content: flex-start;
  gap: 62px;
  padding: 42px max(20px, calc((100vw - 1100px) / 2)) 28px;
  background: #000;
  border-bottom: 0;
}

body.sony-subpage .brand {
  width: 126px;
  display: grid;
  gap: 10px;
  justify-items: center;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  letter-spacing: 2px;
}

body.sony-subpage .brand::before {
  content: "";
  width: 95px;
  height: 95px;
  border-radius: 50%;
  background-image: radial-gradient(circle, #e51b23 2.8px, transparent 3.5px);
  background-size: 10px 10px;
  clip-path: circle(50%);
}

body.sony-subpage::before {
  content: "SONY";
  position: absolute;
  right: max(24px, calc((100vw - 1320px) / 2));
  top: 14px;
  z-index: 20;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 900;
  letter-spacing: 2px;
}

body.sony-subpage .nav {
  gap: 48px;
  font-size: 19px;
  font-weight: 400;
  text-transform: none;
}

body.sony-subpage .nav a,
body.sony-subpage .nav button { padding: 24px 0; }

body.sony-subpage .dropdown {
  left: -18px;
  width: 286px;
  background: #4a4a4a;
  border-top: 0;
  box-shadow: 0 10px 16px rgba(0,0,0,.3);
}

body.sony-subpage .dropdown a {
  padding: 13px 18px;
  color: #fff;
  font-size: 20px;
  text-shadow: 0 2px 2px #000;
}

body.sony-subpage .dropdown a:first-child { color: #f10f19; }
body.sony-subpage .nav-item:hover > button,
body.sony-subpage .nav-item:focus-within > button {
  color: #fff;
  background: #4a4a4a;
  padding-left: 22px;
  padding-right: 22px;
}

.sony-page-shell {
  width: min(1100px, calc(100% - 40px));
  min-height: 920px;
  margin: 0 auto;
  padding: 38px 0 105px;
}

.sony-page-shell h1 {
  margin: 0 0 34px;
  font-size: 42px;
  line-height: 1.05;
  text-transform: none;
}

.sony-page-shell.two-col {
  display: grid;
  grid-template-columns: minmax(0, 680px) 300px;
  gap: 72px;
  align-items: start;
}

.sony-card-grid.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.sony-person-card,
.sony-logo-card {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.sony-person-card img {
  width: 100%;
  aspect-ratio: 1 / 1.06;
  display: block;
  object-fit: cover;
}

.sony-person-card > div:last-child,
.sony-logo-card > strong {
  min-height: 48px;
  display: grid;
  place-items: center;
  padding: 8px 10px;
  color: #fff;
  background: rgba(183, 0, 12, .9);
  text-align: center;
}

.sony-person-card strong,
.sony-logo-card strong {
  display: block;
  font-size: 16px;
  line-height: 1.1;
  font-weight: 400;
}

.sony-person-card span {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  line-height: 1.1;
}

.sony-logo-card {
  min-height: 260px;
  display: grid;
  grid-template-rows: 1fr 58px;
}

.sony-logo-card > div {
  min-height: 200px;
  display: grid;
  place-items: center;
  color: #111;
  text-align: center;
}

.executives-grid {
  width: 500px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.exec-card:first-child,
.exec-card:nth-child(2) {
  grid-column: 1 / -1;
  width: 230px;
  justify-self: center;
}

.exec-photo {
  width: 100%;
  aspect-ratio: 1 / 1.14;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #9f9f9f, #343434);
  font-size: 52px;
  font-weight: 900;
}

.sony-sidebar {
  padding-top: 70px;
}

.contacts-copy h2,
.dei-copy h2 {
  margin: 0 0 18px;
  font-size: 20px;
  text-transform: none;
}

.contacts-copy p,
.dei-copy p {
  margin: 0 0 17px;
  font-size: 16px;
  line-height: 1.3;
}

.contacts-copy strong { font-weight: 900; }

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 72px 44px;
  margin-top: 54px;
  align-items: center;
}

.partner-grid article {
  min-height: 92px;
  display: grid;
  place-items: center;
  color: #1a1a1a;
  background: transparent;
  text-align: center;
  font-size: 30px;
  line-height: .95;
  font-weight: 900;
  letter-spacing: .5px;
}

.partner-grid article:nth-child(1) { color: #14a7d8; font-size: 36px; }
.partner-grid article:nth-child(3) { letter-spacing: 10px; }
.partner-grid article:nth-child(4) { background: #25285c; color: #fff; font-family: Georgia, serif; font-size: 82px; }
.partner-grid article:nth-child(6) { color: #2b21d1; font-family: cursive; }
.partner-grid article:nth-child(7) { color: #f0a000; font-size: 24px; }
.partner-grid article:nth-child(10) { color: #178bd2; }
.partner-grid article:nth-child(11) { background: #05232a; color: #fff; }

@media (max-width: 900px) {
  .sony-page-shell.two-col { grid-template-columns: 1fr; }
  .sony-sidebar { padding-top: 0; }
  .sony-card-grid.three { grid-template-columns: repeat(2, 1fr); }
  .executives-grid { width: 100%; }
}

@media (max-width: 560px) {
  .sony-card-grid.three,
  .executives-grid,
  .partner-grid { grid-template-columns: 1fr; }
  .exec-card:first-child,
  .exec-card:nth-child(2) { width: 100%; }
}

/* Homepage About dropdown menu. */
.home-header .nav-item { position: relative; }
.home-header .nav-item > button {
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
  text-shadow: 0 1px 2px rgba(0,0,0,.7);
}
.home-header .dropdown {
  left: -26px;
  top: 100%;
  width: 252px;
  display: none;
  padding: 18px 0 24px;
  background: #474747;
  border-top: 0;
  box-shadow: 0 12px 18px rgba(0,0,0,.25);
}
.home-header .nav-item:hover .dropdown,
.home-header .nav-item:focus-within .dropdown { display: block; }
.home-header .dropdown a {
  display: block;
  padding: 8px 14px;
  color: #fff;
  font-size: 20px;
  line-height: 1.06;
  text-decoration: none;
  text-shadow: 0 2px 2px #000;
}
.home-header .dropdown a:first-child { color: #f10f19; }
.home-header .nav-item:hover > button,
.home-header .nav-item:focus-within > button {
  padding: 14px 26px 17px;
  margin: -14px -26px -17px;
  background: #474747;
}

/* FAQ page. */
.nav a.is-active { color: #f10f19; }
.faq-page .faq-shell {
  grid-template-columns: minmax(0, 650px) 300px;
  gap: 78px;
  padding-top: 34px;
}

.faq-main h1 {
  margin-bottom: 38px;
  font-size: 48px;
  font-weight: 900;
}

.faq-intro {
  margin: 0 0 34px;
  font-size: 16px;
  line-height: 1.25;
}

.faq-main h2 {
  margin: 28px 0 16px;
  font-size: 22px;
  line-height: 1.1;
  text-transform: none;
}

.faq-accordion {
  display: grid;
  gap: 16px;
  margin-bottom: 30px;
}

.faq-question {
  width: 100%;
  min-height: 64px;
  display: grid;
  grid-template-columns: 1fr 28px;
  align-items: center;
  gap: 16px;
  padding: 16px 22px 16px 28px;
  border: 0;
  border-radius: 7px;
  background: #e9e7e7;
  color: #000;
  text-align: left;
  font-size: 16px;
  line-height: 1.22;
}

.faq-question span {
  justify-self: end;
  font-size: 34px;
  line-height: 1;
  font-weight: 400;
}

.faq-answer {
  display: none;
  margin-top: -12px;
  padding: 0 28px 18px;
  color: #333;
  background: #e9e7e7;
  border-radius: 0 0 7px 7px;
  font-size: 15px;
  line-height: 1.35;
}

.faq-answer.is-open { display: block; }
.faq-sidebar { padding-top: 118px; }
.faq-sidebar .sidebar-video-title {
  margin-bottom: 24px;
  font-size: 30px;
}

@media (max-width: 900px) {
  .faq-page .faq-shell { grid-template-columns: 1fr; }
  .faq-sidebar { padding-top: 0; }
}

/* Mobile first-visit tribute image splash. */
html.tribute-open,
html.tribute-open body {
  overflow: hidden;
}

.mobile-tribute {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background: rgba(0, 0, 0, .78);
}

.mobile-tribute[aria-hidden="false"] {
  display: flex;
}

.mobile-tribute-panel {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 100vw;
  max-height: 100dvh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
}

.mobile-tribute-panel img {
  width: 100%;
  height: 100%;
  max-width: calc(100vw - 24px);
  max-height: calc(100dvh - 24px);
  display: block;
  object-fit: contain;
  object-position: center;
}

.mobile-tribute .tribute-close {
  position: absolute;
  right: 8px;
  top: 8px;
  z-index: 2;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, .72);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 1;
}

@media (min-width: 768px) {
  .mobile-tribute[aria-hidden="false"] {
    display: none;
  }
}

/* Portrait artist photos in the wide homepage hero. */
.hero-slide.is-portrait-hero {
  background: #111;
}

.hero-slide.is-portrait-hero::before {
  content: "";
  position: absolute;
  inset: -28px;
  background-image: linear-gradient(90deg, rgba(0,0,0,.36), rgba(0,0,0,.08), rgba(0,0,0,.32)), var(--hero-src);
  background-size: cover;
  background-position: center 35%;
  filter: blur(22px) saturate(.92);
  transform: scale(1.08);
  opacity: .78;
}

.hero-slide.is-portrait-hero img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 16px 34px rgba(0,0,0,.36));
}

.hero-slide.is-portrait-hero::after {
  z-index: 2;
  background: linear-gradient(90deg, rgba(0,0,0,.34), transparent 30%, transparent 72%, rgba(0,0,0,.24));
}

.hero-slide.is-portrait-hero h1 {
  z-index: 3;
}

/* Linked Featured Artists cards. */
.sony-person-card > a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.sony-person-card > a img {
  width: 100%;
  aspect-ratio: 1 / 1.06;
  display: block;
  object-fit: cover;
  object-position: center;
  background: #111;
}

.sony-person-card > a > div {
  min-height: 48px;
  display: grid;
  place-items: center;
  padding: 8px 10px;
  color: #fff;
  background: rgba(183, 0, 12, .9);
  text-align: center;
}

.sony-person-card > a span span,
.sony-person-card > a em {
  font-style: normal;
}

/* Shared Sony footer used on every page. */
.sony-footer {
  width: 100%;
  margin: 0;
  padding: 0 0 48px;
  background: #1d1d1d;
  color: #8e8e8e;
}

.sony-footer .back-top,
.sony-back-top {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 17px 48px;
  color: #fff;
  background: #000;
  border: 0;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
}

.sony-back-top span {
  position: absolute;
  right: 12.5%;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 22px;
  line-height: 1;
}

.sony-footer-body {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: 42px;
}

.sony-footer-socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  margin-bottom: 34px;
}

.sony-footer-socials a {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  color: #fff;
}

.sony-footer-socials svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sony-footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px;
  gap: 72px;
  align-items: start;
}

.sony-footer-copy p {
  margin: 0;
  font-size: 14px;
  line-height: 1.04;
}

@media (max-width: 760px) {
  .sony-footer-body {
    width: min(100% - 32px, 560px);
    padding-top: 34px;
  }

  .sony-footer-socials {
    gap: 20px;
  }

  .sony-footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .sony-back-top span {
    right: 20px;
  }

  .work-badge {
    justify-self: end;
  }
}

/* Playable YouTube embeds with matching YouTube links. */
.sony-video-embed,
.large-video-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.sony-video-embed iframe,
.large-video-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.sony-video-tile > strong {
  position: static;
  min-height: 37px;
  display: block;
  padding: 8px 12px 8px 14px;
  background: rgba(153, 0, 0, .88);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  font-weight: 400;
}




.video-strip .sony-video-tile,
.home-videos .sony-video-tile {
  height: auto;
}


.exec-card img.exec-photo {
  width: 100%;
  aspect-ratio: 1 / 1.14;
  display: block;
  object-fit: cover;
  object-position: center top;
  background: #d8d8d8;
}

.dei-partner-grid article {
  min-height: 120px;
  background: transparent;
}

.dei-partner-grid a {
  min-height: 120px;
  display: grid;
  place-items: center;
  gap: 10px;
  color: #111;
  text-decoration: none;
}

.dei-partner-grid img {
  max-width: 100%;
  max-height: 96px;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}


.dei-partner-grid a:hover,
.dei-partner-grid a:focus-visible {
  outline: 2px solid #d71920;
  outline-offset: 8px;
}

/* Original label logo images. */
.home-label-logo img {
  max-width: 124px;
  max-height: 86px;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}

.label-logo-grid .sony-logo-card > a {
  display: grid;
  grid-template-rows: 1fr 58px;
  min-height: 260px;
  color: inherit;
  text-decoration: none;
}

.label-logo-grid .sony-logo-card > a > div {
  min-height: 200px;
  display: grid;
  place-items: center;
  padding: 28px;
  background: #fff;
}

.label-logo-grid .sony-logo-card img {
  max-width: 170px;
  max-height: 116px;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}

.label-logo-grid .sony-logo-card strong {
  min-height: 58px;
}

/* Exact footer social marks and Great Place To Work badge. */
.sony-footer-socials {
  gap: 30px;
  margin-bottom: 38px;
}

.sony-footer-socials a {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
}

.sony-footer-socials svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
  stroke: none;
}

.sony-footer-socials a:nth-child(4) svg {
  width: 24px;
}

.sony-footer-socials a:hover,
.sony-footer-socials a:focus-visible {
  color: #fff;
  outline: 0;
}

.work-badge {
  width: 82px;
  padding: 0;
  display: grid;
  grid-template-rows: auto auto;
  color: #fff;
  background: transparent;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  line-height: .86;
  text-align: left;
  overflow: visible;
}

.work-badge-red {
  min-height: 92px;
  padding: 7px 6px 5px;
  background: #ff182b;
  color: #fff;
  font-size: 20px;
  letter-spacing: 0;
}

.work-badge-red span {
  font-size: 7px;
  vertical-align: baseline;
}

.work-badge-blue {
  position: relative;
  min-height: 58px;
  padding: 7px 6px 10px;
  background: #073a8f;
  color: #fff;
  font-size: 15px;
  line-height: .95;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% 78%, 50% 100%, 0 78%);
}

.work-badge-blue small {
  display: block;
  margin-top: 7px;
  padding: 0;
  border: 0;
  color: #fff;
  font-size: 6px;
  line-height: 1.16;
  font-weight: 900;
  text-align: center;
}

/* Sony page/card correction pass: restore red label bars and smaller equal carousel arrows. */
.label-logo-grid .sony-logo-card {
  background: transparent;
}

.label-logo-grid .sony-logo-card > a {
  grid-template-rows: 200px 58px;
  min-height: 258px;
  background: #fff;
}

.label-logo-grid .sony-logo-card > a > div {
  min-height: 200px;
  padding: 28px;
}

.label-logo-grid .sony-logo-card strong {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 0 12px;
  background: linear-gradient(#d71920, #b9101b);
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.15;
  text-align: center;
}

.hero-arrow {
  width: 42px;
  height: 42px;
  background: rgba(0, 0, 0, .16);
  border: 0;
  opacity: .92;
}

.hero-arrow.left {
  left: -20px;
  border-left: 3px solid rgba(255, 255, 255, .9);
  border-bottom: 3px solid rgba(255, 255, 255, .9);
}

.hero-arrow.right {
  right: -20px;
  border-right: 3px solid rgba(255, 255, 255, .9);
  border-top: 3px solid rgba(255, 255, 255, .9);
}

.label-carousel {
  grid-template-columns: 28px 1fr 28px;
  gap: 6px;
}

.label-arrow {
  width: 28px;
  height: 52px;
  color: #b9b9b9;
  font-size: 38px;
  font-weight: 300;
}

.sony-footer-socials {
  gap: 34px;
  margin-bottom: 44px;
}

.sony-footer-socials a,
.sony-footer-socials svg {
  width: 40px;
  height: 40px;
}

.sony-footer-socials a:nth-child(4) svg {
  width: 27px;
}

.work-badge {
  width: 88px;
}

.work-badge-red {
  min-height: 98px;
  font-size: 21px;
}

.work-badge-blue {
  min-height: 64px;
  font-size: 16px;
}

/* Equal thin chevrons for homepage carousels. */
.label-arrow {
  position: relative;
  display: grid;
  place-items: center;
  font-size: 0;
}

.label-arrow::before {
  content: "";
  width: 22px;
  height: 22px;
  border-top: 2px solid #cfcfcf;
  border-right: 2px solid #cfcfcf;
  display: block;
}

.label-prev::before {
  transform: rotate(225deg);
}

.label-next::before {
  transform: rotate(45deg);
}

.label-arrow:hover::before,
.label-arrow:focus-visible::before {
  border-color: #d71920;
}

.hero-arrow {
  font-size: 0;
}

.hero-arrow.left,
.hero-arrow.right {
  width: 40px;
  height: 40px;
}

.hero-arrow.left {
  left: -19px;
}

.hero-arrow.right {
  right: -19px;
}

/* Marco Mengoni artist-card crop. */
.sony-person-card img.marco-mengoni-photo {
  object-position: center 24%;
}

/* Homepage News dropdown to match Sony nav popup. */
.home-header .news-nav-item {
  position: relative;
}

.home-header .news-nav-item > button {
  padding: 0;
  color: #fff;
  font: inherit;
  text-shadow: inherit;
}

.home-header .news-dropdown {
  left: -34px;
  top: 100%;
  width: 182px;
  min-height: 146px;
  padding: 22px 18px;
  background: rgba(0, 0, 0, .86);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: none;
}

.home-header .news-nav-item:hover > button,
.home-header .news-nav-item:focus-within > button {
  color: #f10f19;
}

.home-header .news-dropdown a {
  padding: 0 0 18px;
  color: #fff;
  font-size: 19px;
  line-height: 1.1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .9);
  white-space: nowrap;
}

.home-header .news-dropdown a:last-child {
  padding-bottom: 0;
}

.home-header .news-dropdown a:first-child {
  color: #fff;
}

/* News article detail pages. */
.article-detail-layout {
  grid-template-columns: minmax(0, 720px) 360px;
  gap: 76px;
  align-items: start;
}

.sony-article-detail h1 {
  margin-bottom: 54px;
}

.sony-article-detail h2 {
  max-width: 760px;
  margin: 0 0 12px;
  font-size: 31px;
  line-height: 1.08;
  text-transform: none;
}

.sony-article-detail time {
  display: block;
  margin: 0 0 34px;
  font-size: 20px;
}

.sony-article-detail p {
  margin: 0 0 24px;
  font-size: 20px;
  line-height: 1.22;
}

.sony-article-detail .article-dek {
  font-style: italic;
}

.article-hero-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 0 28px;
  background: linear-gradient(180deg, #b9d7ef, #f8f8f8 58%, #444 58%, #222);
  position: relative;
  overflow: hidden;
}

.scholars-image::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 11%;
  height: 18%;
  background-image: radial-gradient(circle, #111 8px, transparent 9px), radial-gradient(circle, #d71920 7px, transparent 8px), radial-gradient(circle, #fff 8px, transparent 9px);
  background-size: 42px 28px, 48px 30px, 55px 34px;
  background-position: 0 0, 18px 6px, 30px 10px;
}

.scholars-image::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  background: linear-gradient(90deg, transparent 8%, rgba(0,0,0,.2) 8% 10%, transparent 10% 18%, rgba(0,0,0,.18) 18% 20%, transparent 20% 58%, rgba(0,0,0,.15) 58% 60%, transparent 60%), linear-gradient(#777, #ddd);
  opacity: .55;
}

.article-video-frame {
  width: min(520px, 100%);
  margin: 42px auto 0;
  aspect-ratio: 9 / 16;
  background: #ddd;
}

.article-video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: linear-gradient(#d3a766, #d9c08c 42%, #5e5e5e);
}

.source-note {
  margin-top: 32px;
  font-size: 14px !important;
  color: #555;
}

.source-note a {
  color: #d71920;
}

.faq-callout {
  margin: 0 0 34px;
  background: #eee;
  color: #000;
}

.faq-callout h3 {
  margin: 0;
  padding: 22px 24px;
  background: #fff;
  color: #d71920;
  font-size: 28px;
  line-height: 1.12;
  text-align: center;
}

.faq-callout p,
.faq-callout ul {
  margin: 0;
  padding: 14px 22px 0;
  font-size: 17px;
  line-height: 1.12;
}

.faq-callout ul {
  padding-top: 0;
  padding-bottom: 18px;
}

.news-sidebar .faq-callout > a {
  display: block;
  padding: 16px 18px;
  background: #d71920;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

@media (max-width: 900px) {
  .article-detail-layout { grid-template-columns: 1fr; }
  .sony-article-detail h1 { margin-bottom: 28px; }
  .sony-article-detail h2 { font-size: 26px; }
  .sony-article-detail p { font-size: 18px; }
}

/* Inside Sony Music feed images. */
.sony-feed-item.has-feed-image {
  gap: 18px;
  margin-bottom: 34px;
}

.sony-feed-item .feed-image-link {
  display: block;
  margin: 8px 0 14px;
  color: inherit;
}

.sony-feed-item .feed-image-link img {
  width: 100%;
  max-height: 330px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.sony-feed-item.has-feed-image p {
  max-height: none;
  color: #111;
  font-size: 15px;
  line-height: 1.22;
}

.sony-feed-item.has-feed-image h2 {
  font-size: 25px;
}

.sony-feed-item.has-feed-image time {
  font-size: 15px;
}

.sony-feed-item.has-feed-image a:not(.feed-image-link) {
  color: #d71920;
}

.news-image-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 18px 0 28px;
}

.news-image-row img,
.sony-article-detail > img.article-inline-image {
  width: 100%;
  display: block;
  object-fit: cover;
}

.news-image-row img {
  aspect-ratio: 16 / 9;
}

.article-inline-image {
  margin: 18px 0 28px;
}

.article-podcast-art {
  width: min(360px, 80%);
  margin: 34px auto 0;
  display: block;
}

/* Fix article/sidebar FAQ callout stacking to match Sony page. */
.news-sidebar .faq-callout {
  display: block;
  width: 100%;
  max-width: 360px;
  margin: 0 0 34px;
  padding: 0;
  background: #eee;
  color: #000;
}

.news-sidebar .faq-callout h3 {
  margin: 0;
  padding: 22px 24px 20px;
  background: #fff;
  color: #d71920;
  font-size: 28px;
  line-height: 1.16;
  font-weight: 900;
  text-align: center;
}

.news-sidebar .faq-callout p {
  margin: 0;
  padding: 20px 22px 0;
  font-size: 18px;
  line-height: 1.1;
}

.news-sidebar .faq-callout ul {
  margin: 0;
  padding: 6px 22px 22px 42px;
  font-size: 18px;
  line-height: 1.15;
}

.news-sidebar .faq-callout > a {
  display: block;
  width: 100%;
  padding: 18px 18px;
  background: #d71920;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
}

/* For Artists original-style pages. */
.artist-forward-page,
.artist-portal-page {
  margin: 0;
  background: #fff;
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.af-sony-mark,
.ap-sony-mark {
  position: fixed;
  top: 8px;
  right: 12px;
  z-index: 20;
  color: #fff;
  font: 900 12px Georgia, serif;
  letter-spacing: 2px;
}

.af-main,
.ap-main {
  max-width: 760px;
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
}

.af-dot-logo {
  display: inline-grid;
  justify-items: center;
  gap: 8px;
  color: #fff;
  font: 900 14px Georgia, serif;
  letter-spacing: 2px;
}

.af-dot-logo span {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-image: radial-gradient(circle, currentColor 1.8px, transparent 2.5px);
  background-size: 7px 7px;
  color: #fff;
}

.af-dot-logo.small {
  color: #111;
  transform: scale(.82);
  transform-origin: left center;
}

.af-hero {
  min-height: 500px;
  padding: 26px 50px 34px;
  text-align: center;
  background: radial-gradient(circle at -7% 30%, transparent 0 96px, #f00 97px 180px, transparent 181px), radial-gradient(circle at 116% 35%, transparent 0 98px, #f00 99px 182px, transparent 183px), repeating-radial-gradient(circle at 20% 50%, #f00 0 80px, #fff 81px 155px);
}

.af-hero .af-dot-logo { display: block; margin: 0 auto 8px; color: #fff; }
.af-hero h1 { margin: 0 0 22px; font-size: 56px; line-height: .9; text-transform: none; }
.af-hero h1 span { color: #e90000; }
.af-hero p { max-width: 500px; margin: 0 auto 20px; font-size: 16px; line-height: 1.18; }
.af-callout { display: flex; justify-content: space-between; max-width: 520px; margin: 28px auto 18px; font-size: 24px; }
.af-jump { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 24px; max-width: 560px; margin: 18px auto; }
.af-jump a,
.af-start { color: #000; text-decoration: none; font-size: 15px; }
.af-jump a::before { content: "? "; color: #f00; }
.af-start { display: inline-block; margin-top: 16px; }
.af-start::after { content: " ?"; margin-left: 28px; }

.af-band {
  position: relative;
  min-height: 405px;
  padding: 58px 56px;
  overflow: hidden;
}
.af-band h2 { display: inline-block; margin: 0 0 30px; font-size: 22px; line-height: 1.1; text-transform: none; border-bottom: 4px solid #f00; padding-bottom: 7px; }
.af-band h3 { max-width: 430px; margin: 0 0 20px; font-size: 20px; line-height: 1.12; }
.af-band p { max-width: 350px; margin: 0 0 30px; font-size: 16px; line-height: 1.18; font-weight: 500; }
.af-band a { display: inline-block; border: 2px solid currentColor; padding: 9px 40px 9px 10px; color: inherit; text-decoration: none; font-size: 15px; position: relative; }
.af-band a::after { content: "?"; position: absolute; right: 10px; color: #f00; }
.af-black { background: #000; color: #fff; }
.af-red { background: #f00; color: #000; }
.af-white { background: #fff; color: #000; }
.af-split { display: grid; grid-template-columns: 1fr 1fr; gap: 35px; align-items: center; }
.af-halftone { width: 260px; height: 390px; opacity: .95; background-image: radial-gradient(circle, currentColor 2.4px, transparent 3px); background-size: 10px 10px; transform: skewX(-12deg); }
.af-halftone.white { position: absolute; right: -5px; top: 0; color: #fff; }
.af-halftone.black { color: #000; transform: none; }
.af-red-disc { position: absolute; right: -105px; bottom: -105px; width: 290px; height: 290px; border-radius: 50%; background: #f00; }
.af-tools { min-height: 540px; }
.af-device-stack { position: absolute; right: 40px; bottom: 35px; width: 360px; height: 240px; transform: rotate(-16deg); }
.af-device-stack span { position: absolute; border: 12px solid #171717; border-radius: 22px; background: linear-gradient(#ececec, #fff 55%, #f00 56%, #f00 62%, #fff 63%); box-shadow: 0 10px 30px rgba(255,255,255,.15); }
.af-device-stack span:nth-child(1) { inset: 55px 0 0 80px; }
.af-device-stack span:nth-child(2) { width: 120px; height: 210px; right: 90px; top: 0; }
.af-device-stack span:nth-child(3) { width: 110px; height: 190px; right: 15px; top: 30px; }
.af-started { min-height: 430px; }
.af-started h3 { max-width: 650px; }
.af-started p { max-width: 650px; }
.af-footer,
.ap-footer { max-width: 760px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 42px 56px; font-size: 10px; background: #fff; color: #111; }
.af-footer p,
.ap-footer p { text-align: right; line-height: 1.15; }

.ap-main { max-width: 690px; }
.ap-hero { min-height: 430px; display: grid; grid-template-columns: 1.25fr 1fr; gap: 20px; padding: 18px 42px 42px; background: #fff; position: relative; }
.ap-brand { grid-column: 1 / 3; }
.ap-brand span { display: inline-block; width: 34px; height: 34px; border: 10px solid #c21f19; border-radius: 50%; vertical-align: middle; margin-right: 6px; }
.ap-brand h1 { display: inline-block; margin: 0; font-size: 50px; line-height: 1; text-transform: none; vertical-align: middle; }
.ap-brand h1 span { font-weight: 500; }
.ap-brand p { margin: 6px 0 0; color: #c21f19; font-size: 15px; }
.ap-laptop { position: relative; min-height: 240px; }
.ap-laptop span:first-child,
.ap-laptop-wide,
.ap-dashboard { display: block; border: 12px solid #151515; border-radius: 12px 12px 3px 3px; background: linear-gradient(135deg, #0b0b0b 0 28%, #f5f5f5 29% 70%, #b51d16 71%); box-shadow: 0 18px 35px rgba(0,0,0,.22); }
.ap-laptop span:first-child { width: 330px; height: 205px; transform: rotate(-12deg); }
.ap-laptop span:last-child { position: absolute; right: 24px; bottom: 6px; width: 86px; height: 160px; border: 9px solid #111; border-radius: 18px; background: linear-gradient(#111 0 20%, #fff 21% 70%, #c21f19 71%); }
.ap-login { text-align: center; font-size: 12px; line-height: 1.25; }
.ap-login strong { display: block; margin: 12px 0; color: #c21f19; }
.ap-login button,
.ap-advances button { border: 0; background: #c21f19; color: #fff; padding: 10px 24px; font-weight: 900; }
.store-row { display: flex; justify-content: center; gap: 8px; margin: 10px 0; }
.store-row span { background: #111; color: #fff; padding: 5px 9px; font-size: 10px; }
.qr-row { display: flex; justify-content: center; gap: 18px; }
.qr-row span { width: 44px; height: 44px; background-image: repeating-linear-gradient(45deg, #000 0 3px, #fff 3px 6px); }
.ap-intro { padding: 60px 42px 0; text-align: center; }
.ap-intro h2,
.ap-analytics h2,
.ap-trends h2,
.ap-advances h2,
.ap-getting h2 { margin: 30px 0 20px; font-size: 34px; text-transform: none; }
.ap-intro h2 span,
.ap-trends h2,
.ap-advances h2 { color: #c21f19; }
.ap-intro p { font-size: 12px; line-height: 1.35; }
.ap-phones { display: flex; justify-content: center; gap: 32px; margin-top: 44px; }
.ap-phones span,
.ap-phone-single,
.ap-phone-cut { width: 105px; height: 210px; border: 10px solid #111; border-radius: 24px; background: linear-gradient(#111 0 16%, #fff 17% 68%, #c21f19 69%); box-shadow: 0 12px 22px rgba(0,0,0,.2); }
.ap-red { margin-top: -34px; padding: 92px 45px 58px; background: #b9251d; color: #fff; text-align: center; }
.ap-red p { max-width: 510px; margin: 0 auto 28px; font-size: 12px; line-height: 1.45; }
.ap-red h3 { font-size: 24px; }
.ap-laptop-wide { width: 590px; height: 245px; margin: 30px auto 0; background: linear-gradient(#111 0 16%, #fff 17% 82%, #eee 83%); }
.ap-analytics { padding: 56px 42px 40px; text-align: center; }
.ap-analytics h2::after,
.ap-getting h2::after { content: ""; display: block; width: 45px; height: 3px; margin: 10px auto 0; background: #c21f19; }
.ap-circles { display: flex; justify-content: center; gap: 34px; color: #fff; }
.ap-circles span { width: 150px; height: 150px; display: grid; place-items: end center; padding-bottom: 16px; border-radius: 50%; background: radial-gradient(circle, #fff 0 38%, #f2f2f2 39%, #b9251d 40%); color: #fff; font-size: 12px; }
.ap-trends { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 30px; padding: 56px 35px; background: #b9251d; color: #fff; }
.ap-dashboard { height: 245px; background: linear-gradient(#111 0 18%, #f8f8f8 19% 58%, #fff 59%); }
.ap-trends p,
.ap-advances p { font-size: 13px; line-height: 1.35; }
.ap-advances { display: grid; grid-template-columns: 130px 1fr 130px; align-items: center; gap: 24px; min-height: 360px; padding: 38px 36px; background: linear-gradient(105deg, #efefef, #fff); }
.ap-phone-cut { transform: translateX(30px); }
.ap-getting { padding: 58px 36px 72px; background: #b9251d; color: #fff; text-align: center; }
.ap-getting p { font-size: 13px; }
.ap-tutorials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 28px; }
.ap-tutorials article span { display: block; aspect-ratio: 16 / 9; background: linear-gradient(135deg, #111, #333 55%, #c21f19); border: 6px solid #7b130f; }
.ap-tutorials strong { display: block; margin-top: 13px; font-size: 12px; text-decoration: underline; }

@media (max-width: 760px) {
  .af-main, .ap-main, .af-footer, .ap-footer { max-width: none; }
  .af-hero, .af-band, .ap-hero, .ap-intro, .ap-red, .ap-analytics, .ap-trends, .ap-advances, .ap-getting { padding-left: 24px; padding-right: 24px; }
  .af-hero h1 { font-size: 42px; }
  .af-callout, .af-jump, .af-split, .ap-hero, .ap-trends, .ap-advances { grid-template-columns: 1fr; display: grid; }
  .af-callout { gap: 10px; }
  .af-device-stack { position: relative; right: auto; bottom: auto; margin-top: 30px; width: 280px; }
  .ap-laptop-wide { width: 100%; }
  .ap-circles, .ap-phones { flex-wrap: wrap; }
  .ap-tutorials { grid-template-columns: 1fr; }
}

/* Italian featured videos: playable cards with matching YouTube links */
.featured-video-mini {
  width: min(100%, 320px);
  background: #b60008;
  overflow: hidden;
}

.featured-video-mini .italian-video-frame,
.sony-video-tile .sony-video-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.featured-video-mini iframe,
.sony-video-tile iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.featured-video-mini p {
  margin: 0;
  padding: 8px 10px 6px;
  color: #fff;
  background: #b60008;
  font-size: 16px;
  line-height: 1.2;
}
.sony-video-tile .home-youtube-link {
  position: static;
  background: #111;
}

.video-showcase .video-strip-wrap {
  grid-template-columns: 1fr;
}

.video-showcase .video-strip-next {
  display: none !important;
}


/* Remove old thumbnail overlay controls from every video tile. */
.vevo-mark,
.ring-play,
.music-video-link::after,
.video-play,
.youtube-play {
  display: none !important;
}

.article-main-image {
  width: 100%;
  max-width: 760px;
  display: block;
  margin: 34px 0 18px;
  object-fit: contain;
  background: #fff;
}

/* Unified Sony Music header across every page. */
.site-header,
body:has(.sony-news-page) .site-header,
body.sony-subpage .site-header {
  position: relative !important;
  min-height: 235px !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 62px !important;
  padding: 42px max(20px, calc((100vw - 1100px) / 2)) 28px !important;
  color: #fff !important;
  background: #000 !important;
  border-bottom: 0 !important;
}

.brand,
body:has(.sony-news-page) .brand,
body.sony-subpage .brand {
  width: 126px !important;
  display: grid !important;
  gap: 10px !important;
  justify-items: center !important;
  color: #fff !important;
  text-decoration: none !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  letter-spacing: 2px !important;
}

.brand::before,
body:has(.sony-news-page) .brand::before,
body.sony-subpage .brand::before {
  content: "" !important;
  width: 95px !important;
  height: 95px !important;
  border-radius: 50% !important;
  background-image: radial-gradient(circle, #e51b23 2.8px, transparent 3.5px) !important;
  background-size: 10px 10px !important;
  clip-path: circle(50%) !important;
}

body::before,
body:has(.sony-news-page)::before,
body.sony-subpage::before {
  content: "SONY" !important;
  position: absolute !important;
  right: max(24px, calc((100vw - 1320px) / 2)) !important;
  top: 14px !important;
  z-index: 20 !important;
  color: #fff !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 23px !important;
  font-weight: 900 !important;
  letter-spacing: 2px !important;
  pointer-events: none !important;
}

.nav,
body:has(.sony-news-page) .nav,
body.sony-subpage .nav {
  display: flex !important;
  align-items: center !important;
  gap: 48px !important;
  color: #fff !important;
  font-size: 19px !important;
  font-weight: 400 !important;
  text-transform: none !important;
}

.nav a,
.nav button,
body:has(.sony-news-page) .nav a,
body:has(.sony-news-page) .nav button,
body.sony-subpage .nav a,
body.sony-subpage .nav button {
  padding: 24px 0 !important;
  color: #fff;
  text-decoration: none;
  background: transparent;
  border: 0;
}

.dropdown,
body:has(.sony-news-page) .dropdown,
body.sony-subpage .dropdown {
  left: -18px !important;
  width: 286px !important;
  background: #4a4a4a !important;
  border-top: 0 !important;
  box-shadow: 0 10px 16px rgba(0,0,0,.3) !important;
}

.nav-item:hover > button,
.nav-item:focus-within > button,
body:has(.sony-news-page) .nav-item:hover > button,
body:has(.sony-news-page) .nav-item:focus-within > button,
body.sony-subpage .nav-item:hover > button,
body.sony-subpage .nav-item:focus-within > button {
  color: #f10f19 !important;
  background: #4a4a4a !important;
  padding-left: 22px !important;
  padding-right: 22px !important;
}

.dropdown a,
body:has(.sony-news-page) .dropdown a,
body.sony-subpage .dropdown a {
  padding: 13px 18px !important;
  font-size: 20px !important;
  line-height: 1.08 !important;
  text-transform: none !important;
}

@media (max-width: 760px) {
  .site-header,
  body:has(.sony-news-page) .site-header,
  body.sony-subpage .site-header {
    min-height: auto !important;
    padding: 28px 22px !important;
    gap: 24px !important;
    flex-wrap: wrap !important;
  }

  .nav,
  body:has(.sony-news-page) .nav,
  body.sony-subpage .nav {
    width: 100% !important;
    gap: 18px !important;
    flex-wrap: wrap !important;
    font-size: 17px !important;
  }
}

.careers-page {
  background: #f4f4f4;
  color: #000;
}

.careers-intro,
.career-role-section,
.career-apply-section {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.careers-intro {
  padding: 54px 0 28px;
}

.careers-intro h1,
.career-role-section h2,
.career-apply-section h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: .95;
  font-weight: 900;
}

.careers-intro p {
  max-width: 720px;
  font-size: 22px;
  line-height: 1.3;
}

.career-role-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
  align-items: start;
  padding: 20px 0 34px;
}

.focused-job-grid {
  display: block;
}

.career-job-card,
.career-contact-card,
.career-application-form {
  background: #fff;
  border: 0;
  box-shadow: none;
}

.career-job-card {
  padding: 30px;
}

.job-kicker {
  margin: 0 0 8px;
  color: #d71920;
  font-weight: 900;
  text-transform: uppercase;
}

.career-job-card h3 {
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1.08;
}

.career-job-card p,
.career-job-card li,
.career-contact-card p {
  font-size: 17px;
  line-height: 1.35;
}

.career-job-card dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.career-job-card dt {
  font-weight: 900;
  color: #555;
  font-size: 13px;
  text-transform: uppercase;
}

.career-job-card dd {
  margin: 4px 0 0;
  font-weight: 700;
}

.career-job-card h4 {
  margin: 18px 0 10px;
  font-size: 20px;
}

.career-contact-card {
  padding: 24px;
}

.career-contact-card strong {
  display: block;
  margin-bottom: 10px;
  color: #d71920;
  font-size: 22px;
}

.career-contact-card a {
  color: #000;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.career-apply-section {
  padding: 22px 0 74px;
}

.career-application-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
  padding: 30px;
}

.career-application-form label {
  display: grid;
  gap: 7px;
  font-weight: 900;
}

.career-application-form input,
.career-application-form select,
.career-application-form textarea {
  width: 100%;
  border: 1px solid #cfcfcf;
  background: #fff;
  padding: 13px 14px;
  font: inherit;
  font-weight: 400;
}

.career-application-form textarea,
.career-application-form label:has(textarea),
.career-application-form label:last-of-type {
  grid-column: 1 / -1;
}

.career-application-form button {
  width: max-content;
  border: 0;
  background: #d71920;
  color: #fff;
  padding: 14px 24px;
  font-weight: 900;
}

.career-application-form .form-status {
  align-self: center;
  margin: 0;
  font-weight: 700;
}

@media (max-width: 820px) {
  .career-role-section,
  .career-application-form {
    grid-template-columns: 1fr;
  }

  .career-job-card dl {
    grid-template-columns: 1fr;
  }
}

.career-board-section,
.career-role-detail,
.career-apply-section {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.career-board-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
  align-items: start;
  padding: 20px 0 78px;
}

.career-board-section h2,
.career-role-detail h1,
.role-requirements h2 {
  margin: 0 0 18px;
  font-weight: 900;
  line-height: 1;
}

.career-board-section h2,
.career-role-detail h1 {
  font-size: clamp(34px, 5vw, 56px);
}

.artist-job-board {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.artist-job-board .career-job-card {
  display: block;
  min-height: 100%;
  color: #000;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}

.artist-job-board .career-job-card:hover,
.artist-job-board .career-job-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,.12);
}

.career-job-card .job-action,
.job-action {
  display: inline-block;
  margin-top: 8px;
  color: #d71920;
  font-weight: 900;
  text-decoration: none;
}

.career-role-page {
  min-height: 60vh;
}

.career-role-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: start;
  padding: 56px 0 24px;
}

.career-role-copy,
.role-requirements {
  background: #fff;
  padding: 30px;
}

.career-role-copy p {
  font-size: 19px;
  line-height: 1.38;
}

.career-role-copy dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 0;
}

.career-role-copy dt {
  color: #555;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.career-role-copy dd {
  margin: 4px 0 0;
  font-weight: 800;
}

.role-requirements h2 {
  color: #d71920;
  font-size: 28px;
}

.role-requirements li {
  margin: 0 0 11px;
  font-size: 17px;
  line-height: 1.32;
}

.career-application-form input[type="file"] {
  border: 1px dashed #aaa;
}

.file-note {
  color: #666;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .career-board-section,
  .career-role-detail,
  .artist-job-board,
  .career-role-copy dl {
    grid-template-columns: 1fr;
  }
}

/* Final Sony-style polish layer: consistent type, controls, and live chat. */
:root {
  --sony-red: #d71920;
  --sony-black: #000;
  --sony-ink: #050505;
  --sony-muted: #666;
  --sony-panel: #f1f1f1;
  --sony-font: Arial, Helvetica, sans-serif;
}

html,
body {
  font-family: var(--sony-font) !important;
  font-size: 16px;
  line-height: 1.35;
  color: var(--sony-ink);
}

h1, h2, h3, h4, h5, h6,
.nav,
button,
input,
select,
textarea {
  font-family: var(--sony-font) !important;
  letter-spacing: 0 !important;
}

main h1 {
  font-size: clamp(42px, 5.2vw, 64px) !important;
  line-height: 1.02 !important;
  font-weight: 900 !important;
}

main h2 {
  font-size: clamp(28px, 3.2vw, 42px) !important;
  line-height: 1.08 !important;
  font-weight: 900 !important;
}

main h3 {
  font-size: clamp(21px, 2.2vw, 30px) !important;
  line-height: 1.12 !important;
  font-weight: 900 !important;
}

main p,
main li,
main dd,
main label,
.sony-feed-card p,
.sony-article-detail p,
.career-job-card p,
.career-job-card li,
.role-requirements li {
  font-size: 18px !important;
  line-height: 1.34 !important;
}

.site-header,
body:has(.sony-news-page) .site-header,
body.sony-subpage .site-header {
  min-height: 258px !important;
  padding: 42px 8.5vw 38px !important;
  background: #000 !important;
  border-bottom: 1px solid #252525 !important;
}

.nav,
body:has(.sony-news-page) .nav,
body.sony-subpage .nav {
  gap: clamp(38px, 4.6vw, 76px) !important;
  font-size: 22px !important;
  align-items: center !important;
}

.nav a,
.nav button,
body:has(.sony-news-page) .nav a,
body:has(.sony-news-page) .nav button,
body.sony-subpage .nav a,
body.sony-subpage .nav button {
  min-height: 48px !important;
  padding: 12px 0 !important;
  font-size: inherit !important;
  font-weight: 400 !important;
  line-height: 1 !important;
}

.dropdown,
body:has(.sony-news-page) .dropdown,
body.sony-subpage .dropdown {
  min-width: 250px !important;
  padding: 18px 0 !important;
  background: #4a4a4a !important;
}

.dropdown a,
body:has(.sony-news-page) .dropdown a,
body.sony-subpage .dropdown a {
  min-height: 0 !important;
  padding: 10px 18px !important;
  font-size: 20px !important;
  line-height: 1.1 !important;
}

button,
.button,
form button,
.faq-card a,
.home-faq-card a,
.footer-actions a,
.career-application-form button,
.chat-admin-reply button,
.live-chat-form button {
  min-height: 44px !important;
  padding: 11px 22px !important;
  font-size: 16px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  border-radius: 0 !important;
}

.hero-arrow,
.label-prev,
.label-next {
  width: 58px !important;
  height: 58px !important;
  min-height: 58px !important;
  padding: 0 !important;
  border-width: 3px !important;
}

.hero-arrow::before,
.label-prev::before,
.label-next::before {
  width: 24px !important;
  height: 24px !important;
}

.slider-dots button,
#heroDots button {
  width: 14px !important;
  height: 14px !important;
  min-height: 14px !important;
  padding: 0 !important;
}

.sony-footer-socials a,
.home-socials a {
  width: 42px !important;
  height: 42px !important;
}

.sony-footer-socials svg,
.home-socials svg {
  width: 34px !important;
  height: 34px !important;
}

.gptw-badge {
  width: 86px !important;
  height: 124px !important;
}

.career-board-section,
.career-role-detail,
.career-apply-section,
.chat-admin-main {
  width: min(1120px, calc(100% - 64px)) !important;
}

.career-job-card,
.career-contact-card,
.career-role-copy,
.role-requirements,
.career-application-form {
  border-radius: 0 !important;
}

.career-job-card h3 {
  font-size: 28px !important;
}

.career-application-form input,
.career-application-form select,
.career-application-form textarea,
.live-chat-form input,
.live-chat-form textarea,
.chat-admin-reply textarea {
  min-height: 46px !important;
  font-size: 16px !important;
  line-height: 1.25 !important;
}

.live-chat {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10000;
  font-family: var(--sony-font);
}

.live-chat-toggle {
  background: #000 !important;
  color: #fff !important;
  border: 2px solid #fff !important;
  box-shadow: 0 8px 24px rgba(0,0,0,.28);
}

.live-chat-panel {
  display: none;
  width: min(360px, calc(100vw - 40px));
  margin-bottom: 12px;
  background: #fff;
  border: 1px solid #cfcfcf;
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
}

.live-chat.is-open .live-chat-panel {
  display: block;
}

.live-chat-head {
  background: #000;
  color: #fff;
  padding: 16px 18px;
}

.live-chat-head strong,
.live-chat-head span {
  display: block;
}

.live-chat-head span {
  margin-top: 4px;
  color: #ccc;
  font-size: 13px;
}

.live-chat-messages {
  max-height: 280px;
  overflow: auto;
  padding: 14px;
  background: #f3f3f3;
}

.chat-system {
  margin: 0;
  color: #555;
  font-size: 14px !important;
}

.chat-message {
  max-width: 86%;
  margin: 0 0 10px;
  padding: 10px 12px;
  font-size: 15px !important;
  line-height: 1.25 !important;
  background: #fff;
}

.chat-message span {
  display: block;
  margin-bottom: 3px;
  color: #777;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.chat-message.from-agent {
  margin-left: auto;
  background: #000;
  color: #fff;
}

.chat-message.from-agent span {
  color: #ddd;
}

.live-chat-form {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.live-chat-form[hidden] {
  display: none;
}

.live-chat-form button {
  background: var(--sony-red) !important;
  color: #fff !important;
  border: 0 !important;
}

.live-chat .form-status {
  margin: 0;
  padding: 0 14px 14px;
  font-size: 13px !important;
  font-weight: 700;
}

.chat-admin-main {
  margin: 0 auto;
  padding: 54px 0 80px;
}

.chat-admin-intro p {
  max-width: 680px;
}

.chat-admin-shell {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.chat-session-list,
.chat-admin-detail,
.chat-admin-reply {
  background: #fff;
  padding: 20px;
}

.chat-session-list {
  display: grid;
  gap: 10px;
}

.chat-session-list button {
  min-height: 0 !important;
  padding: 14px !important;
  background: #f1f1f1 !important;
  color: #000 !important;
  border: 0 !important;
  text-align: left;
}

.chat-session-list strong,
.chat-session-list span {
  display: block;
}

.chat-session-list span {
  margin-top: 5px;
  color: #666;
  font-size: 13px;
  font-weight: 400;
}

.chat-admin-detail h2 {
  color: var(--sony-red);
}

.chat-admin-messages {
  margin-top: 18px;
  padding: 16px;
  background: #f3f3f3;
  max-height: 500px;
  overflow: auto;
}

.chat-admin-reply {
  grid-column: 2;
  display: grid;
  gap: 12px;
}

.chat-admin-reply button {
  width: max-content;
  background: var(--sony-red) !important;
  color: #fff !important;
  border: 0 !important;
}

@media (max-width: 820px) {
  .site-header,
  body:has(.sony-news-page) .site-header,
  body.sony-subpage .site-header {
    min-height: auto !important;
    padding: 30px 24px !important;
  }

  .nav,
  body:has(.sony-news-page) .nav,
  body.sony-subpage .nav {
    gap: 18px !important;
    font-size: 17px !important;
  }

  .chat-admin-shell,
  .chat-admin-reply {
    grid-template-columns: 1fr;
    grid-column: auto;
  }

  .live-chat {
    right: 14px;
    bottom: 14px;
  }
}

.chat-admin-login {
  width: min(520px, 100%);
  background: #fff;
  padding: 28px;
  margin: 28px 0 34px;
}

.chat-admin-login form {
  display: grid;
  gap: 16px;
}

.chat-admin-login label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

.chat-admin-login input {
  min-height: 48px;
  border: 1px solid #cfcfcf;
  padding: 12px 14px;
  font: inherit;
}

.chat-admin-login button {
  width: max-content;
  background: var(--sony-red) !important;
  color: #fff !important;
  border: 0 !important;
}

/* Prevent the legacy homepage wordmark from stacking with the shared SONY mark. */
.sony-wordmark {
  display: none !important;
}

/* Homepage original Sony-style hero layout. Keep this as the final homepage source of truth. */
body.home-page {
  overflow-x: hidden;
  background: #fff !important;
}

body.home-page::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 116px;
  background: #000;
  z-index: 40;
  pointer-events: none;
}

body.home-page::before {
  content: "SONY";
  position: absolute;
  top: 23px;
  right: 24px;
  z-index: 60;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 2px;
  text-shadow: none;
  pointer-events: none;
}

body.home-page .home-main {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 116px 0 0;
  background: #fff;
}

body.home-page .home-hero {
  position: relative;
  width: 100%;
  height: min(660px, calc(100vh - 240px));
  min-height: 520px;
  max-height: 660px;
  margin: 0;
  overflow: hidden;
  background: #000;
}

body.home-page .hero-artist,
body.home-page .hero-slide {
  width: 100%;
  height: 100%;
}

body.home-page .hero-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

body.home-page .hero-slide::after {
  background: linear-gradient(90deg, rgba(0,0,0,.96) 0%, rgba(0,0,0,.84) 13%, rgba(0,0,0,.4) 28%, rgba(0,0,0,.08) 53%, rgba(0,0,0,.45) 100%);
}

body.home-page .home-header {
  position: absolute;
  left: 50%;
  top: 146px;
  z-index: 55;
  width: 950px;
  max-width: calc(100vw - 110px);
  min-height: 0;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-start;
  gap: 70px;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
}

body.home-page .home-logo {
  flex: 0 0 126px;
  width: 126px;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13.5px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 2px;
  text-shadow: 1px 2px 2px rgba(0,0,0,.9);
}

body.home-page .home-logo .dot-mark,
body.home-page .dot-mark {
  width: 94px;
  height: 94px;
  min-width: 94px;
  min-height: 94px;
  max-width: 94px;
  max-height: 94px;
  display: block;
  margin: 0;
  border-radius: 50%;
  overflow: hidden;
  clip-path: circle(50%);
  background-image: radial-gradient(circle, #e51b23 2.35px, transparent 3.05px);
  background-size: 8.8px 8.8px;
}

body.home-page .home-nav,
body.home-page .home-header .nav {
  display: flex;
  align-items: flex-start;
  gap: 45px;
  padding-top: 60px;
  color: #fff;
  font-size: 19px;
  font-weight: 400;
  line-height: 1;
  text-transform: none;
}

body.home-page .home-nav a,
body.home-page .home-nav button,
body.home-page .home-header .nav a,
body.home-page .home-header .nav button {
  min-height: 0;
  padding: 0;
  margin: 0;
  color: #fff;
  background: transparent;
  border: 0;
  font-size: 19px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  text-shadow: 1px 2px 2px rgba(0,0,0,.85);
}

body.home-page .hero-slide h1,
body.home-page .home-main h1 {
  position: absolute;
  left: max(285px, calc((100vw - 950px) / 2 + 185px));
  top: 286px;
  z-index: 4;
  max-width: 460px;
  margin: 0;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
  text-shadow: 1px 2px 3px rgba(0,0,0,.9);
}

body.home-page .hero-arrow,
body.home-page .hero-arrow:hover,
body.home-page .hero-arrow:active,
body.home-page .hero-arrow:focus,
body.home-page .hero-arrow:focus-visible {
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  padding: 0;
  background: transparent;
  outline: 0;
  box-shadow: none;
  opacity: .68;
}

body.home-page .hero-arrow.left {
  left: -18px;
  border-left: 2px solid rgba(255,255,255,.65);
  border-bottom: 2px solid rgba(255,255,255,.65);
}

body.home-page .hero-arrow.right {
  right: -18px;
  border-right: 2px solid rgba(255,255,255,.65);
  border-top: 2px solid rgba(255,255,255,.65);
}

body.home-page #heroDots,
body.home-page .slider-dots {
  bottom: 18px;
  gap: 10px;
  padding: 5px 12px;
  background: rgba(0,0,0,.22);
}

body.home-page #heroDots button,
body.home-page .slider-dots button,
body.home-page #heroDots .is-active,
body.home-page .slider-dots .is-active {
  width: 12px;
  height: 12px;
  min-width: 12px;
  min-height: 12px;
  transform: none;
}

body.home-page .label-showcase,
body.home-page .home-section.label-showcase {
  padding-top: 34px;
}

body.home-page .label-showcase h2 {
  margin-top: 0;
}

@media (max-width: 900px) {
  body.home-page::after { height: 96px; }
  body.home-page .home-main { padding-top: 96px; }
  body.home-page .home-hero { height: 520px; min-height: 520px; }
  body.home-page .home-header {
    top: 126px;
    width: calc(100vw - 44px);
    gap: 34px;
  }
  body.home-page .home-nav,
  body.home-page .home-header .nav {
    gap: 22px;
    font-size: 18px;
  }
  body.home-page .home-nav a,
  body.home-page .home-nav button,
  body.home-page .home-header .nav a,
  body.home-page .home-header .nav button {
    font-size: 18px;
  }
  body.home-page .hero-slide h1,
  body.home-page .home-main h1 {
    left: 210px;
    top: 245px;
    font-size: 32px;
  }
}
/* Authoritative homepage sizing lock. */
body.home-page::after { height: 116px !important; }
body.home-page::before { top: 23px !important; right: 24px !important; font-size: 24px !important; }
body.home-page .home-main { padding-top: 116px !important; }
body.home-page .home-hero {
  height: min(660px, calc(100vh - 240px)) !important;
  min-height: 520px !important;
  max-height: 660px !important;
}
body.home-page .home-header {
  top: 146px !important;
  width: 950px !important;
  max-width: calc(100vw - 110px) !important;
  gap: 70px !important;
  padding: 0 !important;
}
body.home-page .home-logo { flex-basis: 126px !important; width: 126px !important; font-size: 13.5px !important; }
body.home-page .home-logo .dot-mark,
body.home-page .dot-mark {
  width: 94px !important;
  height: 94px !important;
  min-width: 94px !important;
  min-height: 94px !important;
  max-width: 94px !important;
  max-height: 94px !important;
  background-image: radial-gradient(circle, #e51b23 2.35px, transparent 3.05px) !important;
  background-size: 8.8px 8.8px !important;
}
body.home-page .home-nav,
body.home-page .home-header .nav { padding-top: 60px !important; gap: 45px !important; font-size: 19px !important; }
body.home-page .home-nav a,
body.home-page .home-nav button,
body.home-page .home-header .nav a,
body.home-page .home-header .nav button { font-size: 19px !important; padding: 0 !important; }
body.home-page .hero-slide h1,
body.home-page .home-main h1 { top: 286px !important; left: max(285px, calc((100vw - 950px) / 2 + 185px)) !important; font-size: 34px !important; }
body.home-page #heroDots,
body.home-page .slider-dots { bottom: 18px !important; gap: 10px !important; padding: 5px 12px !important; }
body.home-page #heroDots button,
body.home-page .slider-dots button,
body.home-page #heroDots .is-active,
body.home-page .slider-dots .is-active { width: 12px !important; height: 12px !important; min-width: 12px !important; min-height: 12px !important; }
body.home-page .hero-arrow,
body.home-page .hero-arrow:hover,
body.home-page .hero-arrow:focus,
body.home-page .hero-arrow:focus-visible { width: 50px !important; height: 50px !important; min-width: 50px !important; min-height: 50px !important; }
/* Emergency exact homepage correction requested: visible SONY bar + shorter original-like hero. */
body.home-page::before {
  content: none !important;
  display: none !important;
}

body.home-page::after {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 112px !important;
  background: #000 !important;
  z-index: 70 !important;
  pointer-events: none !important;
}

body.home-page .home-top-sony {
  position: absolute !important;
  top: 24px !important;
  right: 24px !important;
  z-index: 90 !important;
  display: block !important;
  color: #fff !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 24px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  letter-spacing: 2px !important;
  text-shadow: none !important;
  pointer-events: none !important;
}

body.home-page .home-main {
  padding-top: 112px !important;
}

body.home-page .home-hero {
  height: 660px !important;
  height: calc(100vh - 232px) !important;
  min-height: 520px !important;
  max-height: 660px !important;
}

body.home-page .home-header {
  top: 144px !important;
  width: 950px !important;
  max-width: calc(100vw - 110px) !important;
  gap: 68px !important;
  padding: 0 !important;
}

body.home-page .home-logo {
  flex: 0 0 124px !important;
  width: 124px !important;
  font-size: 13px !important;
  gap: 8px !important;
}

body.home-page .home-logo .dot-mark,
body.home-page .dot-mark {
  width: 92px !important;
  height: 92px !important;
  min-width: 92px !important;
  min-height: 92px !important;
  max-width: 92px !important;
  max-height: 92px !important;
  background-image: radial-gradient(circle, #e51b23 2.3px, transparent 3px) !important;
  background-size: 8.7px 8.7px !important;
}

body.home-page .home-nav,
body.home-page .home-header .nav {
  padding-top: 58px !important;
  gap: 44px !important;
  font-size: 19px !important;
}

body.home-page .home-nav a,
body.home-page .home-nav button,
body.home-page .home-header .nav a,
body.home-page .home-header .nav button {
  font-size: 19px !important;
  padding: 0 !important;
  line-height: 1 !important;
}

body.home-page .hero-slide h1,
body.home-page .home-main h1 {
  top: 282px !important;
  left: max(285px, calc((100vw - 950px) / 2 + 184px)) !important;
  font-size: 34px !important;
  line-height: 1 !important;
  font-weight: 400 !important;
}

body.home-page .hero-slide img {
  object-fit: cover !important;
  object-position: center center !important;
}

body.home-page .label-showcase,
body.home-page .home-section.label-showcase {
  padding-top: 34px !important;
}
/* Serious homepage geometry correction: original has 116px top bar, 660px hero, labels visible. */
html body.home-page {
  background: #fff !important;
}

html body.home-page::before {
  content: none !important;
  display: none !important;
}

html body.home-page::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 0 auto 0 !important;
  height: 116px !important;
  background: #000 !important;
  z-index: 100 !important;
  pointer-events: none !important;
}

html body.home-page .home-top-sony {
  position: absolute !important;
  top: 24px !important;
  right: 24px !important;
  z-index: 120 !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  color: #fff !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 24px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  letter-spacing: 2px !important;
}

html body.home-page .home-main {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding-top: 116px !important;
}

html body.home-page .home-hero {
  height: 660px !important;
  min-height: 0 !important;
  max-height: 660px !important;
  margin: 0 !important;
}

html body.home-page .home-header {
  top: 146px !important;
  left: 50% !important;
  width: 960px !important;
  max-width: calc(100vw - 112px) !important;
  transform: translateX(-50%) !important;
  gap: 72px !important;
  padding: 0 !important;
  min-height: 0 !important;
}

html body.home-page .home-logo {
  width: 126px !important;
  flex: 0 0 126px !important;
  font-size: 13px !important;
  gap: 8px !important;
}

html body.home-page .home-logo .dot-mark,
html body.home-page .dot-mark {
  width: 94px !important;
  height: 94px !important;
  min-width: 94px !important;
  min-height: 94px !important;
  max-width: 94px !important;
  max-height: 94px !important;
  background-image: radial-gradient(circle, #e51b23 2.35px, transparent 3.05px) !important;
  background-size: 8.8px 8.8px !important;
}

html body.home-page .home-nav,
html body.home-page .home-header .nav {
  padding-top: 60px !important;
  gap: 46px !important;
  font-size: 19px !important;
}

html body.home-page .home-nav a,
html body.home-page .home-nav button,
html body.home-page .home-header .nav a,
html body.home-page .home-header .nav button {
  font-size: 19px !important;
  padding: 0 !important;
  min-height: 0 !important;
}

html body.home-page .hero-slide h1,
html body.home-page .home-main h1 {
  top: 285px !important;
  left: max(290px, calc((100vw - 960px) / 2 + 185px)) !important;
  font-size: 34px !important;
  font-weight: 400 !important;
}

html body.home-page .label-showcase {
  padding-top: 34px !important;
}

/* The standalone question-mark control is intentionally not used. */
.cookie-button {
  display: none !important;
}

/* Final mobile contract. Keep this block last so legacy desktop overrides cannot win on phones. */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

img,
video,
iframe {
  max-width: 100%;
}

@media (max-width: 860px) {
  :where(main, section, article, aside, div, nav, form) {
    min-width: 0;
  }

  :where(h1, h2, h3, h4, p, li, a, button, label, dd, dt) {
    overflow-wrap: anywhere;
  }

  main h1 {
    font-size: clamp(27px, 7.2vw, 34px) !important;
    line-height: 1.06 !important;
  }

  main h2 {
    font-size: clamp(22px, 6vw, 28px) !important;
    line-height: 1.1 !important;
  }

  main h3 {
    font-size: clamp(18px, 5.2vw, 22px) !important;
    line-height: 1.18 !important;
  }

  main p,
  main li,
  main label,
  main input,
  main select,
  main textarea {
    font-size: 16px !important;
    line-height: 1.45 !important;
  }

  body:not(.home-page):not(.chat-admin-page)::before {
    content: "SONY" !important;
    position: absolute !important;
    top: 15px !important;
    right: 16px !important;
    z-index: 120 !important;
    display: block !important;
    visibility: visible !important;
    color: #fff !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 20px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    letter-spacing: 1px !important;
  }

  .site-header,
  body:has(.sony-news-page) .site-header,
  body.sony-subpage .site-header {
    position: relative !important;
    z-index: 90 !important;
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    min-height: 82px !important;
    height: 82px !important;
    margin: 0 !important;
    padding: 17px 14px 7px !important;
    border: 0 !important;
    background: #000 !important;
  }

  .site-header .brand,
  body:has(.sony-news-page) .site-header .brand,
  body.sony-subpage .site-header .brand {
    display: grid !important;
    flex: 0 0 74px !important;
    width: 74px !important;
    min-width: 74px !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 4px !important;
    color: #fff !important;
    font-size: 10px !important;
    line-height: 1 !important;
    letter-spacing: 1px !important;
    text-align: center !important;
  }

  .site-header .brand::before,
  body:has(.sony-news-page) .site-header .brand::before,
  body.sony-subpage .site-header .brand::before {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;
    margin: 0 auto !important;
    background-image: radial-gradient(circle, #e51b23 1.55px, transparent 2px) !important;
    background-size: 5.6px 5.6px !important;
  }

  .menu-toggle,
  body:has(.sony-news-page) .menu-toggle,
  body.sony-subpage .menu-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    min-width: 68px !important;
    min-height: 38px !important;
    margin: 5px 0 0 auto !important;
    padding: 7px 12px !important;
    border: 1px solid #777 !important;
    border-radius: 0 !important;
    color: #fff !important;
    background: rgba(0, 0, 0, .7) !important;
    font-size: 14px !important;
    line-height: 1 !important;
  }

  .nav,
  body:has(.sony-news-page) .nav,
  body.sony-subpage .nav {
    position: absolute !important;
    top: 82px !important;
    right: 10px !important;
    left: 10px !important;
    z-index: 200 !important;
    display: none !important;
    flex-direction: column !important;
    align-items: stretch !important;
    width: auto !important;
    max-width: none !important;
    max-height: calc(100dvh - 92px) !important;
    margin: 0 !important;
    padding: 8px !important;
    gap: 0 !important;
    overflow-y: auto !important;
    border: 1px solid #333 !important;
    background: #050505 !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .42) !important;
  }

  .nav.open,
  body:has(.sony-news-page) .nav.open,
  body.sony-subpage .nav.open {
    display: flex !important;
  }

  .nav > a,
  .nav-item > button,
  body:has(.sony-news-page) .nav > a,
  body:has(.sony-news-page) .nav-item > button,
  body.sony-subpage .nav > a,
  body.sony-subpage .nav-item > button {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    min-height: 40px !important;
    margin: 0 !important;
    padding: 9px 11px !important;
    border: 0 !important;
    color: #fff !important;
    background: transparent !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 1.2 !important;
    text-align: left !important;
  }

  .nav-item {
    width: 100% !important;
  }

  .nav-item > button::after {
    content: "+";
    margin-left: auto;
    color: #aaa;
    font-size: 19px;
  }

  .nav-item.submenu-open > button::after {
    content: "-";
  }

  .nav-item > .dropdown,
  .nav-item:hover > .dropdown,
  .nav-item:focus-within > .dropdown,
  body:has(.sony-news-page) .nav-item > .dropdown,
  body.sony-subpage .nav-item > .dropdown {
    position: static !important;
    display: none !important;
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 4px !important;
    border: 0 !important;
    background: #333 !important;
    box-shadow: none !important;
  }

  .nav-item.submenu-open > .dropdown,
  .nav-item.submenu-open:hover > .dropdown,
  .nav-item.submenu-open:focus-within > .dropdown {
    display: block !important;
  }

  .dropdown a,
  body:has(.sony-news-page) .dropdown a,
  body.sony-subpage .dropdown a {
    display: block !important;
    width: 100% !important;
    min-height: 38px !important;
    padding: 8px 10px !important;
    color: #fff !important;
    font-size: 15px !important;
    line-height: 1.25 !important;
  }

  .sony-page-shell,
  .sony-news-page,
  .careers-page,
  .career-role-page,
  .chat-admin-main {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 24px 15px 44px !important;
  }

  .sony-page-shell.two-col,
  .sony-news-layout,
  .article-detail-layout,
  .career-role-detail,
  .career-application-form,
  .chat-admin-shell,
  .chat-admin-reply {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .sony-news-layout,
  .article-detail-layout {
    display: grid !important;
    width: 100% !important;
    max-width: none !important;
    gap: 34px !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .sony-news-layout > *,
  .sony-feed-item > *,
  .sony-article-detail,
  .news-sidebar {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .sony-feed-item {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 10px !important;
    margin-bottom: 34px !important;
  }

  .sony-feed-item h2,
  .sony-article-detail h2,
  .news-list h3,
  .compact-news h3 {
    font-size: clamp(18px, 5.4vw, 23px) !important;
    line-height: 1.14 !important;
  }

  .sony-feed-item img,
  .sony-article-detail > img,
  .article-hero-image {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }

  .faq-callout,
  .news-sidebar .faq-callout,
  .home-faq-card {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .faq-callout h2,
  .faq-callout h3,
  .home-faq-card h2 {
    padding: 22px 18px !important;
    font-size: 24px !important;
    line-height: 1.22 !important;
  }

  .faq-callout p,
  .faq-callout ul,
  .home-faq-card > div {
    margin: 0 !important;
    padding-right: 20px !important;
    padding-left: 20px !important;
    font-size: 16px !important;
  }

  .faq-callout > a,
  .news-sidebar .faq-callout > a,
  .home-faq-card > a {
    position: static !important;
    display: block !important;
    width: 100% !important;
    min-height: 46px !important;
    margin-top: 18px !important;
    padding: 12px 16px !important;
    font-size: 17px !important;
    text-align: center !important;
  }

  .italian-video-frame,
  .featured-video-mini .italian-video-frame,
  .sony-video-embed {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 0 !important;
    aspect-ratio: 16 / 9 !important;
    overflow: hidden !important;
    background: #000 !important;
  }

  .italian-video-frame iframe,
  .featured-video-mini iframe,
  .sony-video-embed iframe {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    border: 0 !important;
  }

  .label-logo-grid,
  .sony-card-grid.three,
  .sony-card-grid.two,
  .artist-job-board {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .label-logo-grid .sony-logo-card,
  .label-logo-grid .sony-logo-card > a {
    width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    min-height: 170px !important;
  }

  .label-logo-grid .sony-logo-card > a {
    display: grid !important;
    grid-template-rows: 126px auto !important;
  }

  .label-logo-grid .sony-logo-card > a > div {
    height: 126px !important;
    min-height: 126px !important;
    padding: 18px !important;
  }

  .label-logo-grid .sony-logo-card img {
    max-width: 82% !important;
    max-height: 76px !important;
  }

  .label-logo-grid .sony-logo-card strong {
    min-height: 44px !important;
    padding: 10px 7px !important;
    font-size: 12px !important;
  }

  .sony-footer .back-top,
  .sony-footer .sony-back-top {
    min-height: 52px !important;
    padding: 0 16px !important;
    font-size: 15px !important;
  }

  .sony-footer-body {
    padding: 28px 16px 34px !important;
  }

  .sony-footer-socials {
    gap: 20px !important;
    margin: 0 0 26px !important;
  }

  .sony-footer-socials a,
  .sony-footer-socials svg {
    width: 25px !important;
    height: 25px !important;
    min-width: 25px !important;
    min-height: 25px !important;
  }

  .sony-footer-inner {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: end !important;
    gap: 20px !important;
  }

  .footer-actions {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 5px !important;
  }

  .footer-actions a {
    min-height: 36px !important;
    padding: 9px 10px !important;
    font-size: 11px !important;
  }

  .sony-footer-copy p {
    font-size: 11px !important;
    line-height: 1.25 !important;
  }

  .work-badge {
    width: 68px !important;
    min-width: 68px !important;
    font-size: 13px !important;
  }

  .work-badge-red,
  .work-badge-blue {
    padding: 6px !important;
  }

  .work-badge-blue small {
    font-size: 6px !important;
  }

  .live-chat {
    right: 10px !important;
    bottom: 10px !important;
    left: auto !important;
    z-index: 500 !important;
    width: auto !important;
    max-width: calc(100vw - 20px) !important;
  }

  .live-chat-toggle {
    width: auto !important;
    min-width: 0 !important;
    min-height: 40px !important;
    padding: 8px 12px !important;
    border-width: 1px !important;
    font-size: 13px !important;
  }

  .live-chat-panel {
    right: 0 !important;
    bottom: 52px !important;
    width: min(360px, calc(100vw - 20px)) !important;
    max-width: calc(100vw - 20px) !important;
    max-height: calc(100dvh - 74px) !important;
    overflow-y: auto !important;
  }

  .live-chat-messages {
    max-height: 34dvh !important;
  }

  .career-board-section,
  .career-role-detail,
  .career-apply-section,
  .chat-admin-main {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .career-job-card,
  .career-contact-card,
  .career-role-copy,
  .role-requirements,
  .career-application-form,
  .chat-admin-detail,
  .chat-admin-reply {
    width: 100% !important;
    min-width: 0 !important;
    padding: 20px !important;
  }

  .chat-admin-shell {
    display: grid !important;
    gap: 18px !important;
  }
}

@media (max-width: 420px) {
  .label-logo-grid,
  .sony-card-grid.three,
  .sony-card-grid.two,
  .artist-job-board {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .sony-footer-inner {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .work-badge {
    justify-self: end !important;
  }
}

/* Small-phone refinements shared by every content page. */
@media (max-width: 600px) {
  body {
    width: 100% !important;
    overflow-x: hidden !important;
  }

  [data-include="header"],
  [data-include="footer"] {
    width: 100% !important;
  }

  .site-header,
  body:has(.sony-news-page) .site-header,
  body.sony-subpage .site-header {
    height: 78px !important;
    min-height: 78px !important;
    padding: 14px 12px 6px !important;
  }

  .site-header .brand,
  body:has(.sony-news-page) .site-header .brand,
  body.sony-subpage .site-header .brand {
    width: 68px !important;
    min-width: 68px !important;
    flex-basis: 68px !important;
    font-size: 9px !important;
  }

  .site-header .brand::before,
  body:has(.sony-news-page) .site-header .brand::before,
  body.sony-subpage .site-header .brand::before {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
  }

  .menu-toggle,
  body:has(.sony-news-page) .menu-toggle,
  body.sony-subpage .menu-toggle {
    min-width: 64px !important;
    min-height: 36px !important;
    margin-top: 3px !important;
    padding: 6px 10px !important;
    font-size: 13px !important;
  }

  .nav,
  body:has(.sony-news-page) .nav,
  body.sony-subpage .nav {
    top: 78px !important;
    right: 8px !important;
    left: 8px !important;
    max-height: calc(100dvh - 86px) !important;
    padding: 6px !important;
  }

  .nav > a,
  .nav-item > button,
  .dropdown a {
    min-height: 38px !important;
    padding: 8px 10px !important;
    font-size: 14px !important;
  }

  .sony-page-shell,
  .sony-news-page,
  .careers-page,
  .career-role-page,
  .chat-admin-main {
    padding: 22px 14px 38px !important;
  }

  .sony-feed-item h2,
  .sony-article-detail h2,
  .news-list h3,
  .compact-news h3 {
    font-size: clamp(18px, 5.5vw, 22px) !important;
    line-height: 1.16 !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
  }

  .sony-feed-item p,
  .sony-article-detail p,
  .news-list p,
  .compact-news p {
    font-size: 15px !important;
    line-height: 1.42 !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
  }

  .faq-callout h2,
  .faq-callout h3,
  .home-faq-card h2 {
    padding: 18px 14px !important;
    font-size: 21px !important;
  }

  .label-logo-grid .sony-logo-card > a {
    grid-template-rows: 106px auto !important;
    min-height: 150px !important;
  }

  .label-logo-grid .sony-logo-card > a > div {
    height: 106px !important;
    min-height: 106px !important;
    padding: 14px !important;
  }

  .sony-footer-body {
    padding: 24px 14px 28px !important;
  }

  .sony-footer-socials {
    gap: 18px !important;
    margin-bottom: 22px !important;
  }

  .sony-footer-inner {
    grid-template-columns: minmax(0, 1fr) 58px !important;
    align-items: end !important;
    gap: 12px !important;
  }

  .footer-actions {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    width: min(100%, 300px) !important;
  }

  .footer-actions a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 0 !important;
    padding: 8px 5px !important;
    font-size: 10px !important;
    text-align: center !important;
  }

  .sony-footer-copy p {
    margin: 9px 0 0 !important;
    font-size: 10px !important;
    line-height: 1.3 !important;
  }

  .work-badge {
    width: 58px !important;
    min-width: 58px !important;
    font-size: 11px !important;
  }
}

/* Authoritative responsive shell. This remains last to override legacy experiments. */
@media (max-width: 860px) {
  body:not(.home-page):not(.chat-admin-page)::before {
    top: 14px !important;
    right: 14px !important;
    font-size: 19px !important;
  }

  .site-header,
  body:has(.sony-news-page) .site-header,
  body.sony-subpage .site-header {
    height: 124px !important;
    min-height: 124px !important;
    padding: 54px 14px 8px !important;
    gap: 10px !important;
  }

  .site-header .brand,
  body:has(.sony-news-page) .site-header .brand,
  body.sony-subpage .site-header .brand {
    flex: 0 0 70px !important;
    width: 70px !important;
    min-width: 70px !important;
    font-size: 9px !important;
  }

  .site-header .brand::before,
  body:has(.sony-news-page) .site-header .brand::before,
  body.sony-subpage .site-header .brand::before {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    min-height: 46px !important;
  }

  .menu-toggle,
  body:has(.sony-news-page) .menu-toggle,
  body.sony-subpage .menu-toggle {
    min-width: 64px !important;
    min-height: 36px !important;
    margin: 7px 0 0 auto !important;
    padding: 7px 10px !important;
    font-size: 13px !important;
  }

  .nav,
  body:has(.sony-news-page) .nav,
  body.sony-subpage .nav {
    top: 116px !important;
    right: 12px !important;
    left: auto !important;
    width: min(280px, calc(100vw - 24px)) !important;
    max-height: calc(100dvh - 128px) !important;
    padding: 6px !important;
  }

  .nav > a,
  .nav-item > button,
  .dropdown a,
  body:has(.sony-news-page) .nav > a,
  body:has(.sony-news-page) .nav-item > button,
  body.sony-subpage .nav > a,
  body.sony-subpage .nav-item > button {
    min-height: 38px !important;
    padding: 8px 10px !important;
    font-size: 14px !important;
    line-height: 1.25 !important;
  }

  .sony-news-layout,
  .article-detail-layout,
  .home-news-layout {
    overflow: visible !important;
  }

  .sony-feed-item h2,
  .sony-article-detail h2,
  .news-list h3,
  .compact-news h3 {
    max-width: 100% !important;
    white-space: normal !important;
    word-break: break-word !important;
    overflow-wrap: anywhere !important;
  }

  .sony-video-tile,
  .featured-video-mini,
  .italian-video-frame,
  .sony-video-embed {
    max-width: 100% !important;
  }

  .live-chat {
    right: max(8px, env(safe-area-inset-right)) !important;
    bottom: max(8px, env(safe-area-inset-bottom)) !important;
  }

  .live-chat-toggle {
    min-height: 38px !important;
    padding: 7px 11px !important;
    font-size: 12px !important;
  }
}

@media (max-width: 480px) {
  .sony-page-shell,
  .sony-news-page,
  .careers-page,
  .career-role-page,
  .chat-admin-main {
    padding: 20px 13px 34px !important;
  }

  main h1 {
    font-size: clamp(25px, 8vw, 31px) !important;
  }

  .label-logo-grid,
  .sony-card-grid.three,
  .sony-card-grid.two,
  .artist-job-board {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .sony-footer-body {
    padding: 22px 13px 78px !important;
  }

  .sony-footer-socials {
    gap: 18px !important;
    margin-bottom: 20px !important;
  }

  .sony-footer-inner {
    grid-template-columns: minmax(0, 1fr) 54px !important;
    gap: 10px !important;
  }

  .footer-actions {
    width: 100% !important;
    max-width: 268px !important;
  }

  .sony-footer-copy p {
    font-size: 9px !important;
    line-height: 1.28 !important;
  }

  .work-badge {
    width: 54px !important;
    min-width: 54px !important;
  }
}
