:root {
  color-scheme: light;
  --ink: #111827;
  --muted: #5b6472;
  --line: #d8dde6;
  --paper: #ffffff;
  --soft: #f4f7fa;
  --sun: #ffb000;
  --orange: #f36c21;
  --teal: #0b8f9c;
  --blue: #1267b1;
  --green: #78c445;
  --shadow: 0 18px 55px rgba(17, 24, 39, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  font-family:
    Inter, "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.7;
}

main {
  flex: 1 0 auto;
}

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

a,
button {
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    background-position 0.35s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease,
    transform 0.2s ease;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(18, 103, 177, 0.34);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(216, 221, 230, 0.8);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  max-width: 100%;
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: transparent;
  background: url("./assets/pickleball-tokyo-logo.png") center / cover no-repeat;
  box-shadow: 0 3px 12px rgba(17, 24, 39, 0.14);
  font-weight: 900;
  font-size: 0;
  letter-spacing: 0;
  overflow: hidden;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  overflow-wrap: anywhere;
  font-size: 15px;
  line-height: 1.2;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav li,
.sidebar li,
.media-sidebar li {
  list-style: none;
}

.nav li {
  display: inline-flex;
}

.nav a:hover,
.text-link:hover,
.section-heading a:hover,
.footer a:hover {
  color: var(--blue);
}

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

.nav a:hover,
.footer-links a:hover,
.media-sidebar section > a:hover,
.sidebar a:hover,
.feed-heading a:hover,
.place-grid article > a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.media-sidebar section > a:hover,
.sidebar a:hover {
  color: var(--blue);
}

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 800;
  white-space: nowrap;
}

.header-cta,
.primary-button {
  color: #fff;
  background: linear-gradient(90deg, rgba(255, 112, 30, 1) 0%, rgba(255, 191, 48, 1) 50%, rgba(255, 77, 48, 1) 100%);
  background-size: 200% 100%;
  box-shadow: 0 10px 25px rgba(243, 108, 33, 0.26);
}

.header-cta:hover,
.primary-button:hover {
  background-position: 100% 0;
  box-shadow: 0 14px 34px rgba(243, 108, 33, 0.34);
  transform: translateY(-2px);
}

.secondary-button {
  color: var(--ink);
  border: 1px solid var(--line);
  background: #fff;
}

.secondary-button:hover {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.editorial-hero {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(28px, 5vw, 76px);
  padding: clamp(48px, 7vw, 92px) clamp(18px, 6vw, 88px);
  background:
    linear-gradient(90deg, rgba(255, 176, 0, 0.13), transparent 38%),
    linear-gradient(180deg, #fff, #f8fafc);
  border-bottom: 1px solid var(--line);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  margin: 0;
  color: var(--ink);
}

.kicker,
.section-label,
.eyebrow {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .kicker {
  color: var(--orange);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 690px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 19px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(620px, 100%);
  margin: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-stats div {
  padding: 16px 18px 16px 0;
}

.hero-stats dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-stats dd {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
}

.hero-panel {
  align-self: center;
  margin: 0;
}

.hero-panel img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 50% 16%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(17, 24, 39, 0.12);
}

.field-note {
  display: grid;
  gap: 4px;
  margin-top: 14px;
  padding: 16px 18px;
  border-left: 4px solid var(--orange);
  background: #fff;
}

.field-note span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.field-note p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.ticker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: var(--sun);
  color: #1c2430;
  font-weight: 800;
}

.ticker span {
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}

.ticker a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.section {
  padding: clamp(58px, 9vw, 104px) clamp(18px, 6vw, 88px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: start;
}

.intro p:last-child,
.split-section p,
.instagram-section p {
  color: var(--muted);
  font-size: 18px;
}

.band {
  background: var(--soft);
}

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

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading a,
.text-link {
  color: var(--teal);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.event-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 22px;
}

.featured-event,
.event-list article,
.guide-grid article,
.article-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.featured-event {
  padding: clamp(24px, 4vw, 46px);
  box-shadow: var(--shadow);
}

.featured-event ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.featured-event li {
  padding-left: 16px;
  border-left: 4px solid var(--orange);
  color: var(--muted);
  font-weight: 700;
}

.event-list {
  display: grid;
  gap: 14px;
}

.event-list article {
  padding: 20px;
}

.event-list time,
.article-grid p {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.event-list p,
.guide-grid p,
.article-grid span {
  margin-bottom: 0;
  color: var(--muted);
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.guide-grid article {
  min-height: 240px;
  padding: 22px;
}

.guide-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-weight: 900;
}

.split-section,
.instagram-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
}

.area-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.area-board span {
  display: grid;
  place-items: center;
  min-height: 76px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
}

.area-board span:nth-child(3n + 1) {
  border-top: 5px solid var(--orange);
}

.area-board span:nth-child(3n + 2) {
  border-top: 5px solid var(--teal);
}

.area-board span:nth-child(3n) {
  border-top: 5px solid var(--green);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.article-grid article {
  min-height: 220px;
  padding: 24px;
}

.article-grid h3 {
  font-size: 22px;
}

.social-handle {
  display: grid;
  place-items: center;
  min-height: 180px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 176, 0, 0.24), rgba(11, 143, 156, 0.16)),
    #fff;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 950;
  overflow-wrap: anywhere;
}

.footer {
  display: flex;
  flex: 0 0 auto;
  justify-content: space-between;
  gap: 24px;
  margin-top: auto;
  padding: 32px clamp(18px, 6vw, 88px);
  background: #111827;
  color: #fff;
}

.footer p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.news-home {
  background: #fff;
}

.media-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(620px, 54vw, 780px);
  display: flex;
  align-items: center;
  padding: clamp(54px, 8vw, 94px) clamp(18px, 6vw, 88px) clamp(36px, 6vw, 64px);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.media-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.98) 46%, rgba(255, 255, 255, 0.76) 65%, rgba(255, 255, 255, 0.14) 100%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.52));
}

.media-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 980px;
}

.hero-slides {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 0;
  width: min(54vw, 920px);
  height: 100%;
  overflow: hidden;
  background: #f4f7fa;
}

.hero-slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.04);
  animation: heroSlide 18s infinite;
}

.hero-slides img:nth-child(1) {
  animation-delay: 0s;
}

.hero-slides img:nth-child(2) {
  animation-delay: 6s;
}

.hero-slides img:nth-child(3) {
  animation-delay: 12s;
}

@keyframes heroSlide {
  0%,
  28% {
    opacity: 1;
  }

  36%,
  100% {
    opacity: 0;
  }
}

.media-label {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.media-hero h1 {
  max-width: 880px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.12;
}

.media-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.topic-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3.4vw, 44px);
  overflow-x: auto;
  min-height: 68px;
  padding: 16px clamp(22px, 6vw, 96px);
  border-bottom: 1px solid var(--line);
  background: #111827;
  color: #fff;
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 850;
  white-space: nowrap;
}

.topic-bar span {
  color: rgba(255, 255, 255, 0.84);
}

.media-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 34px;
  padding: clamp(34px, 6vw, 62px) clamp(18px, 6vw, 88px);
}

.feed-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.feed-heading h2 {
  margin-bottom: 0;
  font-size: clamp(26px, 3vw, 38px);
}

.feed-heading a {
  color: var(--teal);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.featured-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 18px;
}

.lead-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 390px;
  padding: clamp(24px, 4vw, 38px);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(0deg, rgba(17, 24, 39, 0.88), rgba(17, 24, 39, 0.28)),
    url("./assets/hero-pickleball-tokyo.png") center / cover;
}

.lead-card:hover {
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.18);
  transform: translateY(-3px);
}

.lead-card span,
.news-item span {
  color: var(--sun);
  font-size: 12px;
  font-weight: 950;
}

.lead-card h3 {
  max-width: 760px;
  margin: 8px 0 10px;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.18;
}

.lead-card p {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.rank-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.rank-list a {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 17px;
  font-weight: 850;
  line-height: 1.5;
}

.rank-list a:hover {
  color: var(--blue);
  padding-left: 8px;
  background: rgba(18, 103, 177, 0.04);
}

.rank-list span {
  color: var(--orange);
  font-size: 14px;
  font-weight: 950;
}

.latest-heading {
  margin-top: clamp(42px, 6vw, 70px);
}

.news-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.news-item {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  column-gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.news-item:hover {
  border-color: rgba(18, 103, 177, 0.3);
  background: rgba(18, 103, 177, 0.04);
  transform: translateX(4px);
}

.news-item:hover h3 {
  color: var(--blue);
}

.news-item span {
  grid-row: span 3;
  color: var(--orange);
}

.news-item time {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.news-item h3 {
  margin: 3px 0 4px;
  font-size: clamp(20px, 2.5vw, 28px);
}

.news-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.media-sidebar {
  display: grid;
  align-content: start;
  gap: 18px;
}

.media-sidebar section {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.media-sidebar h2 {
  margin-bottom: 12px;
  font-size: 20px;
}

.media-sidebar section > a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-weight: 850;
}

.media-sidebar li a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-weight: 850;
}

.media-sidebar section > a:last-child {
  border-bottom: 0;
}

.media-sidebar li:last-child a {
  border-bottom: 0;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-cloud a {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.tag-cloud a:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(11, 143, 156, 0.08);
  transform: translateY(-1px);
}

.line-box {
  text-align: center;
  background:
    linear-gradient(180deg, #fff, #fff7f2),
    var(--soft) !important;
}

.line-box:hover {
  border-color: rgba(243, 108, 33, 0.35);
  box-shadow: 0 14px 34px rgba(243, 108, 33, 0.1);
  transform: translateY(-2px);
}

.line-box p {
  color: var(--muted);
}

.media-sidebar .line-box .primary-button {
  display: inline-flex;
  width: auto;
  min-height: 44px;
  margin: 8px auto 0;
  padding: 0 18px;
  border: 0;
  color: #fff;
  background: linear-gradient(90deg, rgba(255, 112, 30, 1) 0%, rgba(255, 191, 48, 1) 50%, rgba(255, 77, 48, 1) 100%);
  background-size: 200% 100%;
  font-size: 15px;
  line-height: 1;
  box-shadow: 0 8px 20px rgba(243, 108, 33, 0.24);
}

.media-sidebar .line-box .primary-button:hover {
  background-position: 100% 0;
  box-shadow: 0 12px 28px rgba(243, 108, 33, 0.34);
  transform: translateY(-2px);
}


.page-hero {
  padding: clamp(70px, 11vw, 132px) clamp(18px, 6vw, 88px) clamp(46px, 8vw, 82px);
  background:
    linear-gradient(135deg, rgba(255, 176, 0, 0.22), rgba(11, 143, 156, 0.16)),
    #fff;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 980px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(40px, 6vw, 72px);
}

.page-hero p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 19px;
}

.events-hero {
  background:
    linear-gradient(90deg, rgba(18, 103, 177, 0.18), rgba(243, 108, 33, 0.18)),
    #fff;
}

.media-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: 30px;
  align-items: start;
}

.post-list {
  display: grid;
  gap: 14px;
}

.post-row {
  display: block;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.post-row:hover {
  border-color: var(--teal);
  box-shadow: 0 12px 34px rgba(17, 24, 39, 0.09);
  transform: translateY(-3px);
}

.post-row span,
.place-grid span,
.event-cards time {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.post-row h2 {
  margin-bottom: 8px;
  font-size: clamp(24px, 3vw, 34px);
}

.post-row p {
  margin-bottom: 0;
  color: var(--muted);
}

.sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.sidebar h2 {
  margin-bottom: 8px;
  font-size: 22px;
}

.sidebar a {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
}

.sidebar li a {
  display: block;
}

.sidebar a:last-child {
  border-bottom: 0;
}

.event-cards,
.place-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.event-cards article,
.place-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.event-cards article:hover,
.place-grid article:hover {
  border-color: rgba(18, 103, 177, 0.35);
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.1);
  transform: translateY(-3px);
}

.event-cards article {
  display: flex;
  flex-direction: column;
  min-height: 430px;
}

.event-cards p,
.place-grid p,
.wide-copy {
  color: var(--muted);
}

.source-note {
  max-width: 880px;
  margin: -10px 0 24px;
  color: var(--muted);
  font-size: 15px;
}

.place-grid dl {
  display: grid;
  gap: 8px;
  margin: 18px 0 18px;
}

.place-grid dl div {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 10px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.place-grid dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.place-grid dd {
  margin: 0;
  font-size: 14px;
  font-weight: 750;
}

.place-grid article > a {
  display: inline-flex;
  margin: 4px 14px 0 0;
  color: var(--teal);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.place-grid article > a:hover {
  color: var(--blue);
  text-decoration-thickness: 2px;
}

.event-cards dl {
  display: grid;
  gap: 10px;
  margin: auto 0 22px;
}

.event-cards dl div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.event-cards dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.event-cards dd {
  margin: 0;
  font-weight: 800;
}

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

.check-list span {
  padding: 16px 18px;
  border-left: 5px solid var(--orange);
  border-radius: 6px;
  background: #fff;
  font-weight: 900;
}

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

.wide-copy {
  max-width: 840px;
  margin-bottom: 0;
  font-size: 18px;
}

.article-page {
  width: min(820px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(58px, 9vw, 100px) 0;
}

.article-page h1 {
  margin-bottom: 20px;
  color: var(--ink);
  font-size: clamp(38px, 6vw, 64px);
}

.article-page .lead {
  margin-bottom: 42px;
  color: var(--muted);
  font-size: 20px;
}

.article-page h2 {
  margin-top: 42px;
  margin-bottom: 12px;
  font-size: clamp(25px, 3vw, 34px);
}

.article-page p,
.article-page li {
  color: #374151;
  font-size: 17px;
}

.article-page ol {
  display: grid;
  gap: 10px;
  padding-left: 24px;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 680px;
  }

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

  .intro,
  .event-layout,
  .split-section,
  .instagram-section,
  .media-layout,
  .media-hero,
  .media-shell,
  .featured-grid {
    grid-template-columns: 1fr;
  }

  .guide-grid,
  .article-grid,
  .event-cards,
  .place-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sidebar {
    position: static;
  }
}

@media (max-width: 620px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 12px 14px;
  }

  .nav {
    display: none;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    max-width: none;
    white-space: normal;
    font-size: clamp(13px, 3.6vw, 15px);
    line-height: 1.25;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    font-size: 13px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 10px;
    font-size: 12px;
  }

  .hero {
    min-height: 720px;
  }

  .editorial-hero {
    min-height: auto;
    padding: 38px 14px 44px;
  }

  .hero-content {
    width: calc(100% - 28px);
    margin: 0 14px 30px;
  }

  .editorial-hero .hero-content {
    width: 100%;
    margin: 0;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .hero-stats div {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }

  .ticker,
  .section-heading,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .ticker {
    gap: 8px;
  }

  .guide-grid,
  .article-grid,
  .area-board,
  .event-cards,
  .place-grid {
    grid-template-columns: 1fr;
  }

  .event-cards article {
    min-height: auto;
  }

  .media-hero {
    padding-top: 38px;
  }

  .hero-slides {
    width: 100%;
  }

  .media-hero::after {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.72)),
      linear-gradient(0deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.48));
  }

  .topic-bar {
    justify-content: flex-start;
    min-height: 56px;
    padding: 12px 14px;
  }

  .media-shell {
    padding: 30px 14px;
  }

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

  .lead-card {
    min-height: 330px;
  }

  .news-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .news-item span {
    grid-row: auto;
  }

}
