:root {
  --ink: #162023;
  --muted: #687276;
  --line: #dce2e3;
  --cyan: #48bed7;
  --paper: #fff;
  --header: 80px;
  color: var(--ink);
  background: var(--paper);
  font-family:
    -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN",
    "Noto Sans JP", "Yu Gothic", sans-serif;
  font-synthesis: none;
  letter-spacing: 0;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
button,
input {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
button,
a,
input {
  -webkit-tap-highlight-color: transparent;
}
h1,
h2,
h3,
p {
  margin: 0;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #07839c;
  outline-offset: 5px;
}
button:disabled {
  cursor: default;
}
svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.6;
  flex: none;
}
[hidden] {
  display: none !important;
}
.shell {
  width: min(1280px, calc(100% - 112px));
  margin-inline: auto;
}
.skip {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  background: white;
  padding: 12px;
  transform: translateY(-200%);
}
.skip:focus {
  transform: none;
}
section[id],
nav[id] {
  scroll-margin-top: calc(var(--header) + 20px);
}
.masthead {
  height: var(--header);
  position: sticky;
  top: 0;
  z-index: 30;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.masthead-inner {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 44px;
}
.brand {
  width: 190px;
  flex: none;
}
.brand img {
  width: 100%;
  height: auto;
}
.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 700;
}
.desktop-nav a {
  padding-block: 22px;
  white-space: nowrap;
}
.desktop-nav a:hover {
  color: #087f98;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.icon-button {
  height: 44px;
  width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  padding: 0;
  flex: none;
}
.icon-button:hover {
  background: #edf6f7;
}
.business-link {
  display: flex;
  gap: 8px;
  align-items: center;
  padding-left: 20px;
  border-left: 1px solid var(--line);
  font-size: 12px;
  white-space: nowrap;
}
.business-link svg {
  width: 18px;
}
.menu-button {
  display: none;
}
.hero-stage {
  position: relative;
  isolation: isolate;
  height: min(660px, calc(100svh - 214px));
  min-height: 420px;
  background: #e8eeee;
  overflow: hidden;
}
.hero-photo,
.hero-photo img {
  width: 100%;
  height: 100%;
}
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-photo img {
  object-fit: cover;
  object-position: 50% 20%;
}
.hero-stage:after {
  content: "";
  position: absolute;
  inset: 65% 0 0;
  z-index: -1;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
  pointer-events: none;
}
.hero-catch {
  position: absolute;
  right: max(56px, calc((100% - 1280px) / 2));
  top: 44px;
  writing-mode: vertical-rl;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.65;
  color: white;
  text-shadow: 0 1px 12px #0005;
}
.hero-stage[data-tone="ink"] .hero-catch {
  color: #19272a;
  text-shadow: 0 1px 8px #fffa;
}
.hero-brand {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 34px;
  color: white;
}
.hero-brand p {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
}
.hero-brand h1 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 74px;
  font-weight: 900;
  line-height: 1.06;
  white-space: nowrap;
}
.hero-brand h1 span {
  color: var(--cyan);
}
.hero-caption {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: space-between;
}
.photo-story {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  min-width: 0;
  min-height: 56px;
}
.photo-location {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
}
.photo-story strong {
  font-size: 17px;
}
.photo-story > svg {
  width: 20px;
}
.slide-controls {
  display: flex;
  align-items: center;
  gap: 5px;
  flex: none;
}
.slide-count {
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-right: 12px;
  white-space: nowrap;
}
.slide-count span {
  font-size: 11px;
  color: var(--muted);
  margin-left: 6px;
}
.slide-controls .icon-button {
  border: 1px solid var(--line);
  border-radius: 50%;
}
.slide-controls .play-button {
  border: 0;
  margin-left: 4px;
}
.play-button svg {
  width: 16px;
  height: 16px;
}
.channel-nav {
  background: #162023;
  color: #fff;
}
.channel-nav > .shell {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.channel-nav a {
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-left: 1px solid #ffffff24;
  padding: 0 28px;
  font-size: 15px;
  font-weight: 700;
}
.channel-nav a:last-child {
  border-right: 1px solid #ffffff24;
}
.channel-nav a > svg:first-child {
  color: #74d1e2;
  width: 21px;
}
.channel-arrow {
  margin-left: auto;
  width: 16px;
  color: #a2aaad;
}
.channel-nav a:hover {
  background: #263537;
}
.categories {
  padding-block: 34px 36px;
  border-bottom: 1px solid var(--line);
}
.small-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}
.small-heading h2 {
  font-size: 17px;
  line-height: 1.5;
}
.text-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  min-height: 44px;
}
.text-link svg {
  width: 18px;
}
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
}
.category-grid a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 76px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  border-right: 1px solid var(--line);
  padding: 4px;
}
.category-grid a:last-child {
  border: 0;
}
.category-grid svg {
  width: 26px;
  height: 26px;
  color: var(--category);
  stroke-width: 1.6;
}
.category-grid a:hover {
  background: #f2f7f7;
}
.section {
  padding-block: 64px 72px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 32px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}
.eyebrow > span {
  width: 7px;
  height: 7px;
  background: var(--cyan);
  display: block;
}
.section-heading h2 {
  font-size: 32px;
  line-height: 1.5;
  font-weight: 750;
}
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px 28px;
}
.article-card {
  min-width: 0;
}
.article-card > a {
  display: block;
}
.card-photo {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #eef1f1;
}
.card-photo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: filter 0.2s;
}
.article-card:hover .card-photo img {
  filter: brightness(1.06);
}
.card-photo > span {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fff;
  padding: 7px 14px 4px 0;
  font-size: 11px;
  font-weight: 600;
  min-width: 62px;
}
.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 11px;
  margin-block: 16px 9px;
}
.card-meta svg {
  width: 16px;
  height: 16px;
  color: var(--ink);
}
.article-card h3 {
  font-size: 20px;
  line-height: 1.65;
  overflow-wrap: anywhere;
  font-weight: 750;
}
.article-card p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 8px;
}
.article-card:hover h3 {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
.interview-section {
  background: #edf5f5;
  border-block: 1px solid #e4eeee;
}
.interview-grid {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: 36px;
}
.interview-lead {
  display: block;
  position: relative;
  min-height: 520px;
  color: white;
  isolation: isolate;
}
.interview-lead > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.interview-lead:after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  z-index: -1;
  background: linear-gradient(transparent, #111d20e6);
}
.interview-copy {
  position: absolute;
  inset: auto 32px 30px;
}
.interview-copy > span:first-child {
  font-size: 12px;
}
.interview-copy h3 {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 36px;
  line-height: 1.55;
  margin-top: 12px;
}
.interview-copy p {
  font-size: 13px;
  line-height: 1.85;
  margin-top: 12px;
}
.read-story {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 20px;
}
.read-story svg {
  width: 19px;
}
.interview-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 28px;
}
.interview-side > a {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 24px;
  align-items: center;
  padding-bottom: 26px;
  border-bottom: 1px solid #cbdcde;
}
.interview-side > a:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.interview-side img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1;
  max-height: 235px;
}
.interview-side a > div {
  min-width: 0;
}
.interview-side span {
  font-size: 11px;
  color: #546a6c;
  line-height: 1.8;
  display: block;
}
.interview-side h3 {
  font-size: 20px;
  line-height: 1.6;
  margin-block: 10px 20px;
}
.interview-side svg {
  width: 19px;
}
.interview-side a:hover h3 {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.walk-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.walk-grid img {
  aspect-ratio: 3/2;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.walk-grid span {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-block: 16px 8px;
}
.walk-grid h3 {
  font-size: 20px;
  line-height: 1.65;
  overflow-wrap: anywhere;
}
.walk-grid a:hover h3 {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.business-band {
  background: #d6f0f3;
}
.business-band > .shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding-block: 42px;
}
.business-band p {
  font-size: 12px;
  margin-bottom: 10px;
}
.business-band h2 {
  font-size: 24px;
  line-height: 1.5;
}
.business-band a {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
  font-weight: 700;
  padding-block: 14px;
  border-bottom: 1px solid #6e9c9f;
  white-space: nowrap;
}
.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  padding-block: 40px;
}
.footer img {
  width: 170px;
  height: auto;
}
.footer nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 12px;
}
.footer small {
  grid-column: 1/-1;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  font-size: 10px;
  color: var(--muted);
}
.bottom-nav {
  display: none;
}
dialog {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 28px;
  width: min(540px, calc(100% - 32px));
  max-height: calc(100svh - 40px);
  color: var(--ink);
  background: #fff;
  overflow: auto;
}
dialog::backdrop {
  background: #10202488;
  backdrop-filter: blur(3px);
}
body:has(dialog[open]) {
  overflow: hidden;
}
.dialog-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}
.dialog-top h2 {
  font-size: 22px;
}
.search-dialog label {
  display: block;
  font-size: 12px;
  margin-bottom: 10px;
}
.search-field {
  display: flex;
  border-bottom: 2px solid var(--ink);
  gap: 10px;
}
.search-field input {
  border: 0;
  width: 100%;
  min-width: 0;
  padding: 12px 0;
  font-size: 16px;
  background: #fff;
  color: var(--ink);
}
.search-links {
  margin-top: 28px;
  display: grid;
  gap: 4px;
}
.search-links a,
.menu-dialog nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 16px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.search-links svg {
  width: 18px;
}
.menu-dialog {
  width: min(430px, calc(100% - 24px));
}
.menu-dialog nav a {
  font-size: 16px;
}
.menu-dialog nav a:last-child {
  font-size: 13px;
  color: var(--muted);
  border: 0;
}
@media (min-width: 1800px) {
  .hero-stage {
    height: min(900px, calc(100svh - 180px));
  }
  .hero-photo img {
    object-position: center 20%;
  }
  .hero-catch {
    right: 8%;
  }
  .hero-brand {
    width: 84%;
    max-width: none;
  }
}
@media (max-width: 1150px) {
  :root {
    --header: 70px;
  }
  .shell {
    width: calc(100% - 64px);
  }
  .masthead-inner {
    gap: 20px;
  }
  .brand {
    width: 160px;
  }
  .desktop-nav {
    gap: 22px;
  }
  .business-link span {
    display: none;
  }
  .business-link {
    padding-left: 12px;
  }
  .hero-brand h1 {
    font-size: 60px;
  }
  .hero-catch {
    right: 32px;
    font-size: 40px;
  }
  .channel-nav a {
    padding-inline: 18px;
  }
  .interview-side > a {
    grid-template-columns: 40% 1fr;
    gap: 18px;
  }
  .interview-side h3 {
    font-size: 18px;
  }
  .article-card h3,
  .walk-grid h3 {
    font-size: 18px;
  }
  .section-heading h2 {
    font-size: 28px;
  }
}
@media (max-width: 800px) {
  :root {
    --header: 64px;
  }
  .shell {
    width: calc(100% - 40px);
  }
  .desktop-nav,
  .business-link {
    display: none;
  }
  .header-actions {
    margin-left: auto;
    gap: 4px;
  }
  .menu-button {
    display: inline-flex;
  }
  .brand {
    width: 154px;
  }
  .hero-stage {
    height: 520px;
    min-height: 0;
  }
  .hero-catch {
    right: 24px;
    top: 28px;
    font-size: 36px;
  }
  .hero-brand {
    bottom: 28px;
  }
  .hero-brand h1 {
    font-size: 46px;
  }
  .hero-brand p {
    font-size: 14px;
  }
  .hero-caption {
    gap: 16px;
    min-height: 102px;
  }
  .photo-story {
    grid-template-columns: 1fr auto;
    gap: 5px 12px;
    align-content: center;
    padding-block: 14px;
  }
  .photo-location {
    grid-column: 1;
  }
  .photo-story strong {
    font-size: 14px;
    line-height: 1.65;
    grid-column: 1;
  }
  .photo-story > svg {
    grid-column: 2;
    grid-row: 1/3;
  }
  .slide-count {
    display: none;
  }
  .slide-controls {
    gap: 4px;
  }
  .slide-controls .icon-button {
    width: 44px;
    height: 44px;
    border: none;
  }
  .slide-controls .play-button {
    margin: 0;
  }
  .channel-nav a {
    gap: 7px;
    font-size: 13px;
    padding-inline: 12px;
    min-height: 60px;
  }
  .channel-arrow {
    display: none;
  }
  .channel-nav a > svg:first-child {
    width: 18px;
  }
  .category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    row-gap: 16px;
  }
  .category-grid a {
    min-height: 78px;
  }
  .category-grid a:nth-child(4) {
    border: 0;
  }
  .category-grid svg {
    width: 24px;
    height: 24px;
  }
  .category-grid a {
    font-size: 12px;
  }
  .section {
    padding-block: 46px 52px;
  }
  .section-heading h2 {
    font-size: 26px;
  }
  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 20px;
  }
  .article-card h3 {
    font-size: 17px;
  }
  .article-card h3 br {
    display: none;
  }
  .interview-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .interview-lead {
    min-height: 450px;
  }
  .interview-side {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 24px;
  }
  .interview-side > a {
    display: block;
    border: 0;
    padding: 0;
  }
  .interview-side img {
    aspect-ratio: 3/2;
    height: auto;
    max-height: none;
    object-fit: cover;
  }
  .interview-side span {
    margin-top: 14px;
  }
  .interview-side h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .walk-grid {
    gap: 20px;
  }
  .walk-grid h3 {
    font-size: 16px;
  }
  .business-band > .shell {
    display: block;
    padding-block: 34px;
  }
  .business-band a {
    width: fit-content;
    margin-top: 14px;
  }
  .business-band h2 {
    font-size: 22px;
  }
  .footer {
    grid-template-columns: 1fr;
    padding-bottom: 104px;
    gap: 22px;
  }
  .footer nav {
    gap: 24px;
    flex-wrap: wrap;
  }
  .bottom-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 40;
    background: #fff;
    border-top: 1px solid var(--line);
    padding: 7px 8px calc(7px + env(safe-area-inset-bottom));
  }
  .bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 48px;
    position: relative;
    font-size: 10px;
    font-weight: 600;
  }
  .bottom-nav a[aria-current] {
    color: #087f98;
  }
  .bottom-nav a[aria-current]:before {
    content: "";
    position: absolute;
    top: -8px;
    width: 30px;
    height: 3px;
    background: var(--cyan);
  }
  .bottom-nav svg {
    width: 22px;
    height: 22px;
  }
}
@media (max-width: 600px) {
  .hero-stage {
    aspect-ratio: 4/5;
    height: auto;
    min-height: 0;
  }
  .hero-photo img {
    object-fit: contain;
    object-position: center;
  }
  .hero-catch {
    font-size: 31px;
    line-height: 1.6;
    top: 22px;
    right: 20px;
  }
  .hero-brand {
    bottom: 24px;
  }
  .hero-brand h1 {
    font-size: 38px;
  }
  .hero-brand p {
    font-size: 12px;
    margin-bottom: 9px;
  }
  .hero-caption {
    min-height: 88px;
    gap: 8px;
  }
  .photo-story strong {
    font-size: 13px;
    max-width: 190px;
  }
  .photo-location {
    font-size: 10px;
  }
  .photo-story > svg {
    display: none;
  }
  .slide-count {
    display: none;
  }
  .slide-controls {
    gap: 0;
  }
  .slide-controls .icon-button {
    width: 36px;
    height: 44px;
  }
  .slide-controls svg {
    width: 19px;
    height: 19px;
  }
  .channel-nav > .shell {
    width: 100%;
  }
  .channel-nav a {
    font-size: 11px;
    justify-content: center;
    gap: 7px;
    padding-inline: 3px;
    min-height: 56px;
  }
  .channel-nav a:first-child {
    border: 0;
  }
  .channel-nav a:last-child {
    border-right: 0;
  }
  .channel-nav a > svg:first-child {
    width: 17px;
    height: 17px;
  }
  .categories {
    padding-block: 25px 28px;
  }
  .small-heading {
    margin-bottom: 18px;
  }
  .small-heading h2 {
    font-size: 16px;
  }
  .small-heading .text-link {
    font-size: 11px;
    gap: 8px;
  }
  .text-link {
    font-size: 12px;
    gap: 9px;
  }
  .category-grid {
    row-gap: 14px;
  }
  .category-grid a {
    font-size: 11px;
    gap: 9px;
    min-height: 67px;
  }
  .category-grid svg {
    width: 23px;
    height: 23px;
  }
  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 22px;
  }
  .section-heading h2 {
    font-size: 24px;
  }
  .section-heading > .text-link {
    align-self: flex-end;
    min-height: 32px;
  }
  .eyebrow {
    margin-bottom: 9px;
    font-size: 11px;
  }
  .article-grid {
    gap: 27px 16px;
  }
  .card-photo {
    aspect-ratio: 4/3;
  }
  .card-photo > span {
    font-size: 9px;
    min-width: 48px;
    padding: 5px 8px 3px 0;
  }
  .card-meta {
    font-size: 10px;
    line-height: 1.7;
    margin-block: 10px 6px;
    align-items: start;
    gap: 4px;
  }
  .card-meta svg {
    width: 14px;
    height: 14px;
    margin-top: 2px;
  }
  .article-card h3 {
    font-size: 15px;
    line-height: 1.65;
  }
  .article-card p {
    display: none;
  }
  .interview-lead {
    min-height: 390px;
  }
  .interview-copy {
    inset: auto 22px 24px;
  }
  .interview-copy h3 {
    font-size: 30px;
  }
  .interview-copy p {
    font-size: 12px;
  }
  .interview-side {
    gap: 16px;
  }
  .interview-side h3 {
    font-size: 16px;
    line-height: 1.65;
  }
  .interview-side h3 br {
    display: none;
  }
  .interview-side span {
    font-size: 10px;
  }
  .walk-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .walk-grid a {
    display: grid;
    grid-template-columns: 42% 1fr;
    gap: 0 18px;
    align-content: center;
  }
  .walk-grid img {
    grid-row: 1/3;
    aspect-ratio: 1;
    height: 100%;
    max-height: 170px;
  }
  .walk-grid span {
    margin: 2px 0 8px;
    font-size: 10px;
  }
  .walk-grid h3 {
    font-size: 17px;
    line-height: 1.65;
  }
  .walk-grid h3 br {
    display: none;
  }
  .business-band h2 {
    font-size: 20px;
  }
  .footer nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 22px;
  }
  .footer nav a {
    min-height: 36px;
    display: flex;
    align-items: center;
  }
  .footer small {
    font-size: 9px;
  }
  .footer img {
    width: 155px;
  }
  dialog {
    padding: 20px;
  }
  .dialog-top h2 {
    font-size: 20px;
  }
}
@media (max-width: 360px) {
  :root {
    --header: 56px;
  }
  .shell {
    width: calc(100% - 32px);
  }
  .brand {
    width: 140px;
  }
  .hero-brand h1 {
    font-size: 30px;
  }
  .hero-brand p {
    font-size: 11px;
  }
  .hero-catch {
    font-size: 27px;
    right: 16px;
    top: 18px;
  }
  .hero-brand {
    bottom: 20px;
  }
  .hero-caption {
    gap: 0;
  }
  .photo-story strong {
    max-width: 176px;
    font-size: 12px;
  }
  .slide-controls .icon-button {
    width: 30px;
  }
  .play-button {
    display: none !important;
  }
  .channel-nav a {
    font-size: 10px;
    gap: 4px;
  }
  .channel-nav a > svg:first-child {
    width: 15px;
  }
  .category-grid a {
    font-size: 10px;
  }
  .section-heading h2 {
    font-size: 21px;
  }
  .small-heading h2 {
    font-size: 15px;
  }
  .small-heading .text-link {
    font-size: 10px;
  }
  .article-grid {
    gap: 24px 13px;
  }
  .article-card h3 {
    font-size: 14px;
  }
  .card-meta {
    font-size: 9px;
  }
  .interview-lead {
    min-height: 360px;
  }
  .interview-copy h3 {
    font-size: 28px;
  }
  .interview-side h3 {
    font-size: 15px;
  }
  .walk-grid h3 {
    font-size: 15px;
  }
}
.photo-story {
  flex: 1;
}
.photo-story strong,
.article-card h3,
.walk-grid h3 {
  text-wrap: balance;
}
.hero-catch {
  text-shadow:
    0 1px 2px #0009,
    0 2px 14px #0006;
}
.hero-stage[data-tone="ink"] .hero-catch {
  text-shadow:
    0 0 3px #fff,
    0 0 8px #fff;
}
@media (max-width: 600px) {
  .slide-controls .icon-button {
    width: 44px;
    height: 44px;
  }
  .hero-stage[data-tone="light-low"] .hero-catch {
    top: 32%;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
