@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400;0,500;0,700;1,400&family=Zen+Kaku+Gothic+New:wght@400;500;700;900&display=swap');

@font-face { font-family: 'Inter'; font-style: normal; font-weight: 300; font-display: swap; src: url('/assets/fonts/inter-300.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('/assets/fonts/inter-400.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap; src: url('/assets/fonts/inter-500.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 700; font-display: swap; src: url('/assets/fonts/inter-700.woff2') format('woff2'); }

:root {
  --accent: #FFE000;
  --text: #111;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-style: normal;
}

html {
  font-style: normal;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

::selection { background: var(--accent); color: var(--text); }

body {
  font-family: 'Inter', 'Noto Sans JP', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-style: normal;
  background: #fff;
  color: var(--text);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a, span, p, div, h1, h2, h3, li, ul, nav, em, i, address {
  font-style: normal;
}

/* ── SCROLL CONTAINER ── */
#scroll-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  scrollbar-width: none;
}
#scroll-container::-webkit-scrollbar { display: none; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 20px 20px 0;
}

.nav-top-row {
  display: flex;
  align-items: baseline;
}

.site-name {
  font-size: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: bold;
  color: var(--text);
  cursor: pointer;
  font-style: normal;
  user-select: none;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-links > span,
.nav-links > a {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.03em;
  color: var(--text);
  cursor: pointer;
  font-style: normal;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  position: relative;
  line-height: 1.2;
}

.word-default {
  display: block;
  color: var(--text);
  transition: transform 0.35s var(--ease-out);
}
.word-yellow {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  color: var(--accent);
  white-space: nowrap;
  transition: transform 0.35s var(--ease-out);
}

@media (pointer: fine) {
  .nav-links > span:hover .word-default,
  .nav-links > a:hover .word-default { transform: translateY(-110%); }
  .nav-links > span:hover .word-yellow,
  .nav-links > a:hover .word-yellow { transform: translateY(-100%); }
}

.nav-links > span.active .word-default { transform: translateY(-110%); }
.nav-links > span.active .word-yellow { transform: translateY(-100%); }

.site-name:hover { color: var(--accent); }

/* ── VIEWS ── */
#index-view,
#work-view,
#info-view,
#media-view,
#evrdy-view {
  display: none;
}

/* ── FILTER BAR ── */
#filter-bar {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 300;
  display: flex;
  flex-direction: row;
  gap: 6px;
}

#filter-bar.hidden,
#media-filter-bar.hidden {
  display: none !important;
}

#media-filter-bar {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 100;
  display: flex;
  flex-direction: row;
  gap: 6px;
}

.filter-btn {
  background: var(--accent);
  color: var(--text);
  border: none;
  cursor: pointer;
  padding: 5px 9px;
  font-family: 'Inter', 'Noto Sans JP', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}
.filter-btn:hover { background: #fff; color: var(--text); }
.filter-btn.active { background: var(--text); color: var(--accent); }
.filter-btn.active:hover { background: #fff; color: var(--accent); }

/* ── WORKS GRID ── */
.grid {
  position: relative;
  transition: height 0.35s ease;
}

#work-view .inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 10px 80px;
}

@keyframes workItemIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.work-anim {
  opacity: 0;
  animation: workItemIn 0.55s var(--ease-out) forwards;
}

.work-meta { max-width: 900px; }

.thumb {
  position: absolute;
  opacity: 0;
  transition: left 0.35s ease, top 0.35s ease, width 0.35s ease;
}

@keyframes itemAppear {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes itemFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes stillGroupIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes stillGroupOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(10px); }
}

.thumb-inner {
  position: relative;
  cursor: pointer;
  display: block;
  overflow: hidden;
}

.thumb img,
.thumb video {
  width: 100%;
  height: auto;
  display: block;
  transition: filter 0.2s, transform 0.4s ease;
}

.thumb-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 14px;
}

.thumb-title {
  font-size: 13px;
  letter-spacing: 0.03em;
  color: #fff;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
  line-height: 1.4;
  font-style: normal;
  font-weight: 500;
}
.thumb-date {
  font-size: 11px;
  color: #fff;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
  font-weight: 400;
  letter-spacing: 0.04em;
  align-self: flex-end;
}

@media (hover: hover) {
  .thumb-inner:hover img,
  .thumb-inner:hover video { filter: brightness(0.5); transform: scale(1.04); }
  .thumb-inner:hover .thumb-title,
  .thumb-inner:hover .thumb-date { opacity: 1; transform: translateY(0); }
  .media-thumb-inner:hover .media-thumb-overlay { background: rgba(0,0,0,0.6); }
  .media-thumb-inner.has-hover.js-hover .media-thumb-img1 { opacity: 0; filter: none; }
  .media-thumb-inner.has-hover:hover .media-thumb-overlay { background: rgba(0,0,0,0.45); }
  .media-thumb-inner:hover .media-thumb-label,
  .media-thumb-inner:hover .media-thumb-title { opacity: 1; transform: translateY(0); }
}

/* ── WORK DETAIL ── */
.inner {
  padding: 0 10px 80px;
}

.back {
  font-size: 13px;
  color: var(--text);
  cursor: pointer;
  letter-spacing: 0.03em;
  margin-bottom: 32px;
  display: inline-block;
  font-style: normal;
}
.back:hover { color: var(--text); }

.work-title {
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  font-style: normal;
}

.work-header { margin-bottom: 28px; }

.work-meta-section {
  margin-top: 32px;
  margin-bottom: 32px;
}
.work-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  grid-template-rows: auto auto;
  gap: 0 48px;
}
.work-meta-cat    { grid-column: 1; grid-row: 1; }
.work-meta-year   { grid-column: 1; grid-row: 2; margin-top: 20px; }
.work-meta-client { grid-column: 2; grid-row: 1 / 3; }
.work-meta-credit { grid-column: 3; grid-row: 1 / 3; }

.work-meta-col-label {
  font-size: 10px;
  letter-spacing: 0.10em;
  color: #aaa;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 300;
}
.work-meta-col-value {
  font-size: 13px;
  font-weight: 300;
  color: var(--text);
  line-height: 1.8;
}

.work-subtitle-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 16px;
}
.work-subtitle {
  font-size: 13px;
  color: #999;
  font-style: normal;
  font-weight: 300;
  margin: 0;
}
.work-year {
  font-size: 13px;
  color: #999;
  font-style: normal;
  font-weight: 300;
  white-space: nowrap;
}

.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
  margin-bottom: 0;
}
.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.work-credit-table {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 32px;
}
.work-credit-role {
  font-size: 13px;
  font-weight: 300;
  color: #999;
  letter-spacing: 0.02em;
  line-height: 1.6;
  white-space: nowrap;
}
.work-credit-name {
  font-size: 13px;
  font-weight: 300;
  color: var(--text);
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.stills {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stills-row {
  display: flex;
  gap: 2px;
  width: 100%;
}
.stills-row img {
  flex: 1;
  min-width: 0;
  height: auto;
  display: block;
}

/* ── INFO ── */
#info-view {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-bottom: 80px;
}
.info-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 10px 80px;
  font-weight: normal;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  align-items: stretch;
}
.info-left {
  display: flex;
  flex-direction: column;
  padding: 0 20px 0 0;
  overflow: hidden;
}
.info-mid {
  display: flex;
  flex-direction: column;
  padding: 0 20px;
}
.info-right {
  display: flex;
  flex-direction: column;
  padding: 0 0 0 20px;
}
.info-col-label {
  font-size: 13px;
  font-weight: bold;
  color: var(--text);
  margin: 0 0 10px;
}
.info-photo-wrap {
  width: 100%;
  flex: 1;
  position: relative;
  overflow: hidden;
}
.info-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0; left: 0;
  display: block;
  transition: opacity 0.4s ease;
}
.info-photo.photo-01 { opacity: 1; }
.info-photo.photo-02 { opacity: 0; }
@media (hover: hover) {
  .info-photo-wrap:hover .info-photo.photo-01 { opacity: 0; }
  .info-photo-wrap:hover .info-photo.photo-02 { opacity: 1; }
}

.info-name {
  font-size: 20px;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 8px;
  font-style: normal;
}
.info-role {
  font-size: 13px;
  font-weight: bold;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.7;
  font-style: normal;
}
.info-title {
  font-size: 13px;
  font-weight: bold;
  color: var(--text);
  margin: 0 0 6px;
  line-height: 1.7;
}
.info-affil {
  font-size: 13px;
  font-weight: normal;
  color: var(--text);
  margin: 0 0 24px;
  line-height: 1.7;
}
.info-bio {
  font-size: 13px;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 12px;
  font-style: normal;
  font-weight: normal;
}
.info-mid > .info-last {
  margin-bottom: 0;
}
.info-bio-en {
  font-size: 13px;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 32px;
  font-style: normal;
  font-weight: 300;
  display: none;
}
.info-lang-toggle {
  display: flex;
  gap: 8px;
  margin-top: auto;
  padding-top: 28px;
}
.info-lang-toggle button {
  background: none;
  border: 1px solid currentColor;
  padding: 4px 10px;
  font-family: inherit;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  color: #aaa;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.info-lang-toggle button.active { color: var(--text); border-color: var(--text); }
.info-lang-toggle button:hover { color: var(--accent); border-color: var(--accent); }

.info-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 0;
  align-items: flex-start;
}
.info-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  display: flex;
  align-items: center;
  transition: color 0.15s ease;
}
.info-links a:hover { color: var(--accent); }
.info-links svg { width: 24px; height: 24px; fill: currentColor; }

.info-edu {
  font-size: 13px;
  color: var(--text);
}
.info-edu-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
  line-height: 1.5;
}
.info-edu-item + .info-edu-item { margin-top: 6px; }
.info-edu-year {
  flex: none;
  font-size: 11px;
  color: #999;
  letter-spacing: 0.03em;
  font-variant-numeric: tabular-nums;
}
.info-mail {
  font-size: 13px;
  color: var(--text);
}
.info-mail a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.15s ease;
}
.info-mail a:hover { color: var(--accent); }
.info-wrap a:hover { color: var(--accent) !important; }

/* ── MEDIA GRID ── */
.media-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 0 10px;
  width: 100%;
  box-sizing: border-box;
  align-items: start;
}

.media-thumb {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  background: #fff;
  overflow: hidden;
}
.media-thumb-inner {
  position: relative;
  cursor: pointer;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.media-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: filter 0.2s;
}
img.media-thumb-extra {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.35s var(--ease-out);
}
.media-thumb-inner.has-hover .media-thumb-img1 {
  transition: filter 0.2s, opacity 0.35s ease;
}
.media-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 14px;
  gap: 3px;
  transition: background 0.15s ease;
}
.media-thumb-label {
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.03em;
  color: var(--accent);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
  text-transform: uppercase;
  font-style: normal;
  margin-bottom: auto;
}
.media-thumb-title {
  font-size: 13px;
  letter-spacing: 0.03em;
  color: #fff;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s var(--ease-out) 0.1s, transform 0.35s var(--ease-out) 0.1s;
  line-height: 1.4;
  font-style: normal;
}
.media-thumb-info { display: none; }

/* ── MEDIA LIST BTN ── */
#media-list-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 300;
  width: 16px;
  height: 16px;
  background: var(--accent);
  border: none;
  outline: none;
  cursor: pointer;
  display: none;
  padding: 0;
  transition: background 0.15s ease;
  -webkit-appearance: none;
  appearance: none;
}
#media-list-btn:hover { background: #ccc; }
#media-list-btn:focus { outline: none; }
#media-list-btn.active { background: var(--text); }
#media-list-btn.active:hover { background: #555; }

@keyframes tileOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(8px); }
}
@keyframes listItemIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── MEDIA LIST VIEW ── */
#media-grid.list-view {
  display: block !important;
  position: static !important;
  height: auto !important;
  padding: 0 20px 80px;
}
#media-grid.list-view .media-thumb {
  display: block !important;
  position: relative !important;
  width: 100% !important;
  left: auto !important;
  top: auto !important;
  aspect-ratio: unset;
  padding: 0;
  border-bottom: 1px solid #e8e8e8;
  overflow: hidden;
  transition: background 0.15s ease;
}
#media-grid.list-view .media-thumb:first-child { border-top: 1px solid #e8e8e8; }
#media-grid.list-view .media-thumb:hover { background: var(--accent); }
#media-grid.list-view .media-thumb-inner { display: none !important; }
#media-grid.list-view .media-thumb-info {
  display: grid !important;
  grid-template-columns: 90px 140px 1fr 2fr 80px;
  column-gap: 24px;
  width: 100%;
  align-items: center;
  padding: 11px 0;
}
#media-grid.list-view .media-thumb-info-date {
  font-size: 11px;
  color: #999;
  letter-spacing: 0.03em;
}
#media-grid.list-view .media-thumb-info-medium {
  font-size: 11px;
  color: var(--text);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
#media-grid.list-view .media-thumb-info-media {
  font-size: 12px;
  color: var(--text);
  font-weight: 500;
}
#media-grid.list-view .media-thumb-info-title {
  font-size: 12px;
  color: #555;
  line-height: 1.4;
}
#media-grid.list-view .media-thumb-info-mediatype {
  display: none;
}

/* ── LOADING ── */
#loading {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}
#loading.hidden {
  opacity: 0;
  pointer-events: none;
}
#loading-text {
  font-family: 'Inter', 'Noto Sans JP', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ── EVRDY GRID ── */
.evrdy-grid { position: relative; }
.evrdy-item { position: absolute; }
.evrdy-item img { width: 100%; height: auto; display: block; }

@media (min-width: 2400px) {
  .media-grid { grid-template-columns: repeat(5, 1fr); }
}

/* ── STILLS OVERLAY ── */
#stills-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 300;
  width: 16px;
  height: 16px;
  background: var(--accent);
  border: none;
  outline: none;
  cursor: pointer;
  display: none;
  padding: 0;
  transition: background 0.15s ease;
  -webkit-appearance: none;
  appearance: none;
}
#stills-btn:hover { background: #fff; }
#stills-btn:focus { outline: none; }
#stills-btn.active { background: var(--text); }
#stills-btn.active:hover { background: #fff; }

#stills-overlay-grid {
  position: relative;
  width: 100%;
}
.still-group {
  position: absolute;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow: hidden;
}
.still-group img,
.still-group video {
  width: 100%;
  height: auto;
  display: block;
  transition: filter 0.2s;
}
.still-group img:hover,
.still-group video:hover { filter: brightness(0.5); }

/* ── FOOTER ── */
footer {
  text-align: center;
  padding: 40px 10px;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--text);
  font-weight: normal;
}

/* ── MOBILE ── */
@media (max-width: 600px) {
  body { font-weight: bold; }
  #filter-bar, #media-filter-bar { display: none !important; }
  #media-list-btn, #stills-btn { display: none !important; }

  .work-title { font-size: 20px; }

  #work-view .inner { padding: 0 4px 80px; }
  .work-title, .work-meta-grid { padding-left: 11px; padding-right: 11px; }

  .work-meta-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0 16px;
  }
  .work-meta-cat    { grid-column: 1; grid-row: 1; }
  .work-meta-year   { grid-column: 2; grid-row: 1; margin-top: 0; }
  .work-meta-client { grid-column: 3; grid-row: 1; }
  .work-meta-credit { grid-column: 1 / -1; grid-row: 2; margin-top: 24px; }
  .work-credit-table { gap: 4px 16px; }
  .work-credit-role, .work-credit-name { font-size: 13px; }

  .media-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 0 4px;
    row-gap: 24px;
    align-items: start;
  }
  .media-thumb {
    padding: 0;
    height: auto;
    overflow: visible;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    aspect-ratio: unset;
  }
  .media-thumb-inner {
    width: 100%;
    height: auto;
    aspect-ratio: unset;
  }
  .media-thumb img {
    width: 100%;
    height: auto;
    max-height: unset;
    object-fit: unset;
  }
  .media-thumb-overlay { display: none; }
  .media-thumb-info {
    display: block;
    padding: 6px 2px 12px;
  }
  .media-thumb-info-date,
  .media-thumb-info-mediatype { display: none; }
  .media-thumb-info-media {
    font-size: 13px;
    font-weight: normal;
    color: var(--text);
    line-height: 1.5;
  }
  .media-thumb-info-medium {
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 2px;
  }
  .media-thumb-info-title {
    font-size: 13px;
    font-weight: normal;
    color: var(--text);
    line-height: 1.5;
  }

  nav {
    padding: 12px 15px 0;
    flex-direction: column;
    gap: 0px;
    align-items: flex-start;
  }
  .nav-top-row { width: 100%; }
  .site-name { padding: 8px 0; display: inline-block; }
  .nav-links {
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .nav-links > span,
  .nav-links > a {
    padding: 6px 0;
    font-size: 13px;
    overflow: hidden;
    white-space: nowrap;
    vertical-align: bottom;
  }
  .nav-links > span .word-yellow,
  .nav-links > a .word-yellow { display: block; }

  .nav-links > span.active .word-default { transform: none; color: var(--accent); }
  .nav-links > span.active .word-yellow { transform: none; }

  .inner { padding: 0 4px 60px; }

  .info-wrap {
    padding: 0 4px 60px;
    grid-template-columns: 1fr;
    gap: 0;
  }
  .info-left {
    width: 100%;
    margin-bottom: 28px;
    padding: 0;
  }
  .info-photo-wrap {
    flex: none;
    height: auto;
    aspect-ratio: 1;
  }
  .info-mid {
    width: 100%;
    padding: 0 11px;
    margin-bottom: 28px;
  }
  .info-right {
    flex: none;
    width: 100%;
    padding: 0 11px;
  }
  .info-lang-toggle {
    margin-top: 20px;
    padding-top: 0;
  }
  .info-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
}
