:root {
  --ink: #000;
  --muted: #6c6c6c;
  --paper: #f4f4f4;
  --white: #fff;
  --jade: #236b5f;
  --water: #78b3bd;
  --cinnabar: #d6001c;
  --gold: #c9a45c;
  --line: rgba(0, 0, 0, .1);
  --shadow: none;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, "Microsoft YaHei", "PingFang SC", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 22px;
  padding: 7px clamp(20px, 4.8vw, 68px);
  background: linear-gradient(180deg, rgba(0, 0, 0, .42), rgba(0, 0, 0, .04));
  border-bottom: 0;
  backdrop-filter: none;
  transition: background .28s ease, box-shadow .28s ease;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 150px;
  flex: 0 0 auto;
}

.brand img {
  width: auto;
  object-fit: contain;
  transition: filter .28s ease;
}

.brand-college { height: 30px; }
.brand-qingpu { height: 31px; }

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(15px, 1.55vw, 26px);
  font-size: 15px;
  white-space: nowrap;
}

.nav-links a,
.nav-action,
.lang-toggle {
  border: 0;
  background: transparent;
  color: var(--white);
  font: inherit;
  cursor: pointer;
  font-weight: 400;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .32);
  transition: color .28s ease, background .28s ease, border-color .28s ease;
}

.nav-links a:hover,
.nav-action:hover { color: rgba(255, 253, 248, .76); }

.lang-toggle {
  min-width: 50px;
  padding: 6px 12px;
  color: var(--white);
  background: rgba(0, 0, 0, .38);
  border: 1px solid rgba(255, 255, 255, .62);
  text-shadow: none;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 1px 10px rgba(0, 0, 0, .1);
}

.site-header.is-scrolled .nav-links a,
.site-header.is-scrolled .nav-action {
  color: #111;
  text-shadow: none;
}

.site-header.is-scrolled .nav-links a:hover,
.site-header.is-scrolled .nav-action:hover {
  color: #00856f;
}

.site-header.is-scrolled .lang-toggle {
  color: #111;
  background: transparent;
  border-color: rgba(0, 0, 0, .35);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(16, 35, 30, .36);
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

main { padding-top: 0; }

.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}

.hero-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 24 / 5;
  min-height: 360px;
  max-height: 520px;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .7s ease;
}

.slide.is-active { opacity: 1; }

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(0, 0, 0, .42);
  font-size: 38px;
  line-height: 42px;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background .2s ease, transform .2s ease;
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, .68);
  transform: translateY(-50%) scale(1.04);
}

.hero-arrow-prev { left: clamp(18px, 4vw, 58px); }
.hero-arrow-next { right: clamp(18px, 4vw, 58px); }

.hero-captions {
  position: absolute;
  left: clamp(18px, 5vw, 76px);
  bottom: clamp(22px, 4vw, 44px);
  z-index: 2;
  width: min(560px, calc(100% - 160px));
  pointer-events: none;
}

.hero-caption {
  position: absolute;
  left: 0;
  bottom: 0;
  margin: 0;
  padding: 14px 18px;
  color: var(--white);
  background: rgba(16, 35, 30, .72);
  border-left: 4px solid var(--cinnabar);
  box-shadow: none;
  font-size: clamp(16px, 1.65vw, 24px);
  font-weight: 700;
  line-height: 1.35;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .45s ease, transform .45s ease;
}

.hero-caption.is-active {
  opacity: 1;
  transform: translateY(0);
}

.hero-dots {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: 20px;
  display: flex;
  gap: 9px;
}

.hero-dots button {
  width: 30px;
  height: 4px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, .55);
  cursor: pointer;
}

.hero-dots button.is-active { background: var(--white); }

.section-pad {
  padding: 48px clamp(18px, 5vw, 76px);
}

.section-heading {
  max-width: 1180px;
  margin: 0 auto 24px;
}

.section-heading p {
  display: none;
}

.section-heading h1,
.section-heading h2 {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.1;
  font-weight: 900;
}

.section-heading h1::before,
.section-heading h2::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  background: #00856f;
  vertical-align: 4px;
}

.feature-banner {
  background: var(--paper);
  padding-top: 54px;
  padding-bottom: 0;
}

.feature-banner a {
  position: relative;
  display: block;
  max-width: 1180px;
  height: clamp(105px, 11vw, 150px);
  margin: 0 auto;
  overflow: hidden;
}

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

.intro {
  position: relative;
  display: grid;
  width: calc(100% - clamp(36px, 10vw, 152px));
  max-width: 1180px;
  min-height: 0;
  aspect-ratio: 1920 / 377;
  margin: 54px auto 0;
  padding: 0;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
  isolation: isolate;
}

.intro-art {
  position: absolute;
  inset: 0;
}

.intro-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity .35s ease;
}

.intro-img.is-active { opacity: 1; }

.intro-copy {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(900px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(22px, 4vw, 44px);
  border-top: 1px solid rgba(255, 253, 248, .35);
  border-bottom: 1px solid rgba(255, 253, 248, .35);
  background: rgba(16, 35, 30, .42);
  backdrop-filter: blur(5px);
}

.intro-copy p {
  margin: 0;
  font-size: clamp(17px, 1.7vw, 24px);
  line-height: 1.85;
  text-wrap: pretty;
}

.intro-copy.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  background: transparent;
}

.programs {
  background: var(--paper);
  padding-top: 34px;
  padding-bottom: 34px;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}

.program-card {
  position: relative;
  min-height: 205px;
  overflow: hidden;
  padding: 22px 20px;
  color: var(--white);
  box-shadow: none;
}

.program-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .22));
}

.program-card.script { background: var(--jade); }
.program-card.vlog { background: var(--water); color: #082321; }
.program-card.ai { background: var(--cinnabar); }

.program-front,
.program-detail {
  position: relative;
  z-index: 1;
}

.program-front {
  min-height: 142px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding-bottom: 34px;
}

.program-front span {
  font-size: 13px;
  font-weight: 700;
}

.program-front h2 {
  margin: 0;
  font-size: clamp(18px, 1.55vw, 25px);
  line-height: 1.22;
}

.front-cta {
  display: inline-flex;
  align-self: center;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 5px 12px;
  border: 1px solid currentColor;
  font-size: 13px;
  font-weight: 700;
}

.program-detail {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 18px 16px;
  max-height: 100%;
  overflow-y: auto;
  color: var(--ink);
  background: rgba(255, 255, 255, .96);
  transform: translateY(calc(100% - 38px));
  transition: transform .35s ease;
}

.program-card:hover .program-detail,
.program-card:focus-within .program-detail { transform: translateY(0); }

.program-detail h3 {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.3;
}

.program-detail p {
  margin: 0 0 12px;
  color: #2d423b;
  font-size: 12px;
  line-height: 1.55;
  opacity: 0;
  transition: opacity .2s ease;
}

.program-detail .cta {
  opacity: 0;
  transition: opacity .2s ease;
}

.program-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.program-card:hover .program-detail p,
.program-card:focus-within .program-detail p,
.program-card:hover .program-detail .cta,
.program-card:focus-within .program-detail .cta {
  opacity: 1;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 7px 14px;
  color: var(--white);
  background: var(--ink);
  font-weight: 700;
  font-size: 13px;
}

.result-cta {
  color: #ef4f50;
  border: 2px solid #ef4f50;
  background: transparent;
  font-weight: 500;
}

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

.masonry {
  max-width: 1180px;
  margin: 0 auto;
  column-count: 3;
  column-gap: 24px;
}

.masonry figure {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 0;
  margin-bottom: 24px;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  break-inside: avoid;
}

.masonry figure:has(img) { cursor: zoom-in; }

.masonry figure.wide,
.masonry figure.tall { grid-column: auto; grid-row: auto; }

.masonry img,
.masonry video {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: filter .25s ease;
}

.masonry figcaption {
  position: static;
  padding: 8px 0 0;
  color: #333;
  background: transparent;
  opacity: 1;
  transform: none;
  font-size: 12px;
  line-height: 1.35;
  transition: color .2s ease;
}

.highlights-grid figcaption {
  display: none;
}

.charm-grid figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: auto;
  max-width: calc(100% - 20px);
  padding: 0;
  color: #fff;
  text-align: right;
  font-size: 12px;
  font-weight: 700;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .72);
}

.charm-grid figure {
  overflow: hidden;
}

.masonry figure:hover img,
.masonry figure:hover video {
  filter: brightness(.96);
}

.masonry figure:hover figcaption {
  opacity: 1;
  color: #000;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 56px 22px 34px;
  background: rgba(5, 12, 10, .9);
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, visibility .22s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: min(1120px, 94vw);
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 22px 70px rgba(0, 0, 0, .42);
}

.lightbox-caption {
  margin: 14px 0 0;
  color: rgba(255, 253, 248, .86);
  font-size: 15px;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 253, 248, .42);
  color: var(--white);
  background: rgba(16, 35, 30, .38);
  font-size: 34px;
  line-height: 36px;
  cursor: pointer;
}

.upcoming {
  background: var(--paper);
}

.event-strip {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.event-strip a {
  min-height: 96px;
  display: flex;
  align-items: center;
  padding: 20px;
  border-left: 0;
  border-top: 5px solid var(--cinnabar);
  background: var(--white);
  font-size: 18px;
  font-weight: 700;
}

.event-strip a:nth-child(2) { border-color: var(--jade); }
.event-strip a:nth-child(3) { border-color: var(--gold); }

.site-footer {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  align-items: center;
  gap: 44px;
  min-height: 112px;
  padding: 18px max(28px, calc((100vw - 1180px) / 2));
  color: rgba(255, 255, 255, .82);
  background: #101010;
  font-size: 11px;
  line-height: 1.45;
}

.footer-brand {
  min-width: 0;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 12px;
  color: #fff;
}

.footer-logo-mark {
  width: 126px;
  height: auto;
  display: block;
}

.footer-logo span {
  padding-left: 11px;
  border-left: 1px solid rgba(255, 255, 255, .55);
  font-size: 8px;
  line-height: 1.35;
  white-space: nowrap;
}

.site-footer p { margin: 0 0 5px; }
.footer-brand > p { color: rgba(255, 255, 255, .72); }
.footer-info { min-width: 0; }

.footer-funding {
  display: block;
  margin: 2px 0 4px;
  color: #fff;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 2px 0 0;
}

.socials a {
  padding: 0;
  border: 0;
  color: #fff;
}

.socials a:not(:last-child)::after {
  content: "  ";
  white-space: pre;
}

.socials a:hover {
  text-decoration: underline;
}

.floating-tools {
  position: fixed;
  right: 28px;
  bottom: 90px;
  z-index: 18;
  display: grid;
  gap: 12px;
}

.floating-tools a,
.floating-tools button {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(0, 0, 0, .74);
  font: 700 14px/1 Arial, sans-serif;
  cursor: pointer;
}

.floating-tools a {
  font-size: 19px;
}

.subpage {
  background: #f6f6f6;
}

.subpage main {
  padding-top: 56px;
}

.subpage .site-header {
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 1px 10px rgba(0, 0, 0, .1);
}

.subpage .nav-links a,
.subpage .nav-action {
  color: #111;
  text-shadow: none;
}

.subpage .nav-links a:hover {
  color: #00856f;
}

.subpage .lang-toggle {
  color: #111;
  background: transparent;
  border-color: rgba(0, 0, 0, .35);
  text-shadow: none;
}

.works-hero {
  padding: 32px clamp(18px, 5vw, 76px) 0;
}

.works-heading {
  margin-bottom: 0;
}

.works-heading h1 {
  font-size: clamp(20px, 1.9vw, 26px);
}

.works-list {
  padding-top: 24px;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.work-card {
  display: block;
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease;
}

.work-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .08);
}

.work-card .thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
}

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

.work-card strong {
  display: block;
  min-height: 58px;
  padding: 12px 16px 16px;
  color: #111;
  font-size: 15px;
  line-height: 1.35;
}

.duration {
  position: absolute;
  right: 8px;
  bottom: 8px;
  min-width: 42px;
  padding: 2px 6px;
  color: #fff;
  background: rgba(0, 0, 0, .62);
  font-size: 12px;
  line-height: 1.35;
  text-align: center;
}

.video-detail {
  padding-top: 34px;
}

.video-detail-shell {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(300px, .86fr);
  gap: 36px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px;
  background: #fff;
}

.video-player-panel {
  display: grid;
  align-items: center;
  min-height: 450px;
  background: #000;
}

.video-player-panel video {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  background: #000;
}

.video-copy-panel {
  padding: 12px 4px 12px 0;
}

.back-link {
  display: inline-flex;
  margin-bottom: 18px;
  color: #00856f;
  font-size: 13px;
}

.video-copy-panel h1 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.2;
}

.video-author {
  margin: 0 0 28px;
  font-size: 14px;
}

.video-copy-panel h2 {
  display: inline-block;
  margin: 0 0 14px;
  padding: 4px 14px;
  color: #f08a00;
  background: #fff1df;
  font-size: 14px;
  line-height: 1.2;
}

.video-copy-panel h2::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 14px;
  margin-right: 7px;
  background: #f08a00;
  vertical-align: -2px;
}

.video-copy-panel p {
  margin: 0 0 14px;
  color: #1a1a1a;
  font-size: 14px;
  line-height: 1.65;
  text-align: justify;
}

.comment-row {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 82px;
  gap: 12px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px 24px 24px;
  background: #fff;
}

.comment-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e9e9e9;
}

.comment-row input {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #bcbcbc;
  background: #fff;
  font: inherit;
  font-size: 14px;
}

.comment-row button {
  height: 40px;
  border: 0;
  color: #fff;
  background: #e57785;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 1080px) {
  .brand { min-width: 0; }
  .brand-college { height: 27px; }
  .brand-qingpu { height: 28px; }
  .nav-links { font-size: 13px; gap: 10px; }
  .program-grid { grid-template-columns: 1fr; }
  .program-card { min-height: 205px; }
  .works-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .video-detail-shell { grid-template-columns: 1fr; }
  .video-player-panel { min-height: 0; }
}

@media (max-width: 820px) {
  .site-header { height: 54px; }
  main { padding-top: 0; }
  .menu-toggle {
    position: absolute;
    top: 7px;
    right: 18px;
    display: flex;
    border-color: rgba(255, 255, 255, .82);
    background: rgba(16, 35, 30, .62);
  }
  .menu-toggle span { background: var(--white); }
  .site-header.is-scrolled .menu-toggle {
    border-color: rgba(0, 0, 0, .45);
    background: var(--white);
  }
  .site-header.is-scrolled .menu-toggle span { background: #111; }
  .nav-links {
    position: absolute;
    top: 54px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 18px 18px;
    background: rgba(16, 35, 30, .94);
    border-bottom: 1px solid rgba(255, 255, 255, .16);
  }
  .nav-links.is-open { display: flex; }
  .site-header.is-scrolled .nav-links {
    background: rgba(255, 255, 255, .98);
    border-bottom-color: rgba(0, 0, 0, .12);
  }
  .nav-links a,
  .nav-action,
  .lang-toggle {
    text-align: left;
    padding: 11px 0;
  }
  .lang-toggle {
    margin-top: 6px;
    text-align: center;
  }
  .hero-slider {
    aspect-ratio: 16 / 7;
    min-height: 215px;
  }
  .hero-captions {
    left: 18px;
    bottom: 18px;
    width: calc(100% - 92px);
  }
  .hero-caption {
    padding: 10px 12px;
    font-size: 15px;
  }
  .hero-arrow {
    width: 38px;
    height: 38px;
    font-size: 30px;
    line-height: 34px;
  }
  .intro { min-height: 0; }
  .program-card {
    min-height: auto;
    padding: 20px;
    overflow: visible;
  }
  .program-front {
    min-height: 190px;
    padding-bottom: 0;
  }
  .program-detail {
    position: relative;
    margin: 20px -20px -20px;
    padding: 14px 20px 18px;
    max-height: none;
    transform: none;
  }
  .masonry {
    column-count: 2;
  }
  .event-strip,
  .site-footer {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px 20px;
  }
  .subpage .nav-links {
    background: rgba(255, 255, 255, .98);
    border-bottom-color: rgba(0, 0, 0, .12);
  }
  .subpage .menu-toggle {
    border-color: rgba(0, 0, 0, .45);
    background: var(--white);
  }
  .subpage .menu-toggle span { background: #111; }
}

@media (max-width: 520px) {
  .brand { gap: 8px; }
  .brand-college { height: 25px; }
  .brand-qingpu { height: 26px; }
  .section-pad { padding-left: 16px; padding-right: 16px; }
  .hero-slider {
    aspect-ratio: 24 / 5;
    min-height: 0;
    background: #9fd4a7;
  }
  .slide { object-fit: contain; }
  .hero-dots { bottom: 12px; }
  .hero-arrow {
    width: 30px;
    height: 30px;
    font-size: 24px;
    line-height: 27px;
  }
  .hero-arrow-prev { left: 10px; }
  .hero-arrow-next { right: 10px; }
  .hero-captions {
    left: 12px;
    bottom: 28px;
    width: calc(100% - 24px);
  }
  .hero-caption {
    padding: 7px 10px;
    font-size: 12px;
    border-left-width: 3px;
  }
  .intro {
    width: calc(100% - 32px);
    min-height: 0;
  }
  .masonry {
    column-count: 1;
  }
  .works-grid { grid-template-columns: 1fr; }
  .video-detail {
    padding-left: 12px;
    padding-right: 12px;
  }
  .video-detail-shell,
  .comment-row {
    padding-left: 14px;
    padding-right: 14px;
  }
  .comment-row {
    grid-template-columns: 24px minmax(0, 1fr);
  }
  .comment-row button {
    grid-column: 2;
    width: 82px;
  }
  .masonry figure.wide,
  .masonry figure.tall { grid-column: span 1; grid-row: span 1; }
  .floating-tools { display: none; }
}
