:root {
  --navy: #07142f;
  --navy-2: #0d2047;
  --purple: #5137a9;
  --gold: #e5b93f;
  --paper: #f4f1e9;
  --white: #ffffff;
  --ink: #10192d;
  --muted: #687085;
  --line: #d9dce3;
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Noto Sans JP", "Yu Gothic", Meiryo, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

a,
button,
summary {
  touch-action: manipulation;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
}

.skip-link:focus {
  opacity: 1;
  pointer-events: auto;
}

.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  display: grid;
  height: 92px;
  grid-template-columns: auto 1fr;
  align-items: center;
  padding: 0 var(--gutter);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  position: fixed;
  height: 76px;
  border-color: transparent;
  background: rgba(7, 20, 47, 0.96);
  box-shadow: 0 12px 32px rgba(7, 20, 47, 0.18);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  width: 126px;
  min-height: 56px;
  align-items: center;
  padding: 5px 11px;
  background: var(--white);
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
}

.brand img {
  width: 96px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(24px, 3vw, 48px);
}

.main-nav__list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(24px, 3vw, 48px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav__list > li {
  position: relative;
}

.main-nav__list .sub-menu {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 2;
  display: grid;
  min-width: 220px;
  margin: 0;
  padding: 8px;
  border-top: 3px solid var(--gold);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(7, 20, 47, 0.28);
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    visibility 160ms;
  visibility: hidden;
}

.main-nav__list li:hover > .sub-menu,
.main-nav__list li:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.main-nav__list .sub-menu a {
  width: 100%;
  min-height: 44px;
  padding: 8px 12px;
  color: var(--navy);
  font-family: var(--body);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
}

.main-nav__list .sub-menu a::after {
  display: none;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 160ms ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-nav a.is-current::after {
  transform: scaleX(1);
}

.main-nav__list .current-menu-item > a::after,
.main-nav__list .current-menu-ancestor > a::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
}

body.logged-in .main-nav {
  gap: clamp(12px, 1.8vw, 28px);
}

.main-nav a.member-nav-link {
  color: var(--gold);
  font-family: var(--body);
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: none;
}

.main-nav a.member-nav-link--admin {
  padding-inline: 12px;
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.main-nav a.member-nav-link--logout {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
}

.member-menu {
  position: relative;
  display: flex;
  align-items: center;
}

.member-menu__toggle {
  display: grid;
  min-height: 48px;
  grid-template-columns: auto auto;
  align-content: center;
  align-items: center;
  gap: 0 10px;
  padding: 5px 34px 5px 16px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
  cursor: pointer;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
  transition:
    border-color 160ms ease,
    background-color 160ms ease;
}

.member-menu__toggle:hover,
.member-menu__toggle:focus-visible,
.member-menu.is-open .member-menu__toggle {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.15);
}

.member-menu__toggle small {
  max-width: 112px;
  overflow: hidden;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  opacity: 0.78;
  text-overflow: ellipsis;
  text-transform: none;
  white-space: nowrap;
}

.member-menu__toggle i {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-70%) rotate(45deg);
  transition: transform 160ms ease;
}

.member-menu.is-open .member-menu__toggle i {
  transform: translateY(-20%) rotate(225deg);
}

.member-menu__panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(290px, calc(100vw - 32px));
  padding: 10px;
  border-top: 3px solid var(--gold);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(7, 20, 47, 0.28);
  color: var(--navy);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    visibility 160ms;
  visibility: hidden;
}

.member-menu.is-open .member-menu__panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.member-menu__list {
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.member-menu__list .sub-menu {
  margin: 0;
  padding: 0 0 0 14px;
  list-style: none;
}

.main-nav .member-menu__panel a {
  display: flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  padding: 9px 12px;
  border: 0;
  color: var(--navy);
  font-family: var(--body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  transition:
    background-color 160ms ease,
    color 160ms ease;
}

.main-nav .member-menu__panel a::after {
  display: none;
}

.main-nav .member-menu__panel a:hover,
.main-nav .member-menu__panel a:focus-visible {
  background: rgba(75, 28, 135, 0.08);
  color: var(--purple);
}

.main-nav .member-menu__logout {
  margin-top: 8px;
  border-top: 1px solid rgba(7, 20, 47, 0.12);
  color: var(--purple);
}

.hero {
  position: relative;
  min-height: min(860px, 92vh);
  isolation: isolate;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.hero__media,
.hero__shade,
.hero__rule {
  position: absolute;
  inset: 0;
}

.hero__media {
  z-index: -3;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.hero__shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 20, 47, 0.88) 0%, rgba(7, 20, 47, 0.22) 67%),
    linear-gradient(0deg, rgba(7, 20, 47, 0.72), transparent 52%);
}

.hero__rule {
  z-index: -1;
  opacity: 0.22;
  background-image: linear-gradient(
    90deg,
    transparent calc(50% - 0.5px),
    rgba(255, 255, 255, 0.28) calc(50% - 0.5px),
    rgba(255, 255, 255, 0.28) calc(50% + 0.5px),
    transparent calc(50% + 0.5px)
  );
  background-size: 25% 100%;
}

.hero__content {
  position: absolute;
  bottom: clamp(78px, 11vh, 124px);
  left: var(--gutter);
  width: min(820px, calc(100% - var(--gutter) * 2));
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--purple);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 3px;
  background: currentColor;
  content: "";
}

.eyebrow--gold {
  color: var(--gold);
}

.hero h1 {
  margin: 16px 0 0;
  font-family: var(--display);
  font-size: clamp(92px, 15.2vw, 218px);
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.7;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
}

.hero h1 span:last-child {
  margin-left: clamp(44px, 8vw, 124px);
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
}

.hero__jp {
  max-width: 420px;
  margin: 36px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.hero__index {
  position: absolute;
  right: var(--gutter);
  bottom: 74px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  font-family: var(--display);
}

.hero__index span {
  padding-bottom: 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  writing-mode: vertical-rl;
}

.hero__index strong {
  font-size: 86px;
  font-weight: 600;
  line-height: 0.8;
}

.quick-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--gold);
}

.quick-nav > a {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 150px;
  grid-template-columns: auto minmax(0, 1fr) 25px;
  gap: 18px;
  align-items: center;
  padding: 30px clamp(20px, 2.6vw, 42px);
  border-right: 1px solid rgba(7, 20, 47, 0.22);
  transition:
    background-color 150ms ease,
    color 150ms ease;
}

.quick-nav > a:last-child {
  border-right: 0;
}

.quick-nav > a:hover {
  background: var(--navy);
  color: var(--white);
}

.quick-nav__number {
  align-self: start;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
}

.quick-nav strong,
.quick-nav small {
  display: block;
}

.quick-nav strong {
  font-family: var(--display);
  font-size: clamp(23px, 2.1vw, 32px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.quick-nav small {
  margin-top: 10px;
  font-size: 11px;
  font-weight: 600;
}

.quick-nav svg,
.location svg,
.video__copy svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 1.7;
}

.section {
  padding: clamp(92px, 12vw, 160px) var(--gutter);
}

.section-heading {
  width: min(100%, var(--container));
  margin: 0 auto clamp(58px, 7vw, 92px);
}

.section-heading h2,
.video__copy h2 {
  margin: 12px 0 0;
  font-family: var(--display);
  font-size: clamp(48px, 7.5vw, 94px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.schedule-section {
  background: var(--paper);
}

.section-heading--schedule {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.section-heading--schedule > a {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  gap: 14px;
  border-bottom: 2px solid var(--ink);
  font-size: 13px;
  font-weight: 700;
  transition:
    background-color 150ms ease,
    color 150ms ease;
}

.section-heading--schedule > a:hover {
  background: var(--ink);
  color: var(--white);
}

.section-heading--schedule svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.schedule-list {
  width: min(100%, var(--container));
  border-top: 2px solid var(--ink);
  margin: 0 auto;
}

.schedule-item {
  position: relative;
  display: grid;
  min-height: 148px;
  grid-template-columns: minmax(160px, 0.7fr) repeat(3, minmax(150px, 1fr)) 54px;
  gap: clamp(20px, 3vw, 48px);
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #bfc3cc;
  overflow: hidden;
  transition:
    background-color 150ms ease,
    color 150ms ease,
    padding 150ms ease;
}

.schedule-item:hover {
  padding-right: 24px;
  padding-left: 24px;
  background: var(--navy);
  color: var(--white);
}

.schedule-item__date {
  display: flex;
  align-items: baseline;
  color: var(--purple);
  font-family: var(--display);
  line-height: 1;
}

.schedule-item:hover .schedule-item__date {
  color: var(--gold);
}

.schedule-item__date span {
  align-self: flex-start;
  padding-top: 10px;
  font-size: 20px;
  font-weight: 800;
}

.schedule-item__date span::after {
  margin: 0 7px;
  content: "/";
}

.schedule-item__date strong {
  font-size: clamp(62px, 6vw, 82px);
  font-weight: 800;
  letter-spacing: -0.06em;
}

.schedule-item__date small {
  margin-left: 8px;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 800;
}

.schedule-item__detail span,
.schedule-item__detail strong {
  display: block;
}

.schedule-item__detail span {
  color: var(--muted);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.schedule-item:hover .schedule-item__detail span {
  color: rgba(255, 255, 255, 0.55);
}

.schedule-item__detail strong {
  margin-top: 7px;
  font-size: clamp(16px, 1.6vw, 21px);
}

.schedule-item__number {
  color: var(--gold);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  text-align: right;
}

.about__layout {
  display: grid;
  width: min(100%, var(--container));
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(54px, 8vw, 118px);
  align-items: center;
  margin: 0 auto;
}

.about__copy {
  border-top: 2px solid var(--ink);
}

.fact {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 22px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.fact__number {
  color: var(--purple);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 800;
}

.fact h3 {
  margin: 0 0 9px;
  font-size: 19px;
}

.fact p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.about__photo {
  position: relative;
  margin: 0;
}

.about__photo::before {
  position: absolute;
  top: 28px;
  right: -28px;
  bottom: -28px;
  left: 28px;
  z-index: -1;
  border: 2px solid var(--purple);
  content: "";
}

.about__photo img {
  width: 100%;
  height: clamp(480px, 52vw, 680px);
  object-fit: cover;
}

.about__photo figcaption {
  position: absolute;
  right: -1px;
  bottom: -1px;
  padding: 17px 26px;
  background: var(--gold);
  font-size: 15px;
  font-weight: 800;
}

.locations {
  position: relative;
  background: var(--navy);
  color: var(--white);
}

.locations::before {
  position: absolute;
  top: 0;
  right: 9%;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  content: "";
}

.section-heading--light h2 {
  color: var(--white);
}

.section-heading__lead {
  max-width: 700px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 14px;
}

.location-list {
  width: min(100%, var(--container));
  border-top: 1px solid rgba(255, 255, 255, 0.26);
  margin: 0 auto;
}

.location {
  display: grid;
  min-height: 170px;
  grid-template-columns: 54px minmax(260px, 1.2fr) minmax(240px, 1fr) 90px;
  gap: clamp(18px, 3vw, 44px);
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition:
    background-color 150ms ease,
    color 150ms ease;
}

.location:hover {
  background: var(--gold);
  color: var(--navy);
}

.location__number {
  color: var(--gold);
  font-family: var(--display);
  font-size: 16px;
  font-weight: 800;
}

.location:hover .location__number {
  color: var(--navy);
}

.location h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(18px, 2vw, 24px);
}

.location:hover h3 {
  color: var(--navy);
}

.location p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.location:hover p {
  color: rgba(7, 20, 47, 0.68);
}

.location ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.location li {
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.27);
  font-size: 10px;
}

.location:hover li {
  border-color: rgba(7, 20, 47, 0.24);
}

.location > a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.locations__note {
  width: min(100%, var(--container));
  padding-left: 54px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.locations__note a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.video {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(54px, 8vw, 112px);
  align-items: center;
  background: var(--paper);
}

.video__copy {
  max-width: 430px;
  justify-self: end;
}

.video__copy h2 {
  font-size: clamp(45px, 6vw, 78px);
}

.video__copy > a {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 15px;
  padding: 12px 20px;
  border-bottom: 2px solid var(--ink);
  margin-top: 38px;
  font-size: 13px;
  font-weight: 700;
  transition:
    background-color 150ms ease,
    color 150ms ease;
}

.video__copy > a:hover {
  background: var(--ink);
  color: var(--white);
}

.video__frame {
  position: relative;
  border: 12px solid var(--white);
  box-shadow: 30px 30px 0 var(--purple);
  aspect-ratio: 16 / 9;
}

.video__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.journal {
  background: var(--white);
}

.section-heading--journal {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}

.section-heading--journal > a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  border-bottom: 2px solid var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.journal-grid {
  display: grid;
  width: min(100%, var(--container));
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 20px;
  margin: 0 auto;
}

.story {
  position: relative;
  display: flex;
  min-height: 560px;
  flex-direction: column;
  padding: 26px;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
  isolation: isolate;
}

.story::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(7, 20, 47, 0.96), transparent 76%);
  content: "";
}

.story img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.story:hover img {
  transform: scale(1.035);
}

.story__date {
  align-self: flex-start;
  padding: 5px 9px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
}

.story h3 {
  margin: auto 0 22px;
  color: var(--white);
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.55;
}

.story__more {
  color: var(--gold);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story--lead {
  min-height: 630px;
  transform: translateY(-30px);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 54px var(--gutter);
  background: var(--navy);
  color: rgba(255, 255, 255, 0.65);
}

.site-footer img {
  width: 120px;
  padding: 9px;
  background: var(--white);
}

.site-footer > div {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 11px;
}

.site-footer p {
  margin: 0;
}

.site-footer a:hover {
  color: var(--gold);
}

.site-header--sub {
  background: var(--navy);
}

.page-hero {
  position: relative;
  display: flex;
  min-height: 600px;
  align-items: flex-end;
  padding: 180px var(--gutter) 86px;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
  isolation: isolate;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.24;
  background-image: linear-gradient(
    90deg,
    transparent calc(50% - 0.5px),
    rgba(255, 255, 255, 0.28) calc(50% - 0.5px),
    rgba(255, 255, 255, 0.28) calc(50% + 0.5px),
    transparent calc(50% + 0.5px)
  );
  background-size: 25% 100%;
  content: "";
}

.page-hero--schedule {
  background:
    linear-gradient(115deg, rgba(7, 20, 47, 0.94) 0 55%, rgba(81, 55, 169, 0.9)),
    url("https://www.ibaraki-stars.com/wp-content/uploads/2025/12/1000010031.webp") center 43% / cover;
}

.page-hero--score {
  background:
    linear-gradient(115deg, rgba(7, 20, 47, 0.94) 0 55%, rgba(81, 55, 169, 0.86)),
    url("https://www.ibaraki-stars.com/wp-content/uploads/2025/12/1000010031.webp") center 57% / cover;
}

.page-hero--about {
  min-height: 720px;
}

.page-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.page-hero__media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 20, 47, 0.92), rgba(7, 20, 47, 0.18) 72%),
    linear-gradient(0deg, rgba(7, 20, 47, 0.7), transparent 60%);
  content: "";
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.page-hero__copy {
  position: relative;
  z-index: 1;
  width: min(100%, var(--container));
  margin: 0 auto;
}

.page-hero h1 {
  margin: 16px 0 0;
  font-family: var(--display);
  font-size: clamp(92px, 14vw, 190px);
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.72;
  text-transform: uppercase;
}

.page-hero__copy > p:last-child {
  margin: 38px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.page-hero__number {
  position: absolute;
  right: var(--gutter);
  bottom: 52px;
  color: transparent;
  font-family: var(--display);
  font-size: clamp(130px, 18vw, 250px);
  font-style: italic;
  font-weight: 900;
  line-height: 0.8;
  -webkit-text-stroke: 2px rgba(229, 185, 63, 0.6);
}

.schedule-section--page {
  background: var(--white);
}

.page-section-note {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.page-cta {
  padding: clamp(90px, 12vw, 150px) var(--gutter);
  background: var(--purple);
  color: var(--white);
}

.page-cta > * {
  width: min(100%, var(--container));
  margin-right: auto;
  margin-left: auto;
}

.page-cta h2 {
  margin-top: 22px;
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(54px, 8vw, 108px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.page-cta > p:not(.eyebrow) {
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.page-cta > a {
  display: flex;
  width: min(100%, var(--container));
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  margin-top: 50px;
  font-size: 15px;
  font-weight: 800;
  transition:
    background-color 150ms ease,
    color 150ms ease;
}

.page-cta > a:hover {
  background: var(--gold);
  color: var(--navy);
}

.profile__grid {
  display: grid;
  width: min(100%, var(--container));
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(50px, 9vw, 130px);
  margin: 0 auto;
}

.profile__lead {
  margin: 0;
  font-size: clamp(29px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.45;
}

.profile__body {
  padding-top: 8px;
  border-top: 2px solid var(--ink);
}

.profile__body p {
  margin: 0;
  color: var(--muted);
  line-height: 2.1;
}

.profile__body p + p {
  margin-top: 24px;
}

.results {
  background: var(--navy);
  color: var(--white);
}

.result-years {
  width: min(100%, var(--container));
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin: 0 auto;
}

.result-years article {
  display: grid;
  min-height: 130px;
  grid-template-columns: minmax(160px, 0.32fr) 1fr;
  gap: 40px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.result-years article > strong {
  color: var(--gold);
  font-family: var(--display);
  font-size: clamp(48px, 5.5vw, 76px);
  font-weight: 700;
  line-height: 1;
}

.result-years ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.result-years li {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.result-years li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 2px;
  background: var(--gold);
  content: "";
}

.result-years li + li {
  margin-top: 10px;
}

.ground-cards {
  display: grid;
  width: min(100%, var(--container));
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 0 auto;
}

.ground-cards a {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: clamp(28px, 4vw, 54px);
  background: var(--paper);
  transition:
    background-color 150ms ease,
    color 150ms ease;
}

.ground-cards a:hover {
  background: var(--gold);
}

.ground-cards span {
  color: var(--purple);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 800;
}

.ground-cards h3 {
  max-width: 420px;
  margin: auto 0;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.4;
}

.ground-cards strong {
  align-self: flex-end;
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.score-summary {
  display: grid;
  grid-template-columns: 1.45fr repeat(4, 1fr);
  background: var(--gold);
}

.score-summary > div {
  display: flex;
  min-height: 160px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(20px, 3vw, 44px);
  border-right: 1px solid rgba(7, 20, 47, 0.22);
}

.score-summary > div:last-child {
  border-right: 0;
}

.score-summary span {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.score-summary strong {
  font-family: var(--display);
  font-size: clamp(48px, 5.5vw, 78px);
  line-height: 1;
}

.score-summary .is-win {
  background: var(--purple);
  color: var(--white);
}

.score-summary .is-loss {
  background: var(--navy);
  color: var(--white);
}

.score-section {
  background: var(--paper);
}

.section-heading--score {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.score-list {
  width: min(100%, var(--container));
  border-top: 2px solid var(--ink);
  margin: 0 auto;
}

.game-card {
  border-bottom: 1px solid #bfc3cc;
}

.game-card summary {
  display: grid;
  min-height: 150px;
  grid-template-columns: 90px minmax(130px, 0.42fr) minmax(0, 1fr) 42px;
  gap: clamp(20px, 3vw, 48px);
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
}

.game-card summary::-webkit-details-marker {
  display: none;
}

.game-card__result {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--white);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.game-card--win .game-card__result {
  background: var(--purple);
}

.game-card--draw .game-card__result {
  background: var(--gold);
  color: var(--ink);
}

.game-card__meta strong,
.game-card__meta small {
  display: block;
}

.game-card__meta strong {
  font-family: var(--display);
  font-size: 23px;
  letter-spacing: 0.02em;
}

.game-card__meta small {
  margin-top: 7px;
  color: var(--muted);
  font-size: 10px;
}

.game-card__teams {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 52px 22px 52px minmax(0, 1fr);
  gap: clamp(10px, 2vw, 30px);
  align-items: center;
  text-align: center;
}

.game-card__teams span {
  font-size: clamp(14px, 1.6vw, 19px);
  font-weight: 800;
}

.game-card__teams strong {
  font-family: var(--display);
  font-size: 52px;
  line-height: 1;
}

.game-card__teams i {
  color: var(--muted);
  font-family: var(--display);
  font-size: 24px;
  font-style: normal;
}

.game-card__toggle {
  position: relative;
  width: 38px;
  height: 38px;
  border: 1px solid var(--ink);
}

.game-card__toggle::before,
.game-card__toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: var(--ink);
  content: "";
  transform: translate(-50%, -50%);
}

.game-card__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 150ms ease;
}

.game-card[open] .game-card__toggle::after {
  transform: translate(-50%, -50%) rotate(0);
}

.game-card__detail {
  padding: 0 0 34px 138px;
}

.score-table-wrap {
  overflow-x: auto;
  background: var(--white);
}

.score-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-family: var(--display);
  text-align: center;
}

.score-table th,
.score-table td {
  min-width: 48px;
  padding: 13px 10px;
  border: 1px solid var(--line);
}

.score-table thead th {
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.score-table th:first-child {
  min-width: 180px;
  text-align: left;
}

.score-table tbody th {
  font-family: var(--body);
  font-size: 13px;
}

.score-table__total {
  background: var(--gold);
  font-size: 20px;
  font-weight: 800;
}

@media (max-width: 1000px) {
  .quick-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-nav > a:nth-child(2) {
    border-right: 0;
  }

  .quick-nav > a:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(7, 20, 47, 0.22);
  }

  .about__layout {
    grid-template-columns: 1fr;
  }

  .schedule-item {
    grid-template-columns: minmax(150px, 0.8fr) repeat(3, minmax(110px, 1fr));
  }

  .schedule-item__number {
    display: none;
  }

  .about__copy {
    order: 2;
  }

  .about__photo {
    order: 1;
    width: min(100%, 760px);
  }

  .location {
    grid-template-columns: 46px minmax(0, 1fr) 80px;
    padding: 30px 0;
  }

  .location ul {
    grid-column: 2;
  }

  .location > a {
    grid-row: 1 / span 2;
    grid-column: 3;
  }

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

  .video__copy {
    max-width: 700px;
    justify-self: start;
  }

  .journal-grid {
    grid-template-columns: 1fr 1fr;
  }

  .story--lead {
    grid-column: 1 / -1;
    min-height: 580px;
    transform: none;
  }

  .score-summary {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .score-summary > div {
    min-height: 130px;
    flex-direction: column;
    justify-content: center;
  }

  .game-card summary {
    grid-template-columns: 74px minmax(115px, 0.36fr) minmax(0, 1fr) 38px;
  }

  .game-card__detail {
    padding-left: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    height: 76px;
  }

  .site-header.is-scrolled {
    height: 70px;
    backdrop-filter: none;
  }

  .brand {
    width: 108px;
  }

  .brand img {
    width: 82px;
  }

  .menu-button {
    position: relative;
    z-index: 101;
    display: flex;
    min-width: 66px;
    min-height: 48px;
    align-items: center;
    justify-self: end;
    gap: 9px;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font-family: var(--display);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
  }

  .menu-button i,
  .menu-button i::before {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    content: "";
    transition: transform 160ms ease;
  }

  .menu-button i::before {
    transform: translateY(6px);
  }

  .menu-button[aria-expanded="true"] i {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] i::before {
    transform: rotate(-90deg);
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    padding: 100px var(--gutter) 50px;
    background: var(--navy);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 160ms ease,
      transform 160ms ease,
      visibility 0s linear 160ms;
    visibility: hidden;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
    visibility: visible;
  }

  .main-nav a {
    width: 100%;
    min-height: 66px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 28px;
  }

  .main-nav__list {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .main-nav__list > li {
    width: 100%;
  }

  .main-nav__list .sub-menu {
    position: static;
    display: grid;
    min-width: 0;
    padding: 0 0 8px 16px;
    border-top: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: none;
    transform: none;
    visibility: hidden;
  }

  .main-nav.is-open .main-nav__list .sub-menu {
    pointer-events: auto;
    visibility: visible;
  }

  .main-nav__list .sub-menu a {
    min-height: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 16px;
  }

  .main-nav a.member-nav-link {
    color: var(--gold);
    font-family: var(--body);
    font-size: 18px;
    letter-spacing: 0.02em;
  }

  .main-nav a.member-nav-link--admin {
    padding-inline: 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .main-nav a.member-nav-link--logout {
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
  }

  .member-menu {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .member-menu__toggle {
    width: 100%;
    min-height: 66px;
    grid-template-columns: auto 1fr;
    padding: 8px 38px 8px 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    background: transparent;
    font-size: 28px;
  }

  .member-menu__toggle:hover,
  .member-menu__toggle:focus-visible,
  .member-menu.is-open .member-menu__toggle {
    border-color: rgba(255, 255, 255, 0.16);
    background: transparent;
  }

  .member-menu__toggle small {
    max-width: none;
    justify-self: end;
    font-size: 12px;
  }

  .member-menu__toggle i {
    right: 8px;
  }

  .member-menu__panel {
    position: static;
    display: none;
    width: 100%;
    padding: 4px 0 12px 14px;
    border-top: 0;
    background: transparent;
    box-shadow: none;
    color: var(--white);
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none;
    visibility: visible;
  }

  .member-menu.is-open .member-menu__panel {
    display: block;
  }

  .main-nav .member-menu__panel a {
    min-height: 48px;
    padding: 8px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 15px;
  }

  .main-nav .member-menu__panel a:hover,
  .main-nav .member-menu__panel a:focus-visible {
    background: rgba(255, 255, 255, 0.08);
    color: var(--gold);
  }

  .main-nav .member-menu__logout {
    color: var(--gold);
  }

  .hero {
    min-height: 720px;
  }

  .hero__media img {
    object-position: 55% center;
  }

  .hero__shade {
    background:
      linear-gradient(0deg, rgba(7, 20, 47, 0.9), transparent 66%),
      linear-gradient(90deg, rgba(7, 20, 47, 0.38), transparent 70%);
  }

  .hero__rule {
    background-size: 50% 100%;
  }

  .hero__content {
    bottom: 62px;
  }

  .hero h1 {
    font-size: clamp(80px, 29vw, 114px);
    line-height: 0.75;
  }

  .hero h1 span:last-child {
    margin-left: 26px;
    -webkit-text-stroke-width: 1px;
  }

  .hero__jp {
    max-width: 300px;
    margin-top: 28px;
    font-size: 12px;
  }

  .hero__index {
    display: none;
  }

  .page-hero,
  .page-hero--about {
    min-height: 560px;
    padding-top: 140px;
    padding-bottom: 62px;
  }

  .page-hero::before {
    background-size: 50% 100%;
  }

  .page-hero h1 {
    font-size: clamp(76px, 25vw, 104px);
    line-height: 0.78;
  }

  .page-hero__copy > p:last-child {
    max-width: 250px;
    margin-top: 30px;
    font-size: 12px;
  }

  .page-hero__number {
    right: 18px;
    bottom: 40px;
    font-size: 120px;
    -webkit-text-stroke-width: 1px;
  }

  .quick-nav {
    grid-template-columns: 1fr;
  }

  .quick-nav > a {
    min-height: 116px;
    border-right: 0;
    border-bottom: 1px solid rgba(7, 20, 47, 0.22);
  }

  .quick-nav > a:last-child {
    border-bottom: 0;
  }

  .quick-nav strong {
    font-size: 27px;
  }

  .section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .section-heading {
    margin-bottom: 52px;
  }

  .section-heading--schedule {
    display: block;
  }

  .section-heading--score {
    display: block;
  }

  .section-heading--score .page-section-note,
  .section-heading--schedule .page-section-note {
    margin-top: 24px;
  }

  .section-heading--schedule > a {
    margin-top: 24px;
  }

  .schedule-item {
    min-height: auto;
    grid-template-columns: minmax(110px, 0.72fr) minmax(0, 1fr);
    gap: 20px 24px;
    padding: 28px 0;
  }

  .schedule-item:hover {
    padding-right: 16px;
    padding-left: 16px;
  }

  .schedule-item__date {
    grid-row: 1 / span 2;
  }

  .schedule-item__date strong {
    font-size: 66px;
  }

  .schedule-item__detail:nth-of-type(4) {
    grid-column: 2;
  }

  .profile__grid,
  .result-years article,
  .ground-cards {
    grid-template-columns: 1fr;
  }

  .profile__grid {
    gap: 44px;
  }

  .result-years article {
    gap: 22px;
  }

  .ground-cards a {
    min-height: 240px;
  }

  .page-cta h2 {
    font-size: 50px;
  }

  .score-summary {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .score-summary > div {
    min-height: 108px;
    padding: 18px 8px;
    border-bottom: 1px solid rgba(7, 20, 47, 0.22);
  }

  .score-summary > div:first-child {
    grid-column: 1 / -1;
    min-height: 90px;
    flex-direction: row;
    padding-right: 22px;
    padding-left: 22px;
  }

  .score-summary strong {
    font-size: 45px;
  }

  .game-card summary {
    grid-template-columns: 64px minmax(0, 1fr) 36px;
    gap: 16px;
    padding: 26px 0;
  }

  .game-card__meta {
    grid-column: 2;
  }

  .game-card__teams {
    grid-column: 1 / -1;
    grid-row: 2;
    grid-template-columns: minmax(0, 1fr) 40px 14px 40px minmax(0, 1fr);
    gap: 8px;
  }

  .game-card__teams strong {
    font-size: 42px;
  }

  .game-card__toggle {
    grid-row: 1;
    grid-column: 3;
  }

  .game-card__detail {
    padding-bottom: 28px;
  }

  .section-heading h2,
  .video__copy h2 {
    font-size: 49px;
  }

  .about__layout {
    gap: 54px;
  }

  .about__photo {
    width: calc(100% - 14px);
  }

  .about__photo::before {
    inset: 14px -14px -14px 14px;
  }

  .about__photo img {
    height: 420px;
  }

  .about__photo figcaption {
    padding: 13px 17px;
    font-size: 13px;
  }

  .fact {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 13px;
    padding: 26px 0;
  }

  .location {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 10px 14px;
    padding: 28px 0;
  }

  .location__main,
  .location ul,
  .location > a {
    grid-column: 2;
  }

  .location > a {
    grid-row: auto;
    justify-content: flex-start;
  }

  .locations__note {
    padding-left: 0;
    font-size: 11px;
  }

  .video {
    gap: 50px;
  }

  .video__frame {
    border-width: 6px;
    box-shadow: 14px 14px 0 var(--purple);
  }

  .section-heading--journal {
    display: block;
  }

  .section-heading--journal > a {
    margin-top: 24px;
  }

  .journal-grid {
    grid-template-columns: 1fr;
  }

  .story,
  .story--lead {
    min-height: 480px;
    grid-column: auto;
  }

  .site-footer,
  .site-footer > div {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* WordPress template integration */
body.osaka-stars-template {
  min-width: 0;
  padding: 0 !important;
}

body.osaka-stars-template #wpadminbar {
  z-index: 10000;
}

body.admin-bar.osaka-stars-template .site-header {
  top: 32px;
}

body.osaka-stars-template a,
body.osaka-stars-template button,
body.osaka-stars-template summary {
  cursor: pointer;
}

.osd-native-content,
.osd-native-content .elementor,
.osd-native-content .elementor-section,
.osd-native-content .elementor-container,
.osd-native-content .elementor-column,
.osd-native-content .elementor-widget-wrap,
.osd-native-content .elementor-widget,
.osd-native-content .elementor-widget-container {
  width: 100%;
  max-width: none;
}

.osd-native-content > p:empty,
.osd-native-content h1:first-child {
  display: none;
}

/* Existing schedule content, restyled without changing its update flow. */
.osd-schedule-native {
  width: min(100%, var(--container));
  margin: 0 auto;
}

.osd-schedule-native .schedule-container {
  display: block;
  width: 100%;
  border-top: 2px solid var(--ink);
}

.osd-schedule-native .schedule-card {
  display: grid;
  min-height: 148px;
  grid-template-columns:
    minmax(190px, 0.9fr)
    minmax(110px, 0.45fr)
    minmax(160px, 0.72fr)
    minmax(210px, 1fr);
  gap: clamp(18px, 2.8vw, 44px);
  align-items: center;
  padding: 26px 0;
  border: 0;
  border-bottom: 1px solid #bfc3cc;
  border-radius: 0;
  margin: 0;
  background: transparent;
  box-shadow: none;
  color: var(--ink);
  transition:
    background-color 150ms ease,
    color 150ms ease,
    padding 150ms ease;
}

.osd-schedule-native .schedule-card:hover {
  padding-right: 24px;
  padding-left: 24px;
  background: var(--navy);
  color: var(--white);
  transform: none;
}

.osd-schedule-native .schedule-card > * {
  padding: 0;
  border: 0;
  margin: 0;
  background: transparent;
  color: inherit;
  text-align: left;
}

.osd-schedule-native .schedule-card > .date-box:first-child {
  color: var(--purple);
  font-family: var(--display);
  font-size: clamp(31px, 3.4vw, 50px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
}

.osd-schedule-native .schedule-card > .osd-schedule-date,
.osd-schedule-native .schedule-card > .osd-schedule-time,
.osd-schedule-native .schedule-card > .osd-schedule-activity,
.osd-schedule-native .schedule-card > .osd-schedule-place {
  position: relative;
  padding-top: 24px;
}

.osd-schedule-native .schedule-card > .osd-schedule-date::before,
.osd-schedule-native .schedule-card > .osd-schedule-time::before,
.osd-schedule-native .schedule-card > .osd-schedule-activity::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--muted);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.osd-schedule-native .schedule-card > .osd-schedule-date::before {
  content: "DATE";
}

.osd-schedule-native .schedule-card > .osd-schedule-time::before {
  content: "TIME";
}

.osd-schedule-native .schedule-card > .osd-schedule-activity::before {
  content: "ACTIVITY";
}

.osd-schedule-native .schedule-card > .osd-schedule-date {
  display: flex;
  align-items: baseline;
  gap: 0;
}

.osd-schedule-native .osd-schedule-date__month {
  align-self: flex-start;
  padding-top: 9px;
  font-size: 20px;
}

.osd-schedule-native .osd-schedule-date__month::after {
  margin: 0 7px;
  content: "/";
}

.osd-schedule-native .osd-schedule-date__day {
  font-family: var(--display);
  font-size: clamp(62px, 6vw, 82px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.osd-schedule-native .osd-schedule-date__weekday {
  margin-left: 8px;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.osd-schedule-native .schedule-card > .osd-schedule-time {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 800;
  line-height: 1;
}

.osd-schedule-native .schedule-card:hover > .date-box:first-child {
  color: var(--gold);
}

.osd-schedule-native .schedule-card:hover > .osd-schedule-date::before,
.osd-schedule-native .schedule-card:hover > .osd-schedule-time::before,
.osd-schedule-native .schedule-card:hover > .osd-schedule-activity::before {
  color: rgba(255, 255, 255, 0.65);
}

.osd-schedule-native .schedule-card > .osd-schedule-activity,
.osd-schedule-native .event-title {
  position: relative;
  padding-top: 24px;
  font-size: clamp(16px, 1.7vw, 21px);
  font-weight: 800;
}

.osd-schedule-native .event-title .label {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.osd-schedule-native .schedule-card:hover .label,
.osd-schedule-native .schedule-card:hover > .osd-schedule-activity::before {
  color: rgba(255, 255, 255, 0.55);
}

@media (min-width: 721px) and (max-width: 1024px) {
  .osd-schedule-native .schedule-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 40px;
  }
}

.osd-schedule-native--home .schedule-card:nth-child(n + 4) {
  display: none;
}

/* Existing scorebook output. */
.osd-score-native {
  width: min(100%, var(--container));
  margin: 0 auto;
}

.osd-score-native .results-container {
  width: 100%;
  max-width: none;
  padding: 0;
  border-top: 2px solid var(--ink);
  margin: 0;
}

.osd-score-native .season-selector {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 70px;
  padding: 0 0 20px;
  border: 0;
  background: transparent;
}

.osd-score-native select {
  min-width: 150px;
  min-height: 48px;
  padding: 0 42px 0 15px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background-color: var(--white);
  color: var(--ink);
  font-size: 16px;
}

.osd-score-native .game-card {
  border: 0;
  border-bottom: 1px solid #bfc3cc;
  border-radius: 0;
  margin: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.osd-score-native .status-header {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  border: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.osd-score-native .status-header.win {
  background: var(--purple);
}

.osd-score-native .status-header.draw {
  background: var(--gold);
  color: var(--ink);
}

.osd-score-native .card-body {
  padding: 28px 0 38px;
}

.osd-score-native .match-info {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.osd-score-native .matchup {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px 26px 72px minmax(0, 1fr);
  gap: clamp(10px, 2vw, 30px);
  align-items: center;
  margin-bottom: 28px;
  text-align: center;
}

.osd-score-native .team-info {
  color: var(--ink);
  font-size: clamp(14px, 1.7vw, 20px);
  font-weight: 800;
}

.osd-score-native .score-num {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(46px, 5vw, 68px);
  font-weight: 800;
  line-height: 1;
}

.osd-score-native .vs-divider {
  color: var(--muted);
  font-family: var(--display);
  font-size: 24px;
}

.osd-score-native .inning-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  margin: 0;
  background: var(--white);
  font-family: var(--display);
  text-align: center;
}

.osd-score-native .card-body {
  overflow-x: auto;
}

.osd-score-native .inning-table th,
.osd-score-native .inning-table td {
  min-width: 48px;
  padding: 13px 10px;
  border: 1px solid var(--line);
}

.osd-score-native .inning-table thead th {
  background: var(--navy);
  color: var(--white);
}

.osd-score-native .inning-table th:first-child,
.osd-score-native .inning-table td:first-child {
  min-width: 180px;
  text-align: left;
}

/* Existing About Us content, with the plugin providing the outer page hero. */
.about-native-section {
  background: var(--white);
}

.osd-about-native {
  width: min(100%, var(--container));
  margin: 0 auto;
}

.osd-about-native .team-page {
  width: 100%;
  max-width: none;
  padding: 0;
  margin: 0;
  background: transparent;
  box-shadow: none;
  color: var(--ink);
}

.osd-about-native .team-page > .header-section {
  display: none;
}

.osd-about-native .photo-container {
  margin: 0 0 clamp(72px, 9vw, 120px);
}

.osd-about-native .photo-container img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
}

.osd-about-native .team-page > section {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: clamp(30px, 7vw, 90px);
  padding: clamp(48px, 7vw, 86px) 0;
  border-top: 1px solid var(--line);
  margin: 0;
}

.osd-about-native .team-page h2 {
  margin: 0;
  color: var(--purple);
  font-family: var(--display);
  font-size: clamp(35px, 5vw, 65px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  text-transform: uppercase;
}

.osd-about-native .results-list {
  display: grid;
  gap: 22px;
}

.osd-about-native .result-item {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.osd-about-native .contact-box {
  padding: clamp(50px, 8vw, 90px) !important;
  background: var(--purple);
  color: var(--white);
}

.osd-about-native .contact-box h2 {
  color: var(--gold);
}

@media (max-width: 782px) {
  body.admin-bar.osaka-stars-template .site-header {
    top: 46px;
  }
}

@media (max-width: 720px) {
  .osd-schedule-native .schedule-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 28px 0;
  }

  .osd-schedule-native .schedule-card:hover {
    padding-right: 16px;
    padding-left: 16px;
  }

  .osd-schedule-native .osd-schedule-date__day {
    font-size: 64px;
  }

  .osd-schedule-native .schedule-card > .osd-schedule-time,
  .osd-schedule-native .schedule-card > .osd-schedule-activity,
  .osd-schedule-native .event-title {
    padding-top: 21px;
  }

  .osd-score-native .matchup {
    grid-template-columns: minmax(0, 1fr) 42px 14px 42px minmax(0, 1fr);
    gap: 7px;
  }

  .osd-score-native .score-num {
    font-size: 42px;
  }

  .osd-score-native .team-info {
    overflow-wrap: anywhere;
    font-size: 13px;
  }

  .osd-about-native .team-page > section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .osd-about-native .contact-box {
    padding: 38px 22px !important;
  }
}

/* WordPress/theme collision fixes and dynamic content normalization. */
body.osaka-stars-template .hero h1,
body.osaka-stars-template .page-hero h1 {
  color: var(--white) !important;
}

body.osaka-stars-template .hero h1 span:last-child {
  color: transparent !important;
}

.osd-native-content .google-anno-skip,
.osd-native-content .google-anno-sc,
.osd-native-content [data-google-anno] {
  display: none !important;
}

.osd-ad-zone {
  display: grid;
  width: min(100%, var(--container));
  min-height: 0;
  place-items: center;
  margin: clamp(38px, 6vw, 74px) auto 0;
  overflow: hidden;
}

.osd-ad-zone:empty {
  display: none;
}

.osd-ad-zone .google-auto-placed {
  width: 100% !important;
  margin: 0 auto !important;
}

.osd-ad-zone--before-content {
  margin-top: 0;
  margin-bottom: clamp(30px, 5vw, 56px);
}

.osd-score-native .elementor-heading-title,
.osd-score-native .results-container > h1,
.osd-score-native .results-container > h2 {
  display: none !important;
}

.osd-score-native .results-container.score-list {
  display: block;
}

.osd-score-native details.game-card {
  border: 0;
  border-bottom: 1px solid #bfc3cc;
  border-radius: 0;
  margin: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.osd-score-native details.game-card > summary {
  display: grid;
  min-height: 138px;
  grid-template-columns: 96px minmax(170px, 0.65fr) minmax(360px, 1fr) 42px;
  gap: clamp(18px, 3vw, 44px);
  align-items: center;
  padding: 24px 0;
  color: var(--ink);
  list-style: none;
}

.osd-score-native details.game-card > summary::-webkit-details-marker {
  display: none;
}

.osd-score-native .game-card__result {
  display: grid;
  min-height: 52px;
  place-items: center;
  background: var(--ink);
  color: var(--white);
  font-family: var(--display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.osd-score-native .game-card--win .game-card__result {
  background: var(--purple);
}

.osd-score-native .game-card--draw .game-card__result {
  background: var(--gold);
  color: var(--ink);
}

.osd-score-native .game-card__meta strong,
.osd-score-native .game-card__meta small {
  display: block;
}

.osd-score-native .game-card__meta strong {
  font-family: var(--display);
  font-size: 20px;
}

.osd-score-native .game-card__meta small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.osd-score-native .game-card__teams {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: clamp(12px, 2vw, 28px);
  align-items: center;
  font-size: clamp(14px, 1.55vw, 19px);
  font-weight: 800;
  text-align: center;
}

.osd-score-native .game-card__teams strong {
  color: var(--purple);
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
  white-space: nowrap;
}

.osd-score-native .game-card__teams i {
  color: var(--muted);
  font-size: 22px;
  font-style: normal;
}

.osd-score-native .game-card__toggle {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.osd-score-native .game-card__toggle::before,
.osd-score-native .game-card__toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
}

.osd-score-native .game-card__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 160ms ease;
}

.osd-score-native details[open] .game-card__toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.osd-score-native .game-card__detail {
  padding: 0 0 38px;
}

.osd-score-native .score-table-wrap {
  overflow-x: auto;
}

.osd-score-native .score-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  margin: 0;
  background: var(--white);
  font-family: var(--display);
  text-align: center;
}

.osd-score-native .score-table th,
.osd-score-native .score-table td {
  min-width: 48px;
  padding: 13px 10px;
  border: 1px solid var(--line);
}

.osd-score-native .score-table thead th {
  background: var(--navy);
  color: var(--white);
}

.osd-score-native .score-table th:first-child,
.osd-score-native .score-table td:first-child {
  min-width: 180px;
  text-align: left;
}

@media (max-width: 720px) {
  .osd-score-native details.game-card > summary {
    min-height: 0;
    grid-template-columns: 70px minmax(0, 1fr) 32px;
    gap: 14px;
    padding: 24px 0;
  }

  .osd-score-native .game-card__result {
    min-height: 44px;
    font-size: 13px;
  }

  .osd-score-native .game-card__meta strong {
    font-size: 17px;
  }

  .osd-score-native .game-card__teams {
    grid-column: 1 / -1;
    grid-row: 2;
    gap: 8px;
  }

  .osd-score-native .game-card__teams strong {
    font-size: 36px;
  }

  .osd-score-native .game-card__toggle {
    width: 30px;
    height: 30px;
  }
}

/* Cross-page editorial refinements. */
.section-heading h2,
.section-heading--schedule h2 {
  word-break: auto-phrase;
  text-wrap: balance;
}

.section-heading h2 span {
  display: inline-block;
}

.article-page h1,
.article-page h2,
.article-page h3 {
  word-break: normal;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

body.osaka-stars-template .osd-reveal,
body.osaka-stars-template .osd-is-visible,
body.osaka-stars-template .story,
body.osaka-stars-template .location,
body.osaka-stars-template .section-heading {
  opacity: 1 !important;
  transform: none !important;
}

.journal .story__date {
  border-left: 3px solid var(--gold);
  background: rgba(7, 20, 47, 0.76);
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.06em;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero__actions a {
  display: inline-flex;
  min-width: 170px;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.hero__actions a:first-child,
.hero__actions a:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy);
}

.scroll-indicator {
  position: absolute;
  bottom: 22px;
  left: 50%;
  display: flex;
  min-width: 48px;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-indicator i {
  display: block;
  width: 1px;
  height: 34px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.28);
}

.scroll-indicator i::after {
  display: block;
  width: 1px;
  height: 16px;
  background: var(--gold);
  content: "";
  animation: osd-scroll-line 1.8s ease-in-out infinite;
}

@keyframes osd-scroll-line {
  0% {
    transform: translateY(-18px);
  }
  70%,
  100% {
    transform: translateY(36px);
  }
}

.recruit-guide {
  background: var(--paper);
}

.recruit-guide__grid {
  display: grid;
  width: min(100%, var(--container));
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  border-top: 2px solid var(--ink);
}

.recruit-guide__grid article {
  min-height: 280px;
  padding: 30px clamp(20px, 2.5vw, 36px);
  border-right: 1px solid #bfc3cc;
}

.recruit-guide__grid article:last-child {
  border-right: 0;
}

.recruit-guide__grid span {
  color: var(--purple);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 800;
}

.recruit-guide__grid h3 {
  margin: 38px 0 16px;
  font-size: 20px;
}

.recruit-guide__grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.recruit-guide__cta {
  display: flex;
  width: min(100%, var(--container));
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  margin: 48px auto 0;
  font-size: 14px;
  font-weight: 800;
}

.video__poster {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: var(--navy);
  cursor: pointer;
}

.video__poster::after {
  position: absolute;
  inset: 0;
  background: rgba(7, 20, 47, 0.25);
  content: "";
  transition: background-color 180ms ease;
}

.video__poster:hover::after {
  background: rgba(7, 20, 47, 0.08);
}

.video__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video__poster span {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 25px;
  transform: translate(-50%, -50%);
}

.mobile-cta {
  display: none;
}

/* Single post */
.article-hero {
  position: relative;
  display: flex;
  min-height: 650px;
  align-items: flex-end;
  padding: 180px var(--gutter) 80px;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
  isolation: isolate;
}

.article-hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.article-hero__media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 20, 47, 0.96), rgba(7, 20, 47, 0.38) 76%),
    linear-gradient(0deg, rgba(7, 20, 47, 0.82), transparent 65%);
  content: "";
}

.article-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-hero__inner {
  width: min(100%, 980px);
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.article-hero h1 {
  max-width: 900px;
  margin: 20px 0 0;
  color: var(--white) !important;
  font-size: clamp(38px, 6vw, 78px);
  line-height: 1.3;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.article-layout {
  display: grid;
  width: min(100% - var(--gutter) * 2, 1040px);
  grid-template-columns: 220px minmax(0, 700px);
  gap: 70px;
  align-items: start;
  padding: clamp(80px, 10vw, 130px) 0;
  margin: 0 auto;
}

.article-layout:has(.article-content:first-child) {
  display: block;
  width: min(100% - var(--gutter) * 2, 700px);
}

.article-toc {
  position: sticky;
  top: 110px;
  padding: 24px 0;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.article-toc > p {
  margin: 0 0 18px;
  color: var(--purple);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.article-toc ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

.article-toc li + li {
  margin-top: 10px;
}

.article-toc .is-level-3 {
  padding-left: 14px;
}

.article-toc a {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.article-toc a:hover {
  color: var(--purple);
}

.article-content {
  width: 100%;
  max-width: 700px;
  color: #253047;
  font-size: 17px;
  line-height: 1.95;
}

.article-content > *:first-child {
  margin-top: 0;
}

.article-content p {
  margin: 0 0 1.8em;
}

.article-content h2,
.article-content h3 {
  scroll-margin-top: 110px;
  color: var(--ink);
}

.article-content h2 {
  padding-top: 0.3em;
  padding-bottom: 0.45em;
  border-bottom: 2px solid var(--ink);
  margin: 2.4em 0 1em;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.45;
}

.article-content h3 {
  padding-left: 16px;
  border-left: 4px solid var(--gold);
  margin: 2em 0 0.8em;
  font-size: clamp(21px, 3vw, 27px);
  line-height: 1.5;
}

.article-content a {
  color: var(--purple);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-content ul,
.article-content ol {
  padding-left: 1.4em;
  margin: 0 0 1.8em;
}

.article-content blockquote {
  padding: 24px 28px;
  border-left: 4px solid var(--purple);
  margin: 2em 0;
  background: var(--paper);
}

.article-inline-photo {
  margin: 52px 0;
}

.article-inline-photo img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.article-inline-photo figcaption {
  margin-top: 9px;
  color: var(--muted);
  font-size: 11px;
}

.article-cta {
  padding: clamp(80px, 10vw, 130px) var(--gutter);
  background: var(--purple);
  color: var(--white);
  text-align: center;
}

.article-cta > * {
  width: min(100%, 900px);
  margin-right: auto;
  margin-left: auto;
}

.article-cta .eyebrow {
  justify-content: center;
}

.article-cta h2 {
  margin-top: 20px;
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 86px);
  line-height: 1.05;
}

.article-cta > p:not(.eyebrow) {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

.article-cta > div {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 38px;
}

.article-cta a {
  display: inline-flex;
  min-width: 230px;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  font-size: 13px;
  font-weight: 800;
}

.article-cta a:first-child,
.article-cta a:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy);
}

.related-posts {
  background: var(--paper);
}

.related-posts__grid {
  display: grid;
  width: min(100%, var(--container));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 0 auto;
}

.related-card {
  display: block;
  min-width: 0;
  background: var(--white);
}

.related-card__image {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--navy);
}

.related-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.related-card:hover .related-card__image img {
  transform: scale(1.035);
}

.related-card > span {
  display: block;
  padding: 22px 24px 0;
  color: var(--purple);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 800;
}

.related-card h3 {
  padding: 0 24px 28px;
  margin: 8px 0 0;
  font-size: 18px;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .recruit-guide__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recruit-guide__grid article:nth-child(2) {
    border-right: 0;
  }

  .recruit-guide__grid article:nth-child(-n + 2) {
    border-bottom: 1px solid #bfc3cc;
  }

  .article-layout {
    width: min(100% - var(--gutter) * 2, 760px);
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .article-toc {
    position: static;
  }
}

@media (max-width: 720px) {
  body.osaka-stars-template {
    padding-bottom: 68px !important;
  }

  .hero__actions {
    gap: 8px;
    margin-top: 24px;
  }

  .hero__actions a {
    min-width: 0;
    min-height: 48px;
    flex: 1 1 calc(50% - 4px);
    padding: 8px 12px;
    font-size: 12px;
  }

  .scroll-indicator {
    display: none;
  }

  .recruit-guide__grid {
    grid-template-columns: 1fr;
  }

  .recruit-guide__grid article {
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid #bfc3cc;
  }

  .recruit-guide__grid h3 {
    margin-top: 16px;
  }

  .video__poster span {
    width: 58px;
    height: 58px;
    font-size: 20px;
  }

  .mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    display: grid;
    height: 68px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    box-shadow: 0 -8px 24px rgba(7, 20, 47, 0.18);
  }

  .mobile-cta a {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: var(--navy);
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
  }

  .mobile-cta a:first-child {
    background: var(--gold);
    color: var(--navy);
  }

  .mobile-cta span {
    font-family: var(--display);
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .article-hero {
    min-height: 560px;
    padding: 150px var(--gutter) 62px;
  }

  .breadcrumb {
    margin-bottom: 32px;
  }

  .article-hero h1 {
    font-size: 36px;
    line-height: 1.42;
  }

  .article-layout,
  .article-layout:has(.article-content:first-child) {
    width: calc(100% - var(--gutter) * 2);
    padding: 68px 0;
  }

  .article-content {
    font-size: 16px;
    line-height: 1.9;
  }

  .article-cta > div {
    flex-direction: column;
  }

  .article-cta a {
    width: 100%;
  }

  .related-posts__grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-indicator i::after {
    animation: none;
  }
}
