:root {
  --pink: #dd4a96;
  --blue: #24b4e6;
  --green: #ccdc87;
  --ivory: #fffef8;
  --black: #1a1a1a;
  --red: #d94a33;
  --paper: #ffffff;
  --line: rgba(26, 26, 26, 0.16);
  --muted: rgba(26, 26, 26, 0.66);
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--ivory);
  font-family: Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 0 32px;
  border-bottom: 1px solid transparent;
  background: rgba(255, 254, 248, 0.78);
  backdrop-filter: blur(18px);
  transition: background 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(255, 254, 248, 0.94);
  box-shadow: 0 12px 34px rgba(26, 26, 26, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  height: 100%;
}

.desktop-nav > a,
.nav-item > a {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 13px;
  font-size: 14px;
  font-weight: 800;
}

.desktop-nav > a::after,
.nav-item > a::after {
  position: absolute;
  right: 13px;
  bottom: 20px;
  left: 13px;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
  content: "";
}

.desktop-nav > a:hover,
.nav-item:hover > a,
.nav-item:focus-within > a,
.desktop-nav [aria-current="page"],
.nav-item > [aria-current="page"] {
  color: var(--pink);
}

.desktop-nav > a:hover::after,
.nav-item:hover > a::after,
.nav-item:focus-within > a::after {
  transform: scaleX(1);
}

.nav-item {
  position: relative;
  height: 100%;
}

.dropdown {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  min-width: 238px;
  padding: 12px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 24px 60px rgba(26, 26, 26, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.dropdown.wide {
  min-width: 288px;
}

.dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--black);
  font-size: 14px;
  font-weight: 700;
}

.dropdown a:hover {
  background: var(--green);
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  background: var(--black);
  color: var(--ivory);
  font-size: 14px;
  font-weight: 900;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--black);
  background: transparent;
  cursor: pointer;
}

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

.mobile-panel {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 70;
  width: min(380px, 100vw);
  padding: 24px;
  border-left: 1px solid var(--line);
  background: var(--ivory);
  box-shadow: -24px 0 60px rgba(26, 26, 26, 0.16);
  transform: translateX(100%);
  transition: transform 240ms ease;
}

.mobile-panel.is-open {
  transform: translateX(0);
}

.mobile-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  font-weight: 900;
}

.mobile-panel-head button {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid var(--black);
  background: transparent;
}

.mobile-panel-head button::before,
.mobile-panel-head button::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: var(--black);
  content: "";
}

.mobile-panel-head button::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-panel-head button::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-panel nav {
  display: grid;
  gap: 10px;
}

.mobile-panel a {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 22px;
  font-weight: 900;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.7fr);
  align-items: center;
  min-height: calc(100svh - var(--header-height) - 72px);
  overflow: hidden;
  padding: 72px 5vw 88px;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(255, 254, 248, 0.98) 0%, rgba(255, 254, 248, 0.78) 45%, rgba(255, 254, 248, 0.2) 100%),
    url("assets/film-children-no-more.jpg");
  background-position: center;
  background-size: cover;
}

.hero::after {
  position: absolute;
  right: -7vw;
  bottom: -8vh;
  z-index: -1;
  width: 42vw;
  min-width: 420px;
  height: 42vw;
  min-height: 420px;
  border: 2px solid rgba(26, 26, 26, 0.12);
  transform: rotate(12deg);
  content: "";
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--pink);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: 80px;
  line-height: 0.98;
  font-weight: 900;
}

.hero-subtitle {
  margin: 20px 0 0;
  font-size: 30px;
  font-weight: 900;
}

.hero-lead {
  max-width: 690px;
  margin: 22px 0 0;
  color: rgba(26, 26, 26, 0.78);
  font-size: 18px;
  font-weight: 500;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 2px solid var(--black);
  font-weight: 900;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--black);
  color: var(--ivory);
}

.btn-outline {
  background: transparent;
  color: var(--black);
}

.hero-poster {
  justify-self: end;
  width: min(330px, 70%);
  transform: rotate(4deg);
}

.hero-poster img {
  border: 2px solid var(--black);
  box-shadow: 22px 24px 0 var(--blue);
}

.quick-info {
  position: relative;
  z-index: 5;
  margin: -52px auto 0;
  width: min(1160px, calc(100% - 40px));
  border: 2px solid var(--black);
  background: var(--paper);
}

.quick-info dl {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
}

.quick-info div {
  min-height: 104px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.quick-info div:last-child {
  border-right: 0;
}

.quick-info dt {
  margin-bottom: 8px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-info dd {
  margin: 0;
  font-weight: 900;
}

.section {
  padding: 120px 5vw;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 280px);
  gap: 48px;
  align-items: end;
  min-height: 460px;
  padding: 92px 5vw 76px;
  border-bottom: 2px solid var(--black);
  background:
    linear-gradient(90deg, rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.68)),
    url("assets/film-children-no-more.jpg") center / cover;
  color: var(--ivory);
}

.cineforum-page-hero {
  background:
    linear-gradient(90deg, rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.62)),
    url("assets/film-imagine-still.jpeg") center / cover;
}

.collaboration-page-hero {
  background:
    linear-gradient(90deg, rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.62)),
    url("assets/film-band-outsiders.jpg") center / cover;
}

.page-hero-copy {
  max-width: 880px;
  min-width: 0;
}

.page-hero .eyebrow {
  color: var(--green);
}

.page-hero h1 {
  margin: 0;
  font-size: 72px;
  line-height: 1;
  font-weight: 900;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 254, 248, 0.78);
  font-size: 19px;
  font-weight: 650;
}

.page-hero-count {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 210px;
  border: 2px solid var(--ivory);
  background: var(--pink);
  color: var(--ivory);
}

.page-hero-count strong {
  font-size: 82px;
  line-height: 1;
  font-weight: 900;
}

.page-hero-count span {
  margin-top: 8px;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto 46px;
}

.section-heading h2,
.poster-copy h2,
.forum-copy h2,
.ambassador-copy h2,
.catalog-section-head h2,
.film-detail-copy h1,
.detail-main h2,
.detail-info h2,
.detail-empty h1 {
  margin: 0;
  max-width: 760px;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 900;
}

.section-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 2px solid var(--black);
  background: var(--paper);
  font-weight: 900;
  transition: background 180ms ease, transform 180ms ease;
}

.section-link:hover {
  background: var(--green);
  transform: translateY(-2px);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 40px;
  max-width: 1180px;
  margin: 0 auto;
}

.intro-main {
  padding: 44px;
  border: 2px solid var(--black);
  background: var(--paper);
  font-size: 20px;
  font-weight: 600;
}

.intro-main p {
  margin: 0;
}

.intro-main p + p {
  margin-top: 20px;
}

.intro-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 2px solid var(--black);
}

.intro-stats div {
  display: grid;
  align-content: center;
  min-height: 150px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--green);
}

.intro-stats div:nth-child(2),
.intro-stats div:nth-child(4) {
  border-right: 0;
}

.intro-stats div:nth-child(3),
.intro-stats div:nth-child(4) {
  border-bottom: 0;
  background: var(--blue);
}

.intro-stats strong {
  font-size: 52px;
  line-height: 1;
  font-weight: 900;
}

.intro-stats span {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 900;
}

.poster-band {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 120px 5vw;
  background: var(--black);
  color: var(--ivory);
}

.poster-image {
  justify-self: end;
  max-width: 390px;
}

.poster-image img {
  border: 2px solid var(--ivory);
}

.poster-copy {
  max-width: 720px;
}

.poster-copy .eyebrow {
  color: var(--green);
}

.poster-copy p {
  max-width: 640px;
  color: rgba(255, 254, 248, 0.78);
  font-size: 18px;
}

.color-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 254, 248, 0.5);
  color: var(--black);
  font-weight: 900;
}

.chip.pink {
  background: var(--pink);
}

.chip.blue {
  background: var(--blue);
}

.chip.green {
  background: var(--green);
}

.chip.red {
  background: var(--red);
  color: var(--ivory);
}

.poster-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.poster-download-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 2px solid var(--ivory);
  background: var(--green);
  color: var(--black);
  font-weight: 900;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.poster-download-link:hover {
  background: var(--ivory);
  color: var(--black);
  box-shadow: 8px 8px 0 var(--pink);
  transform: translateY(-2px);
}

.feature-film-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.feature-film {
  position: relative;
  display: block;
  overflow: hidden;
  border: 2px solid var(--black);
  background: var(--paper);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-film:hover {
  transform: translateY(-4px);
  box-shadow: 14px 14px 0 var(--green);
}

.feature-film.dark {
  background: var(--black);
  color: var(--ivory);
}

.feature-film img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 8px 12px;
  border: 2px solid var(--black);
  font-size: 13px;
  font-weight: 900;
}

.badge.pink {
  background: var(--pink);
}

.badge.blue {
  background: var(--blue);
}

.feature-film-copy {
  padding: 28px;
}

.section-label,
.work-card p {
  margin: 0 0 8px;
  color: var(--pink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-film.dark .section-label {
  color: var(--green);
}

.feature-film h3,
.work-card h3,
.program-card h3 {
  margin: 0;
  font-size: 26px;
  line-height: 1.18;
  font-weight: 900;
}

.meta {
  margin: 12px 0 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.feature-film.dark .meta {
  color: rgba(255, 254, 248, 0.62);
}

.feature-film p:last-child {
  margin-bottom: 0;
}

.program {
  background: #f6f2e9;
}

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

.program-card {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 230px;
  padding: 24px;
  border: 2px solid var(--black);
  background: var(--paper);
  transition: background 180ms ease, transform 180ms ease, color 180ms ease;
}

.program-card::after {
  content: "→";
  position: absolute;
  right: 22px;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 2px solid var(--black);
  border-radius: 50%;
  background: var(--ivory);
  color: var(--black);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.program-card:hover {
  background: var(--green);
  transform: translateY(-4px);
}

.program-card:hover::after {
  background: var(--pink);
  color: var(--ivory);
  transform: translateX(4px);
}

.program-card span {
  color: var(--pink);
  font-weight: 900;
}

.program-card p {
  margin: 14px 48px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.program-card:hover p,
.program-card:hover span {
  color: var(--black);
}

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

.work-card {
  display: grid;
  border: 2px solid var(--black);
  background: var(--paper);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 12px 12px 0 var(--green);
}

.work-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.work-card div {
  padding: 22px;
}

.work-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
}

.event-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 27px;
  padding: 0 9px;
  border: 2px solid var(--black);
  background: var(--paper);
  color: var(--black);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.event-badge.gv {
  background: var(--green);
}

.event-badge.ct {
  background: var(--blue);
}

.event-badge.event {
  background: var(--pink);
  color: var(--ivory);
}

.event-badge.regular {
  background: var(--blue);
}

.feature-event-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 900;
}

.feature-event-line small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.feature-film.dark .feature-event-line {
  border-top-color: rgba(255, 254, 248, 0.22);
}

.feature-film.dark .feature-event-line small {
  color: rgba(255, 254, 248, 0.64);
}

.work-card-event {
  display: flex !important;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px !important;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--black) !important;
  font-size: 13px;
  font-weight: 900 !important;
}

.section-tabs {
  position: sticky;
  top: var(--header-height);
  z-index: 35;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 14px 5vw;
  border-bottom: 2px solid var(--black);
  background: rgba(255, 254, 248, 0.96);
  backdrop-filter: blur(16px);
}

.section-tabs a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  transition: background 180ms ease, border-color 180ms ease;
}

.section-tab-title {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35em;
}

.section-title-part {
  display: inline-block;
}

.section-title-light {
  font-weight: 400;
}

.section-title-strong {
  font-weight: 900;
}

.section-tabs a:hover {
  border-color: var(--black);
  background: var(--green);
}

.section-tabs .section-count {
  color: var(--red);
  font-size: 12px;
}

.film-filters {
  padding: 18px 5vw;
  border-bottom: 2px solid var(--black);
  background: rgba(255, 254, 248, 0.98);
}

.film-filters-head,
.film-filter-groups,
.film-filter-note {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.film-filters-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.film-filters-head > div {
  display: grid;
  gap: 3px;
}

.film-filters-head strong {
  font-size: 16px;
  font-weight: 900;
}

.film-filters-head span,
.film-filter-note {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.film-filters-head b {
  color: var(--black);
}

.film-filter-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.film-filter-reset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 40px;
  padding: 0 14px;
  border: 2px solid var(--black);
  background: var(--black);
  color: var(--ivory);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.film-filter-reset:hover {
  transform: translateY(-1px);
}

.film-filter-reset.is-active {
  background: var(--green);
  color: var(--black);
}

.film-filter-reset span {
  color: inherit;
  font-size: 12px;
}

.film-filter-groups {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.film-filter-row {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.film-filter-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 12px;
  border: 2px solid var(--black);
  background: var(--black);
  color: var(--ivory);
  font-size: 13px;
  font-weight: 900;
}

.film-filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 2px;
}

.film-filter-group button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  padding: 0 13px;
  border: 2px solid var(--black);
  background: var(--paper);
  color: var(--black);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.film-filter-group button.is-active {
  background: var(--green);
}

.film-filter-group button:not(.is-active):hover {
  background: rgba(36, 180, 230, 0.16);
  transform: translateY(-1px);
}

.film-filter-group button span {
  color: var(--red);
  font-size: 12px;
}

.film-filter-note {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 12px;
}

.film-filter-result {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  flex: 0 0 auto;
  gap: 18px;
  min-width: 176px;
  min-height: 42px;
  padding: 0 15px;
  border: 2px solid var(--black);
  background: var(--blue);
  color: var(--black);
  font-weight: 900;
}

.film-filter-result span {
  font-size: 12px;
}

.film-filter-result strong {
  font-size: 15px;
  font-weight: 900;
}

.film-filter-note b {
  color: var(--black);
}

.film-catalog {
  padding: 72px 5vw 120px;
}

.catalog-section {
  max-width: 1180px;
  margin: 0 auto;
  scroll-margin-top: calc(var(--header-height) + 92px);
}

.catalog-section + .catalog-section {
  margin-top: 92px;
}

.catalog-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 24px;
  align-items: end;
  margin-bottom: 24px;
}

.catalog-section-head .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.catalog-section-head > .section-count {
  justify-self: end;
  padding: 8px 12px;
  border: 2px solid var(--black);
  background: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.catalog-section-head > p:not(.eyebrow) {
  grid-column: 1 / -1;
  max-width: 720px;
  margin: 4px 0 0;
  color: var(--muted);
  font-weight: 700;
}

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

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

.catalog-card {
  display: grid;
  grid-template-rows: 1fr auto;
  min-width: 0;
  border: 2px solid var(--black);
  background: var(--paper);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.catalog-card:hover {
  transform: translateY(-4px);
  box-shadow: 12px 12px 0 var(--pink);
}

.catalog-card-main {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  color: inherit;
}

.catalog-card figure {
  margin: 0;
  background: #f6f2e9;
}

.catalog-card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.catalog-card-copy {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.catalog-card-copy p {
  margin: 0;
  color: var(--pink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-card-copy h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 900;
}

.catalog-card-copy span,
.catalog-card-copy small {
  color: var(--muted);
  font-weight: 700;
}

.catalog-card-copy small {
  font-size: 13px;
}

.catalog-card-copy strong {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 900;
}

.card-screenings {
  display: grid;
  gap: 7px;
  margin-top: 4px;
  padding-top: 11px;
  border-top: 1px solid var(--line);
}

.catalog-card-copy .card-screening-line {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  margin: 0;
  color: var(--black);
  font-size: 12px;
  font-weight: 900;
}

.catalog-card-copy .card-screening-line > span:last-child {
  min-width: 0;
  overflow: hidden;
  color: var(--black);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.catalog-card-copy .event-badge {
  flex: 0 0 auto;
  color: var(--black);
}

.catalog-card-copy .event-badge.event {
  color: var(--ivory);
}

.screening-more {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.catalog-card-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 8px;
  padding: 0 18px 18px;
}

.catalog-ticket-link,
.catalog-detail-link,
.detail-ticket-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 2px solid var(--black);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.catalog-ticket-link:hover,
.catalog-detail-link:hover,
.detail-ticket-link:hover {
  transform: translateY(-2px);
}

.catalog-ticket-link {
  background: var(--black);
  color: var(--ivory);
}

.catalog-ticket-link.is-fallback {
  background: var(--green);
  color: var(--black);
}

.catalog-detail-link {
  background: transparent;
  color: var(--black);
}

.film-detail-hero {
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(0, 780px);
  gap: 58px;
  align-items: end;
  justify-content: center;
  padding: 82px 5vw 92px;
  background: var(--black);
  color: var(--ivory);
}

.film-detail-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  border: 2px solid var(--ivory);
  background: #f6f2e9;
  object-fit: cover;
  box-shadow: 18px 18px 0 var(--blue);
}

.back-link {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--green);
  font-weight: 900;
}

.back-link:hover {
  color: var(--blue);
}

.film-detail-copy .eyebrow {
  color: var(--green);
}

.film-detail-copy h1 {
  max-width: 840px;
  font-size: 58px;
}

.detail-title-en {
  margin: 16px 0 0;
  color: rgba(255, 254, 248, 0.68);
  font-size: 24px;
  font-weight: 800;
}

.detail-logline {
  max-width: 720px;
  margin: 26px 0 0;
  font-size: 19px;
  font-weight: 650;
}

.detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.detail-badges span,
.detail-badges a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(255, 254, 248, 0.44);
  background: rgba(255, 254, 248, 0.08);
  font-size: 13px;
  font-weight: 900;
}

.detail-badges a {
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.detail-badges a:hover {
  transform: translateY(-2px);
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.detail-ticket-link {
  min-height: 50px;
  padding: 0 24px;
  border-color: var(--ivory);
  background: var(--green);
  color: var(--black);
}

.detail-ticket-link.is-fallback {
  background: transparent;
  color: var(--ivory);
}

.detail-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 42px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 86px 5vw;
}

.detail-main p {
  margin: 22px 0 0;
  color: rgba(26, 26, 26, 0.78);
  font-size: 19px;
  font-weight: 600;
}

.detail-trailer-embed {
  width: 100%;
  margin: 22px 0 30px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 2px solid var(--black);
  background: var(--black);
  box-shadow: 12px 12px 0 var(--green);
}

.detail-trailer-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.detail-still {
  width: 100%;
  margin-top: 34px;
  aspect-ratio: 16 / 9;
  border: 2px solid var(--black);
  object-fit: cover;
}

.detail-info {
  align-self: start;
  border: 2px solid var(--black);
  background: var(--paper);
}

.detail-info h2 {
  padding: 24px;
  border-bottom: 2px solid var(--black);
  font-size: 28px;
}

.detail-info dl {
  margin: 0;
}

.detail-info div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.detail-info div:last-child {
  border-bottom: 0;
}

.detail-info dt {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.detail-info dd {
  margin: 0;
  font-weight: 800;
}

.detail-info dd span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.detail-info .detail-screening-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 0;
  border-bottom: 0;
}

.detail-info .detail-screening-item {
  display: grid;
  gap: 7px;
  margin-top: 0;
  color: var(--black);
  font-size: 14px;
  font-weight: 800;
}

.detail-info .detail-screening-item + .detail-screening-item {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.detail-info .detail-screening-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 0;
  color: var(--black);
  font-size: 14px;
  font-weight: 900;
}

.detail-info .detail-screening-item small,
.detail-info .detail-screening-event span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.detail-info .detail-screening-event {
  display: grid;
  gap: 3px;
  margin-top: 1px;
  padding: 9px 10px;
  border: 1px solid var(--line);
  background: rgba(204, 220, 135, 0.18);
}

.detail-info .detail-screening-event strong {
  color: var(--black);
  font-size: 13px;
  font-weight: 900;
}

.detail-info .event-badge {
  display: inline-flex;
  margin-top: 0;
  color: var(--black);
  font-size: 12px;
}

.detail-info .event-badge.event {
  color: var(--ivory);
}

.related-films {
  padding: 0 5vw 120px;
}

.detail-empty {
  min-height: calc(100svh - var(--header-height));
  padding: 120px 5vw;
}

.detail-empty p:not(.eyebrow) {
  max-width: 560px;
  margin: 18px 0 28px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 650;
}

.forum {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 620px);
  justify-content: center;
  gap: 62px;
  align-items: center;
  background: var(--blue);
}

.forum-image img {
  border: 2px solid var(--black);
  box-shadow: -18px 18px 0 var(--green);
}

.forum-copy p:not(.eyebrow) {
  margin: 18px 0 26px;
  font-size: 18px;
  font-weight: 600;
}

.cineforum-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: 58px;
  align-items: center;
  min-height: calc(100svh - var(--header-height));
  padding: 72px 5vw 86px;
  background: var(--blue);
}

.cineforum-hero-copy {
  max-width: 820px;
}

.cineforum-hero-copy .back-link {
  margin-bottom: 34px;
}

.cineforum-hero-copy h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 84px);
  line-height: 0.98;
}

.cineforum-hero-copy p:not(.eyebrow) {
  max-width: 720px;
  margin: 28px 0 0;
  font-size: 21px;
  font-weight: 750;
}

.cineforum-poster {
  margin: 0;
}

.cineforum-poster img {
  display: block;
  width: 100%;
  border: 2px solid var(--black);
  background: var(--paper);
  box-shadow: 12px 12px 0 var(--green);
}

.cineforum-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 42px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 86px 5vw 120px;
}

.cineforum-main-poster {
  justify-self: center;
  width: min(760px, 100%);
}

.cineforum-main-poster img {
  box-shadow: 16px 16px 0 var(--green);
}

.cineforum-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  align-items: start;
  gap: 32px;
  width: 100%;
}

.cineforum-story {
  padding: 46px;
  border: 2px solid var(--black);
  background: var(--paper);
}

.cineforum-story h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.08;
}

.cineforum-story p:not(.eyebrow) {
  margin: 22px 0 0;
  color: rgba(26, 26, 26, 0.78);
  font-size: 18px;
  font-weight: 650;
}

.cineforum-info {
  background: var(--ivory);
  box-shadow: 12px 12px 0 rgba(221, 74, 150, 0.2);
}

.cineforum-info h2 {
  padding: 22px 24px;
  background: var(--green);
  font-size: 26px;
}

.cineforum-info div {
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 14px;
  padding: 16px 20px;
}

.cineforum-info dd {
  line-height: 1.45;
}

.cineforum-info dd span + span,
.cineforum-info dd span + br {
  margin-top: 8px;
}

.cineforum-speakers {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cineforum-speakers li {
  display: grid;
  gap: 3px;
}

.cineforum-speakers strong {
  font-weight: 900;
}

.cineforum-speakers span {
  margin-top: 0 !important;
}

.cineforum-apply {
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.cineforum-apply a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 58px;
  padding: 0 34px;
  border: 2px solid var(--black);
  background: var(--black);
  color: var(--ivory);
  font-size: 18px;
  font-weight: 900;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.cineforum-apply a:hover {
  background: var(--green);
  color: var(--black);
  box-shadow: 8px 8px 0 var(--pink);
  transform: translateY(-2px);
}

.filmforum {
  background: var(--ivory);
}

.venue-photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto 34px;
}

.venue-photo {
  position: relative;
  margin: 0;
  border: 2px solid var(--black);
  background: var(--black);
  box-shadow: 18px 18px 0 var(--blue);
  overflow: hidden;
}

.venue-photo-alt {
  box-shadow: 18px 18px 0 var(--green);
}

.venue-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.venue-photo figcaption {
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 10px 14px;
  background: var(--ivory);
  border: 2px solid var(--black);
  color: var(--black);
  font-size: 14px;
  font-weight: 900;
}

.venue-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 32px;
  max-width: 1180px;
  margin: 0 auto;
}

.venue-copy {
  padding: 40px;
  border: 2px solid var(--black);
  background: var(--pink);
  color: var(--ivory);
  font-size: 22px;
  font-weight: 800;
}

.venue-copy p {
  margin: 0;
}

.venue-info {
  margin: 0;
  border: 2px solid var(--black);
  background: var(--paper);
}

.venue-info div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.venue-info div:last-child {
  border-bottom: 0;
}

.venue-info dt {
  font-weight: 900;
}

.venue-info dd {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.guide {
  background: var(--black);
  color: var(--ivory);
}

.guide .section-action .btn {
  border-color: var(--ivory);
  background: var(--green);
  color: var(--black);
}

.guide .eyebrow {
  color: var(--green);
}

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

.ticket-card {
  min-height: 250px;
  padding: 26px;
  border: 1px solid rgba(255, 254, 248, 0.22);
  background: rgba(255, 254, 248, 0.08);
}

.ticket-card.accent {
  background: var(--red);
}

.ticket-card span {
  display: block;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.ticket-card.accent span {
  color: var(--ivory);
}

.ticket-card strong {
  display: block;
  margin-top: 24px;
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
}

.ticket-card p {
  margin: 20px 0 0;
  color: rgba(255, 254, 248, 0.74);
  font-weight: 600;
}

.ambassador {
  display: grid;
  grid-template-columns: minmax(0, 620px) minmax(260px, 360px);
  gap: 64px;
  align-items: center;
  justify-content: center;
  padding: 110px 5vw;
  background: var(--green);
}

.ambassador-copy p:not(.eyebrow) {
  font-size: 19px;
  font-weight: 650;
}

.ambassador-photo {
  margin: 0;
  border: 2px solid var(--black);
  background: var(--ivory);
  box-shadow: 18px 18px 0 var(--pink);
  overflow: hidden;
}

.ambassador-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1.62;
  object-fit: cover;
}

.collaboration {
  background: var(--ivory);
}

.cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 12px;
  align-items: center;
  justify-content: center;
  max-width: 1040px;
  margin: 0 auto 42px;
}

.section-action {
  display: flex;
  justify-content: center;
  max-width: 1180px;
  margin: 34px auto 0;
}

.partner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0 22px;
  border: 2px solid var(--black);
  border-radius: 999px;
  background: var(--paper);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
}

.partner.large {
  min-height: 64px;
  padding-inline: 22px;
  font-size: 16px;
}

.partner.pink {
  background: var(--pink);
  color: var(--ivory);
}

.partner.blue {
  background: var(--blue);
}

.partner.green {
  background: var(--green);
}

.partner.red {
  background: var(--red);
  color: var(--ivory);
}

.collaboration-detail {
  padding: 86px 5vw 120px;
  background: var(--ivory);
}

.collaboration-intro {
  max-width: 1180px;
  margin: 0 auto 36px;
  padding: 44px;
  border: 2px solid var(--black);
  background: var(--green);
}

.collaboration-intro h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
}

.collaboration-intro p:not(.eyebrow) {
  max-width: 820px;
  margin: 20px 0 0;
  font-size: 19px;
  font-weight: 700;
}

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

.partner-detail-card {
  display: grid;
  align-content: start;
  min-height: 250px;
  padding: 24px;
  border: 2px solid var(--black);
  background: var(--paper);
}

.partner-detail-card img {
  width: 100%;
  height: 76px;
  margin-bottom: 28px;
  object-fit: contain;
  object-position: left center;
}

.partner-detail-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.15;
}

.partner-detail-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.community {
  background: #f6f2e9;
}

.community-board {
  max-width: 1180px;
  margin: 0 auto;
}

.community-latest {
  border: 2px solid var(--black);
  background: var(--paper);
}

.community-latest-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px;
  border-bottom: 2px solid var(--black);
}

.community-latest-head h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}

.community-latest-head a {
  font-size: 14px;
  font-weight: 900;
  color: var(--red);
}

.community-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.community-list li + li {
  border-top: 1px solid var(--line);
}

.community-list a {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 100px;
  align-items: center;
  gap: 22px;
  min-height: 76px;
  padding: 18px 26px;
  transition: background 180ms ease;
}

.community-list a:hover {
  background: var(--green);
}

.community-category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid var(--black);
  background: var(--ivory);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.community-list strong {
  overflow: hidden;
  font-size: 20px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.community-list time {
  justify-self: end;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.community-empty {
  padding: 30px 26px;
  color: var(--muted);
  font-weight: 800;
}

.community-page-hero {
  background:
    linear-gradient(180deg, rgba(255, 254, 248, 0.9), rgba(246, 242, 233, 0.96)),
    url("assets/filmforum-theater.jpg?ver=20260513x") center / cover;
}

.community-page-hero,
.community-page-hero .page-hero-copy p:not(.eyebrow),
.community-page-hero .back-link {
  color: var(--black);
}

.community-page-hero .eyebrow {
  color: var(--pink);
}

.community-page-hero .page-hero-count {
  border-color: var(--black);
  box-shadow: 12px 12px 0 var(--blue);
}

.board-page {
  min-height: 70vh;
  background: var(--ivory);
}

.board-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 5vw 96px;
}

.board-section #bo_list,
.board-section #bo_v,
.board-section #bo_w {
  width: 100% !important;
}

.board-section #bo_cate {
  margin: 0 0 28px;
}

.board-section .board-category-select {
  display: none;
}

.board-section .board-category-select label {
  display: block;
  margin: 0 0 8px;
  color: var(--pink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
}

.board-section .board-category-select select {
  width: 100%;
  min-height: 52px;
  padding: 0 48px 0 15px;
  border: 2px solid var(--black);
  border-radius: 0;
  background-color: var(--paper);
  background-image:
    linear-gradient(45deg, transparent 50%, var(--black) 50%),
    linear-gradient(135deg, var(--black) 50%, transparent 50%);
  background-position:
    calc(100% - 24px) 22px,
    calc(100% - 16px) 22px;
  background-repeat: no-repeat;
  background-size: 8px 8px;
  color: var(--black);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
  appearance: none;
  box-shadow: 8px 8px 0 rgba(36, 180, 230, 0.22);
}

.board-section .board-category-select select:focus {
  outline: 3px solid rgba(221, 74, 150, 0.32);
  outline-offset: 2px;
}

.board-section #bo_cate_ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.board-section #bo_cate a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--black);
  background: var(--paper);
  font-weight: 900;
}

.board-section #bo_cate #bo_cate_on,
.board-section #bo_cate a:hover {
  background: var(--black);
  color: var(--ivory);
}

.board-section #bo_cate #bo_cate_on::after {
  display: none;
}

.board-section .tbl_head01 table {
  width: 100%;
  border: 2px solid var(--black);
  border-collapse: collapse;
  background: var(--paper);
}

.board-section .tbl_head01 th,
.board-section .tbl_head01 td {
  border-bottom: 1px solid var(--line);
}

.board-section .tbl_head01 th {
  padding: 15px 12px;
  background: #f6f2e9;
  color: var(--black);
  font-weight: 900;
}

.board-section .tbl_head01 td {
  padding: 15px 12px;
}

.board-section .bo_tit a {
  font-weight: 900;
}

.board-section .bo_cate_link,
.board-section .notice_icon {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-right: 8px;
  padding: 0 9px;
  border: 1px solid var(--black);
  background: var(--green);
  color: var(--black);
  font-size: 12px;
  font-weight: 900;
}

.board-section .btn {
  min-height: 40px;
  padding: 0 14px;
  font-size: 14px;
  transform: none;
}

.board-section .btn:hover {
  transform: none;
}

.board-section #bo_btn_top,
.board-section .bo_fx {
  margin-bottom: 18px;
}

.board-section #bo_list_total {
  color: var(--muted);
  font-weight: 800;
}

.board-section #bo_v {
  padding: 0;
  border: 2px solid var(--black);
  background: var(--paper);
}

.board-section #bo_v_title,
.board-section #bo_v_info,
.board-section #bo_v_atc {
  padding-right: 26px;
  padding-left: 26px;
}

.board-section #bo_v_title {
  padding-top: 28px;
}

.board-section #bo_v_title .bo_v_tit {
  font-size: 30px;
  line-height: 1.25;
}

.board-section #bo_v_atc {
  padding-bottom: 34px;
}

.board-section .pg_wrap {
  margin-top: 28px;
}

.detail-badges a {
  display: inline-flex;
  align-items: center;
}

/* Community board polish */
.board-page .community-page-hero {
  min-height: 390px;
  padding-top: 78px;
  padding-bottom: 58px;
}

.board-page .community-page-hero .page-hero-copy {
  max-width: 790px;
}

.board-page .community-page-hero h1 {
  margin-top: 4px;
  font-size: clamp(46px, 6vw, 76px);
  line-height: 1;
}

.board-page .community-page-hero .page-hero-count {
  width: min(290px, 100%);
  min-height: 150px;
  background: var(--pink);
  color: var(--ivory);
}

.board-page .community-page-hero .page-hero-count strong {
  font-size: 72px;
}

.board-section {
  width: min(1120px, 100%);
  padding-top: 54px;
}

.board-section #bo_list {
  margin: 0;
}

.board-section #bo_cate {
  margin: 0 0 26px;
}

.board-section #bo_cate li {
  padding: 0;
}

.board-section #bo_cate a {
  min-height: 36px;
  border: 2px solid var(--line);
  border-radius: 0;
  color: var(--black);
  line-height: 1;
  box-shadow: none;
}

.board-section #bo_cate #bo_cate_on {
  border-color: var(--black);
  background: var(--black);
  color: var(--ivory);
  box-shadow: none;
}

.board-section #bo_btn_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 20px;
}

.board-section #bo_btn_top::after,
.board-section .bo_fx::after,
.board-section #bo_v_info::after,
.board-section #bo_v_top::after,
.board-section #bo_v_share::after {
  display: none;
}

.board-section #bo_list_total {
  float: none;
  line-height: 1.4;
  color: var(--black);
  font-size: 14px;
}

.board-section .btn_bo_user,
.board-section .bo_fx,
.board-section .bo_v_com {
  float: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.board-section .btn_bo_user li,
.board-section .bo_v_com > li {
  float: none;
  width: auto;
  margin: 0;
  background: transparent;
}

.board-section .btn_b01.btn,
.board-section .btn_b03.btn,
.board-section .btn_admin.btn,
.board-section .btn_bo_sch,
.board-section .btn_more_opt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  min-width: 42px;
  height: 42px;
  min-height: 42px;
  padding: 0;
  border: 2px solid var(--black);
  border-radius: 0;
  background: var(--paper);
  color: var(--black);
  box-shadow: none;
}

.board-section .btn_b01.btn:hover,
.board-section .btn_b03.btn:hover,
.board-section .btn_admin.btn:hover,
.board-section .btn_bo_sch:hover,
.board-section .btn_more_opt:hover {
  background: var(--green);
  color: var(--black);
}

.board-section .more_opt {
  top: calc(100% + 8px);
  right: 0;
  min-width: 120px;
  border: 2px solid var(--black);
  border-radius: 0;
  box-shadow: 8px 8px 0 rgba(26, 26, 26, 0.12);
}

.board-section .more_opt::before,
.board-section .more_opt::after {
  display: none;
}

.board-section .more_opt li {
  width: auto;
  padding: 10px 12px;
}

.board-section .more_opt li button,
.board-section .more_opt li a {
  font-weight: 800;
}

.board-section .tbl_head01.tbl_wrap {
  overflow: hidden;
  border: 2px solid var(--black);
  background: var(--paper);
}

.board-section .tbl_head01 table {
  border: 0;
}

.board-section .tbl_head01 caption {
  overflow: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
}

.board-section .tbl_head01 thead th {
  height: 58px;
  border: 0;
  border-bottom: 2px solid var(--black);
  background: #f6f2e9;
  font-size: 14px;
}

.board-section .tbl_head01 tbody td {
  height: 72px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper) !important;
  color: var(--black);
}

.board-section .tbl_head01 tbody tr:last-child td {
  border-bottom: 0;
}

.board-section #bo_list tbody tr {
  border-left: 0;
}

.board-section #bo_list tbody tr:hover {
  border-left: 0;
}

.board-section #bo_list tbody tr:hover td {
  background: rgba(204, 220, 135, 0.38) !important;
}

.board-section #bo_list .td_num,
.board-section #bo_list .td_num2,
.board-section #bo_list .td_datetime,
.board-section #bo_list .td_name {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.board-section #bo_list .td_num2 {
  width: 76px;
}

.board-section #bo_list .td_name {
  width: 140px;
}

.board-section #bo_list .td_datetime {
  width: 90px;
}

.board-section #bo_list .td_num,
.board-section #bo_list .td_num2,
.board-section #bo_list .td_datetime,
.board-section #bo_list .td_name,
.board-section .bo_cate_link,
.board-section .notice_icon {
  word-break: keep-all;
  white-space: nowrap;
}

.board-section #bo_list .td_chk {
  width: 38px;
}

.board-section .chk_box input[type="checkbox"] + label {
  color: var(--black);
}

.board-section .chk_box input[type="checkbox"] + label:hover {
  color: var(--black);
}

.board-section .chk_box input[type="checkbox"] + label span {
  border: 1px solid var(--black);
  border-radius: 0;
  background: var(--paper);
}

.board-section .chk_box input[type="checkbox"]:checked + label span {
  border-color: var(--black);
  border-radius: 0;
  background: var(--green) url("skin/board/basic/img/chk.png") no-repeat 50% 50%;
}

.board-section .td_subject {
  padding-top: 18px !important;
  padding-bottom: 18px !important;
}

.board-section .bo_tit {
  color: var(--black);
}

.board-section .bo_tit a {
  font-size: 18px;
  line-height: 1.35;
}

.board-section #bo_list .cnt_cmt,
.board-section #bo_list .bo_tit .new_icon,
.board-section #bo_list .bo_tit .hot_icon,
.board-section #bo_list .bo_tit .fa-lock,
.board-section #bo_list .bo_tit .fa-download,
.board-section #bo_list .bo_tit .fa-link {
  border: 1px solid var(--black);
  border-radius: 0;
  background: var(--ivory);
  color: var(--black);
}

.board-section #bo_list .cnt_cmt {
  display: inline-flex;
  align-items: center;
  height: 20px;
  margin-left: 4px;
  padding: 0 6px;
  font-weight: 900;
}

.board-section .bo_cate_link,
.board-section #bo_v_title .bo_v_cate,
.board-section .notice_icon {
  float: none;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0 10px 0 0;
  padding: 0 10px;
  border: 1px solid var(--black);
  border-radius: 0;
  background: var(--green);
  color: var(--black);
  font-size: 12px;
  font-weight: 900 !important;
  line-height: 1;
}

.board-section .empty_table {
  height: 150px;
  color: var(--muted);
  font-weight: 800;
}

.board-section .bo_sch {
  top: 50%;
  left: 50%;
  width: min(430px, calc(100vw - 40px));
  max-height: none;
  margin: 0;
  border: 2px solid var(--black);
  border-radius: 0;
  box-shadow: 12px 12px 0 rgba(26, 26, 26, 0.14);
  transform: translate(-50%, -50%);
}

.board-section .bo_sch h3 {
  border-bottom: 2px solid var(--black);
  font-size: 20px;
}

.board-section .bo_sch select,
.board-section .bo_sch .sch_bar {
  border: 1px solid var(--black);
  border-radius: 0;
  box-shadow: none;
}

.board-section .bo_sch .bo_sch_cls {
  background: var(--paper);
  color: var(--black);
}

.board-section .bo_sch .sch_btn {
  color: var(--black);
}

.board-section .bo_sch_bg {
  background: rgba(26, 26, 26, 0.35);
}

.board-section #bo_v {
  overflow: hidden;
  margin: 0;
  border: 2px solid var(--black);
  background: var(--paper);
}

.board-section #bo_v > header {
  padding: 34px 36px 24px;
  border-bottom: 2px solid var(--black);
  background: #f6f2e9;
}

.board-section #bo_v_title {
  margin: 0;
  padding: 0;
}

.board-section #bo_v_title .bo_v_cate {
  margin-bottom: 16px;
  background: var(--pink);
  color: var(--ivory);
}

.board-section #bo_v_title .bo_v_tit {
  margin: 0;
  color: var(--black);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.15;
  font-weight: 900;
  word-break: keep-all;
}

.board-section #bo_v_info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  padding: 18px 36px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.board-section #bo_v_info .profile_info {
  float: none;
  display: flex;
  align-items: center;
  min-width: 0;
  margin: 0;
}

.board-section #bo_v_info .profile_info .pf_img {
  display: none;
}

.board-section #bo_v_info .profile_info .profile_info_ct {
  float: none;
  padding: 0;
}

.board-section #bo_v_info strong {
  margin-right: 14px;
  color: var(--black);
  font-weight: 800;
}

.board-section #bo_v_top {
  flex: 0 0 auto;
}

.board-section #bo_v_atc {
  min-height: 260px;
  padding: 34px 36px 42px;
}

.board-section #bo_v_share {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 0 26px;
}

.board-section #bo_v_sns {
  float: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.board-section #bo_v_sns li {
  float: none;
  width: auto;
  margin: 0;
}

.board-section #bo_v_sns li a,
.board-section #bo_v_share .btn {
  min-width: 42px;
  height: 38px;
  border: 1px solid var(--black);
  border-radius: 0;
  font-weight: 800;
  line-height: 38px;
}

.board-section #bo_v_share .btn {
  width: auto;
  padding: 0 12px;
  color: var(--black);
}

.board-section #bo_v_con {
  min-height: 220px;
  margin: 0;
  color: var(--black);
  font-size: 18px;
  line-height: 1.85;
  word-break: keep-all;
}

.board-section #bo_v_con:empty::before {
  color: var(--muted);
  font-weight: 800;
  content: "본문 내용이 없습니다.";
}

.board-section #bo_v_file,
.board-section #bo_v_link,
.board-section .bo_v_nb,
.board-section #bo_vc,
.board-section #bo_vc_w {
  margin: 0;
  padding: 0 36px 34px;
}

.board-section #bo_v_file li,
.board-section #bo_v_link li,
.board-section .bo_v_nb li {
  border: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.board-section #bo_v_file li:hover,
.board-section #bo_v_link li:hover {
  border-color: var(--black);
  background: rgba(204, 220, 135, 0.25);
  color: var(--black);
}

.board-section #bo_v_file a:focus,
.board-section #bo_v_file li:hover a,
.board-section #bo_v_file a:active,
.board-section #bo_v_link a:focus,
.board-section #bo_v_link li:hover a,
.board-section #bo_v_link a:active,
.board-section #bo_v_file li:hover i,
.board-section #bo_v_link li:hover i,
.board-section .bo_vc_act li a:hover {
  color: var(--black);
}

.board-section #bo_v_file li:hover .bo_v_file_cnt,
.board-section #bo_v_link li:hover .bo_v_link_cnt {
  color: var(--muted);
}

.board-section .bo_v_nb {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.board-section .bo_v_nb li:hover {
  background: rgba(204, 220, 135, 0.3);
}

.board-section .cmt_btn {
  margin: 0;
  padding: 24px 0 16px;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--black);
}

.board-section .cmt_btn span.total {
  color: var(--pink);
}

.board-section .cmt_btn span.total::after {
  background: var(--pink);
}

.board-section #bo_v_act .bo_v_good,
.board-section #bo_v_act .bo_v_nogood {
  width: auto;
  min-width: 82px;
  padding: 0 16px;
  border: 1px solid var(--black);
  border-radius: 0;
  background: var(--paper);
  color: var(--black);
}

.board-section #bo_v_act a:hover,
.board-section #bo_v_act .bo_v_good:hover,
.board-section #bo_v_act .bo_v_nogood:hover {
  border-color: var(--black);
  background: var(--green);
  color: var(--black);
}

.board-section #bo_v_act_good,
.board-section #bo_v_act_nogood {
  background: var(--pink);
  color: var(--ivory);
}

.board-section #bo_vc article {
  border-bottom: 1px solid var(--line);
}

.board-section #bo_vc article .profile_img img,
.board-section #bo_vc article .pf_img img {
  border-radius: 0;
}

.board-section .bo_vc_act {
  border: 1px solid var(--black);
  border-radius: 0;
}

.board-section .bo_vc_act::before,
.board-section .bo_vc_act::after {
  display: none;
}

.board-section .bo_vc_w textarea,
.board-section .bo_vc_w_info .frm_input {
  border: 1px solid var(--black);
  border-radius: 0;
  box-shadow: none;
}

.board-section .bo_vc_w .btn_submit {
  border-radius: 0;
}

.board-section #bo_w {
  width: 100% !important;
  padding: 34px;
  border: 2px solid var(--black);
  background: var(--paper);
}

.board-section #bo_w .tbl_frm01 th,
.board-section #bo_w .tbl_frm01 td {
  border-color: var(--line);
}

.board-section #bo_w input[type="text"],
.board-section #bo_w input[type="password"],
.board-section #bo_w textarea,
.board-section #bo_w select {
  border: 1px solid var(--black);
  border-radius: 0;
  box-shadow: none;
}

.board-section #wrapper,
.board-section #container {
  width: 100%;
  min-height: 0;
  margin: 0;
  padding: 0;
  background: transparent;
}

.board-section #container_title {
  margin: 0 0 22px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--black);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.2;
}

.gnuboard-page .mobile-gnuboard-hero {
  min-height: 300px;
  background:
    linear-gradient(180deg, rgba(255, 254, 248, 0.88), rgba(246, 242, 233, 0.96)),
    url("assets/filmforum-theater-2.jpg?ver=20260513x") center / cover;
  color: var(--black);
}

.gnuboard-page .mobile-gnuboard-hero .eyebrow {
  color: var(--pink);
}

.gnuboard-page .mobile-gnuboard-hero .back-link,
.gnuboard-page .mobile-gnuboard-hero p:not(.eyebrow) {
  color: var(--black);
}

.board-section .list_01 {
  overflow: hidden;
  border: 2px solid var(--black);
  background: var(--paper);
}

.board-section .list_01 ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.board-section .list_01 li {
  padding: 20px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.board-section .list_01 li:last-child {
  border-bottom: 0;
}

.board-section .list_01 li.bo_notice {
  background: rgba(221, 74, 150, 0.08);
}

.board-section .list_01 li:hover {
  background: rgba(204, 220, 135, 0.28);
}

.board-section .bo_cate_ico {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 10px;
}

.board-section .bo_subject {
  display: block;
  padding: 0;
  color: var(--black);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
  word-break: keep-all;
}

.board-section .bo_info {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: 12px;
  padding: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}

.board-section .bo_info i {
  margin-left: 0;
}

.board-section #bo_list .bo_subject .new_icon,
.board-section .bo_cmt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  margin-left: 4px;
  padding: 0 5px;
  border: 1px solid var(--black);
  border-radius: 0;
  background: var(--green);
  color: var(--black);
  font-size: 11px;
  font-weight: 900;
  vertical-align: middle;
}

.board-section .btn_top {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.board-section .btn_top li {
  float: none;
  margin: 0;
}

.board-section .fix_btn.write_btn {
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 2px solid var(--black);
  background: var(--black);
  color: var(--ivory);
}

.board-section #bo_list_total {
  margin: 18px 0 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #f6f2e9;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-align: left;
}

.board-section #bo_sch {
  display: grid;
  grid-template-columns: minmax(92px, 0.34fr) minmax(0, 1fr);
  gap: 0;
  margin: 18px 0 0;
  border: 2px solid var(--black);
  background: var(--paper);
}

.board-section #bo_sch legend {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.board-section #bo_sch form {
  display: contents;
}

.board-section #bo_sch select,
.board-section #bo_sch .sch_input {
  width: 100%;
  height: 44px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.board-section #bo_sch select {
  border-right: 1px solid var(--line);
  padding: 0 10px;
  color: var(--black);
  font-weight: 800;
}

.board-section #bo_sch .sch_input {
  padding: 0 48px 0 12px;
  color: var(--black);
}

.board-section #bo_sch .sch_btn {
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--green);
  color: var(--black);
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
  padding: 42px 5vw;
  border-top: 2px solid var(--black);
  background: var(--black);
  color: var(--ivory);
}

.site-footer-info {
  max-width: 960px;
}

.site-footer-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-bottom: 14px;
}

.site-footer-info strong {
  display: inline-flex;
  font-size: 17px;
  line-height: 1.35;
}

.site-footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 12px;
  max-width: 920px;
  color: rgba(255, 254, 248, 0.72);
  font-size: 13px;
  line-height: 1.65;
}

.site-footer-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-footer-meta span:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 12px;
  background: rgba(255, 254, 248, 0.26);
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 254, 248, 0.68);
  overflow-wrap: anywhere;
}

.site-footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  color: rgba(255, 254, 248, 0.52);
  font-size: 12px;
  line-height: 1.4;
}

.site-footer-copy {
  margin-top: 14px !important;
  color: rgba(255, 254, 248, 0.48) !important;
  font-size: 12px;
  line-height: 1.5;
}

.site-footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 254, 248, 0.28);
  color: rgba(255, 254, 248, 0.72);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-footer-social a:hover {
  border-color: var(--green);
  background: var(--green);
  color: var(--black);
  transform: translateY(-2px);
}

.site-footer-social svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.site-footer-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex: 0 0 auto;
  text-align: right;
}

.site-footer a {
  font-weight: 900;
}

.site-footer-account {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  color: rgba(255, 254, 248, 0.46);
  font-size: 11px;
  line-height: 1;
}

.site-footer-account a {
  color: rgba(255, 254, 248, 0.56);
  font-weight: 600;
}

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

.site-footer-info a,
.site-footer-legal a {
  color: rgba(255, 254, 248, 0.78);
}

.site-footer-info a:hover,
.site-footer-legal a:hover {
  color: var(--green);
}

.site-footer .site-footer-login {
  color: rgba(255, 254, 248, 0.56);
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
}

.site-footer .site-footer-login:hover {
  color: var(--green);
}

.legal-hero {
  padding: 160px 5vw 46px;
  border-bottom: 2px solid var(--black);
  background: var(--green);
}

.legal-hero h1 {
  max-width: 960px;
  margin: 10px 0 14px;
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.96;
}

.legal-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: rgba(15, 15, 15, 0.72);
  font-size: 18px;
  line-height: 1.7;
}

.legal-section {
  padding: 64px 5vw 90px;
  background: var(--paper);
}

.legal-document {
  max-width: 920px;
  padding: 44px;
  border: 2px solid var(--black);
  background: var(--ivory);
  box-shadow: 12px 12px 0 rgba(36, 180, 230, 0.18);
}

.legal-document h2 {
  margin: 38px 0 12px;
  font-size: 24px;
  line-height: 1.25;
}

.legal-document h2:first-child {
  margin-top: 0;
}

.legal-document p,
.legal-document li,
.legal-document dd {
  color: rgba(15, 15, 15, 0.78);
  font-size: 16px;
  line-height: 1.8;
}

.legal-document ul {
  display: grid;
  gap: 8px;
  margin: 10px 0 0;
  padding-left: 22px;
}

.legal-document dl {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
}

.legal-document dl div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.legal-document dt {
  font-weight: 900;
}

.legal-document dd {
  margin: 0;
}

.legal-effective {
  margin-top: 30px;
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1000ms ease, transform 1000ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero .reveal,
.page-hero .reveal,
.film-detail-hero .reveal,
.cineforum-hero .reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 1240px) {
  .desktop-nav {
    gap: 0;
  }

  .desktop-nav > a,
  .nav-item > a {
    padding-inline: 9px;
    font-size: 13px;
  }

  .hero h1 {
    font-size: 64px;
  }

  .hero-poster {
    width: min(300px, 78%);
  }
}

@media (max-width: 1024px) {
  .site-header {
    padding-inline: 20px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block !important;
    flex: 0 0 42px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 68px 24px 104px;
  }

  .hero-bg {
    background-image:
      linear-gradient(180deg, rgba(255, 254, 248, 0.98) 0%, rgba(255, 254, 248, 0.8) 62%, rgba(255, 254, 248, 0.56) 100%),
      url("assets/film-children-no-more.jpg");
  }

  .hero-poster {
    justify-self: start;
    width: 230px;
    margin-top: 42px;
  }

  .quick-info {
    margin-top: -52px;
  }

  .quick-info dl,
  .ticket-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-info div:nth-child(2) {
    border-right: 0;
  }

  .quick-info div:nth-child(1),
  .quick-info div:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .intro-grid,
  .poster-band,
  .feature-film-grid,
  .forum,
  .venue-grid,
  .ambassador,
  .page-hero,
  .film-detail-hero,
  .detail-body,
  .cineforum-hero,
  .cineforum-body {
    grid-template-columns: 1fr;
  }

  .poster-image {
    justify-self: start;
    max-width: 310px;
  }

  .program-grid,
  .work-list,
  .partner-detail-grid,
  .catalog-grid,
  .catalog-grid.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .film-filter-groups {
    grid-template-columns: 1fr;
  }

  .community-list a {
    grid-template-columns: 132px minmax(0, 1fr) 92px;
    gap: 16px;
  }

  .page-hero {
    width: 100vw;
    max-width: 100vw;
    min-height: auto;
    overflow: hidden;
  }

  .page-hero-copy,
  .page-hero p:not(.eyebrow) {
    width: calc(100vw - 48px) !important;
    max-width: calc(100vw - 48px) !important;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-all;
    white-space: normal !important;
  }

  .page-hero p:not(.eyebrow) {
    width: min(34ch, calc(100vw - 48px)) !important;
    max-width: min(34ch, calc(100vw - 48px)) !important;
  }

  .page-hero h1 {
    width: min(100%, 10ch);
    max-width: 100%;
    font-size: clamp(42px, 7vw, 58px);
    overflow-wrap: anywhere;
    white-space: normal !important;
  }

  .page-hero-count {
    justify-self: start;
    width: min(260px, 100%);
  }

  .film-detail-hero {
    align-items: start;
  }

  .film-detail-poster {
    max-width: 360px;
  }

  .cineforum-body {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .cineforum-main-poster {
    width: min(680px, 100%);
  }

  .cineforum-detail-grid {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 66px;
  }

  body {
    overflow-x: hidden;
  }

  .brand span {
    font-size: 14px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .hero {
    padding: 54px 20px 96px;
  }

  .hero::after {
    min-width: 260px;
    min-height: 260px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .page-hero {
    width: 100vw;
    max-width: 100vw;
    overflow: hidden;
    padding: 64px 20px 58px;
  }

  .page-hero-copy,
  .page-hero p:not(.eyebrow) {
    width: calc(100vw - 40px) !important;
    max-width: calc(100vw - 40px) !important;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-all;
    white-space: normal !important;
  }

  .page-hero p:not(.eyebrow) {
    width: min(32ch, calc(100vw - 40px)) !important;
    max-width: min(32ch, calc(100vw - 40px)) !important;
  }

  .page-hero h1 {
    width: min(100%, 10ch);
    max-width: 100%;
    font-size: 36px;
    overflow-wrap: anywhere;
    word-break: normal;
    white-space: normal !important;
  }

  .page-hero p:not(.eyebrow),
  .detail-logline,
  .detail-main p {
    font-size: 16px;
  }

  .page-hero-count {
    min-height: 154px;
  }

  .page-hero-count strong {
    font-size: 58px;
  }

  .hero-subtitle {
    font-size: 24px;
  }

  .hero-lead,
  .poster-copy p,
  .forum-copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-actions,
  .color-chips,
  .poster-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .poster-download-link {
    width: 100%;
  }

  .quick-info dl,
  .intro-stats,
  .program-grid,
  .work-list,
  .ticket-grid,
  .catalog-grid,
  .catalog-grid.compact,
  .catalog-section-head {
    grid-template-columns: 1fr;
  }

  .film-filters-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .film-filter-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .film-filter-reset {
    width: 100%;
  }

  .film-filter-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .film-filter-label {
    width: fit-content;
    min-height: 34px;
  }

  .film-filter-note {
    align-items: flex-start;
    justify-content: flex-start;
    gap: 4px;
  }

  .film-filter-result {
    width: 100%;
  }

  .catalog-card-actions {
    grid-template-columns: 1fr;
  }

  .detail-actions,
  .detail-ticket-link {
    width: 100%;
  }

  .detail-trailer-embed {
    margin-bottom: 26px;
    box-shadow: 8px 8px 0 var(--green);
  }

  .community-latest-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .community-list a {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .community-list strong {
    white-space: normal;
  }

  .community-list time {
    justify-self: start;
  }

  .board-section {
    padding: 52px 24px 76px;
  }

  .board-page .community-page-hero {
    min-height: auto;
    padding: 54px 20px 46px;
  }

  .board-page .community-page-hero h1 {
    font-size: 34px;
  }

  .board-page .community-page-hero .page-hero-count {
    min-height: 128px;
    box-shadow: 10px 10px 0 var(--blue);
  }

  .board-page .community-page-hero .page-hero-count strong {
    font-size: 54px;
  }

  .board-section .board-category-select select {
    width: calc(100% - 8px);
  }

  .board-section #bo_btn_top {
    align-items: flex-start;
    flex-direction: column;
  }

  .board-section #bo_cate {
    display: none;
  }

  .board-section .board-category-select {
    display: block;
    margin: 0 0 20px;
  }

  .board-section .btn_bo_user,
  .board-section .bo_fx,
  .board-section .bo_v_com {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .board-section .tbl_head01 {
    overflow-x: visible;
  }

  .board-section .tbl_head01 table {
    min-width: 0;
    table-layout: fixed;
  }

  .board-section #bo_list thead th:nth-last-child(-n+3),
  .board-section #bo_list .td_name,
  .board-section #bo_list .td_num:not(.td_num2),
  .board-section #bo_list .td_datetime {
    display: none;
  }

  .board-section #bo_list .td_num2 {
    width: 76px;
  }

  .board-section #bo_v_title,
  .board-section #bo_v_info,
  .board-section #bo_v_atc {
    padding-right: 18px;
    padding-left: 18px;
  }

  .board-section #bo_v > header {
    padding: 26px 18px 20px;
  }

  .board-section #bo_v_title .bo_v_tit {
    font-size: 30px;
  }

  .board-section #bo_v_info {
    align-items: flex-start;
    flex-direction: column;
  }

  .board-section #bo_v_atc {
    padding-top: 26px;
    padding-bottom: 30px;
  }

  .board-section #bo_sch {
    position: relative !important;
    display: grid !important;
    grid-template-columns: minmax(96px, 0.32fr) minmax(0, 1fr) !important;
    width: 100% !important;
    min-width: 0 !important;
    min-inline-size: 0;
    max-width: 100%;
    overflow: hidden;
    padding: 0 46px 0 0 !important;
  }

  .board-section #bo_sch form {
    display: contents !important;
  }

  .board-section #bo_sch select,
  .board-section #bo_sch .sch_input {
    min-width: 0;
  }

  .board-section #bo_sch .sch_input {
    padding-right: 12px;
  }

  .board-section #bo_sch .sch_btn {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    width: 46px !important;
    height: 44px !important;
    border-left: 1px solid var(--line);
    background: var(--green);
  }

  body #bo_sch {
    position: relative !important;
    display: grid !important;
    grid-template-columns: minmax(96px, 0.32fr) minmax(0, 1fr) !important;
    width: 100% !important;
    min-inline-size: 0;
    padding: 0 46px 0 0 !important;
  }

  body #bo_sch form {
    display: contents !important;
  }

  body #bo_sch .sch_btn {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    width: 46px !important;
    height: 44px !important;
    background: var(--green) !important;
  }

  .board-section #bo_v_con {
    font-size: 16px;
  }

  .board-section #bo_v_file,
  .board-section #bo_v_link,
  .board-section .bo_v_nb,
  .board-section #bo_vc,
  .board-section #bo_vc_w {
    padding-right: 18px;
    padding-left: 18px;
  }

  .board-section #bo_w {
    padding: 24px 18px;
  }

  .section-tabs {
    position: relative;
    top: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
    padding-inline: 20px;
  }

  .section-tabs a {
    justify-content: space-between;
    min-height: 46px;
    padding: 0 12px;
    border: 2px solid var(--line);
    line-height: 1.2;
    white-space: normal;
  }

  .section-tabs a:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .section-tabs .section-count {
    flex: 0 0 auto;
    margin-left: auto;
  }

  .film-filters {
    padding-inline: 20px;
  }

  .film-filter-group {
    overflow-x: auto;
  }

  .film-catalog,
  .detail-body,
  .related-films {
    padding-inline: 20px;
  }

  .film-catalog {
    padding-top: 58px;
    padding-bottom: 82px;
  }

  .collaboration-detail {
    padding: 64px 20px 82px;
  }

  .catalog-section + .catalog-section {
    margin-top: 68px;
  }

  .catalog-section-head > .section-count {
    justify-self: start;
  }

  .film-detail-hero {
    padding: 58px 20px 72px;
    gap: 38px;
  }

  .cineforum-hero {
    min-height: auto;
    padding: 58px 20px 72px;
    gap: 38px;
  }

  .cineforum-poster {
    max-width: none;
  }

  .film-detail-copy h1 {
    font-size: 38px;
  }

  .detail-title-en {
    font-size: 19px;
  }

  .detail-body {
    padding-top: 64px;
    padding-bottom: 72px;
  }

  .cineforum-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    inline-size: calc(100vw - 40px) !important;
    width: calc(100vw - 40px) !important;
    max-width: calc(100vw - 40px) !important;
    margin-right: auto;
    margin-left: auto;
    overflow: visible;
    padding: 64px 0 82px;
  }

  .cineforum-story,
  .cineforum-detail-grid,
  .cineforum-info,
  .cineforum-poster {
    min-width: 0;
    max-width: 100%;
  }

  .cineforum-story h2,
  .cineforum-story p:not(.eyebrow) {
    inline-size: calc(100vw - 92px) !important;
    max-inline-size: calc(100vw - 92px) !important;
    white-space: normal !important;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .cineforum-main-poster {
    justify-self: start;
    inline-size: calc(100vw - 64px) !important;
    width: calc(100vw - 64px) !important;
    max-width: calc(100vw - 64px) !important;
  }

  .cineforum-main-poster img {
    inline-size: calc(100vw - 64px) !important;
    width: calc(100vw - 64px) !important;
    max-width: calc(100vw - 64px) !important;
    box-shadow: 8px 8px 0 var(--green);
  }

  .cineforum-detail-grid {
    grid-template-columns: 1fr;
    width: 100% !important;
    max-width: 100% !important;
    gap: 24px;
  }

  .cineforum-story {
    inline-size: calc(100vw - 40px) !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .cineforum-story h2 {
    font-size: 28px;
    line-height: 1.13;
  }

  .cineforum-info {
    inline-size: calc(100vw - 48px) !important;
    width: calc(100vw - 48px) !important;
    max-width: calc(100vw - 48px) !important;
    box-shadow: 8px 8px 0 rgba(221, 74, 150, 0.2);
  }

  .cineforum-info div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .cineforum-apply {
    justify-content: stretch;
  }

  .cineforum-apply a {
    width: 100%;
  }

  .detail-info div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .quick-info div,
  .quick-info div:nth-child(2),
  .intro-stats div,
  .intro-stats div:nth-child(2),
  .intro-stats div:nth-child(4) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-info div:last-child,
  .intro-stats div:last-child {
    border-bottom: 0;
  }

  .section,
  .poster-band,
  .ambassador {
    padding: 82px 20px;
  }

  .section-heading {
    display: block;
    margin-bottom: 30px;
  }

  .section-heading h2,
  .poster-copy h2,
  .forum-copy h2,
  .ambassador-copy h2,
  .catalog-section-head h2,
  .detail-main h2,
  .detail-info h2,
  .detail-empty h1 {
    font-size: 32px;
  }

  .intro-main,
  .venue-copy,
  .collaboration-intro,
  .cineforum-story {
    padding: 26px;
    font-size: 17px;
  }

  .partner-detail-grid {
    grid-template-columns: 1fr;
  }

  .partner-detail-card {
    min-height: 210px;
  }

  .cineforum-hero-copy p:not(.eyebrow),
  .cineforum-story p:not(.eyebrow) {
    font-size: 16px;
  }

  .feature-film h3,
  .work-card h3,
  .program-card h3,
  .catalog-card-copy h3 {
    font-size: 22px;
  }

  .program-card,
  .ticket-card {
    min-height: 190px;
  }

  .venue-info div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .ticket-card strong {
    font-size: 36px;
  }

  .ambassador-photo {
    box-shadow: 12px 12px 0 var(--pink);
  }

  .venue-photos {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 28px;
  }

  .venue-photo {
    box-shadow: 12px 12px 0 var(--blue);
  }

  .venue-photo-alt {
    box-shadow: 12px 12px 0 var(--green);
  }

  .venue-photo figcaption {
    left: 14px;
    bottom: 14px;
  }

  .partner,
  .partner.large {
    width: 100%;
    min-height: 56px;
    padding-inline: 18px;
    font-size: 16px;
  }

  .site-footer {
    display: block;
  }

  .site-footer-meta,
  .site-footer-legal {
    display: grid;
    gap: 7px;
  }

  .site-footer-meta span {
    display: block;
  }

  .site-footer-meta span::after,
  .site-footer-legal span {
    display: none;
  }

  .site-footer-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer p {
    max-width: 30ch;
    line-height: 1.65;
  }

  .site-footer-actions {
    align-items: flex-start;
    margin-top: 20px;
    text-align: left;
  }

  .site-footer-account {
    justify-content: flex-start;
  }

  .site-footer-actions a {
    display: inline-block;
  }

  .legal-hero {
    padding: 118px 20px 42px;
  }

  .legal-hero h1 {
    font-size: 40px;
  }

  .legal-section {
    padding: 46px 20px 70px;
  }

  .legal-document {
    padding: 28px 20px;
    box-shadow: 8px 8px 0 rgba(36, 180, 230, 0.18);
  }

  .legal-document h2 {
    font-size: 21px;
  }

  .legal-document dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* Community board redesign */
.board-section #bo_list.community-board-list {
  display: grid;
  gap: 26px;
}

.board-section #bo_list.community-board-list #bo_cate {
  margin: 0;
}

.board-section #bo_list.community-board-list #bo_cate_ul {
  gap: 10px;
}

.board-section #bo_list.community-board-list #bo_cate a {
  min-height: 42px;
  padding: 0 16px;
  border-color: var(--black);
  background: var(--paper);
  font-size: 14px;
}

.board-section #bo_list.community-board-list #bo_cate #bo_cate_on,
.board-section #bo_list.community-board-list #bo_cate a:hover {
  background: var(--black);
  color: var(--ivory);
}

.board-section #bo_list.community-board-list #bo_btn_top {
  margin: 0;
  padding: 18px 20px;
  border: 2px solid var(--black);
  background: var(--paper);
  box-shadow: 10px 10px 0 rgba(36, 180, 230, 0.24);
}

.board-section #bo_list.community-board-list #bo_list_total {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
}

.board-section #bo_list.community-board-list #bo_list_total span {
  color: var(--black);
  font-size: 20px;
  font-weight: 900;
}

.board-section #bo_list.community-board-list .tbl_head01.tbl_wrap {
  overflow: visible;
  border: 0;
  background: transparent;
}

.board-section #bo_list.community-board-list .tbl_head01 table,
.board-section #bo_list.community-board-list .tbl_head01 tbody,
.board-section #bo_list.community-board-list .tbl_head01 tr,
.board-section #bo_list.community-board-list .tbl_head01 td {
  display: block;
}

.board-section #bo_list.community-board-list .tbl_head01 thead {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.board-section #bo_list.community-board-list .tbl_head01 tbody {
  display: grid;
  gap: 16px;
}

.board-section #bo_list.community-board-list .tbl_head01 tr {
  position: relative;
  display: grid;
  grid-template-columns: 98px minmax(0, 1fr) 150px 86px 96px;
  align-items: stretch;
  min-height: 118px;
  border: 2px solid var(--black);
  background: var(--paper);
  box-shadow: 10px 10px 0 rgba(26, 26, 26, 0.08);
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.board-section #bo_list.community-board-list .tbl_head01 tr.bo_notice {
  background: rgba(221, 74, 150, 0.08);
}

.board-section #bo_list.community-board-list .tbl_head01 tr:hover {
  background: rgba(204, 220, 135, 0.25);
  box-shadow: 10px 10px 0 rgba(36, 180, 230, 0.26);
  transform: translate(-2px, -2px);
}

.board-section #bo_list.community-board-list .tbl_head01 td {
  display: flex;
  align-items: center;
  min-width: 0;
  height: auto;
  padding: 22px 18px !important;
  border: 0;
  background: transparent !important;
  color: var(--black);
}

.board-section #bo_list.community-board-list .td_chk {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: auto;
  padding: 0 !important;
}

.board-section #bo_list.community-board-list .td_num2 {
  justify-content: center;
  border-right: 1px solid var(--line);
  color: var(--black);
  font-size: 18px;
  font-weight: 900;
}

.board-section #bo_list.community-board-list .td_subject {
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
}

.board-section #bo_list.community-board-list .bo_tit a {
  display: inline;
  color: var(--black);
  font-size: 25px;
  font-weight: 900;
  line-height: 1.24;
  word-break: keep-all;
}

.board-section #bo_list.community-board-list .bo_tit a:hover {
  color: var(--pink);
}

.board-section #bo_list.community-board-list .td_name,
.board-section #bo_list.community-board-list .td_num:not(.td_num2),
.board-section #bo_list.community-board-list .td_datetime {
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  color: var(--black);
  font-size: 14px;
  font-weight: 900;
}

.board-section #bo_list.community-board-list .td_name::before,
.board-section #bo_list.community-board-list .td_num:not(.td_num2)::before,
.board-section #bo_list.community-board-list .td_datetime::before {
  color: var(--pink);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.board-section #bo_list.community-board-list .td_name::before {
  content: "Writer";
}

.board-section #bo_list.community-board-list .td_num:not(.td_num2)::before {
  content: "Views";
}

.board-section #bo_list.community-board-list .td_datetime::before {
  content: "Date";
}

.board-section #bo_list.community-board-list .bo_cate_link,
.board-section #bo_list.community-board-list .notice_icon {
  min-height: 30px;
  border: 1px solid var(--black);
}

.board-section #bo_list.community-board-list .notice_icon {
  background: var(--ivory);
  color: var(--pink);
}

.board-section #bo_list.community-board-list .new_icon,
.board-section #bo_list.community-board-list .bo_tit .new_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  margin-left: 6px;
  padding: 0 6px;
  border: 1px solid var(--black);
  background: var(--pink);
  color: var(--ivory);
  font-size: 12px;
  font-weight: 900;
  vertical-align: middle;
}

.board-section #bo_list.community-board-list .empty_table {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  border: 2px solid var(--black);
  background: var(--paper) !important;
  color: var(--muted);
  font-weight: 900;
}

.board-section #bo_v.community-board-view {
  display: grid;
  gap: 24px;
  max-width: 100%;
  min-width: 0;
  overflow: visible;
  border: 0;
  background: transparent;
}

.board-section #bo_v.community-board-view * {
  min-width: 0;
}

.board-section #bo_v.community-board-view > header,
.board-section #bo_v.community-board-view #bo_v_info,
.board-section #bo_v.community-board-view #bo_v_atc,
.board-section #bo_v.community-board-view #bo_v_file,
.board-section #bo_v.community-board-view #bo_v_link,
.board-section #bo_v.community-board-view .bo_v_nb {
  width: 100%;
  max-width: 100%;
  border: 2px solid var(--black);
  background: var(--paper);
}

.board-section #bo_v.community-board-view > header {
  padding: 38px 40px;
  box-shadow: 14px 14px 0 rgba(221, 74, 150, 0.22);
}

.board-section #bo_v.community-board-view #bo_v_title {
  padding: 0;
}

.board-section #bo_v.community-board-view #bo_v_title .bo_v_cate {
  min-height: 32px;
  margin: 0 0 16px;
  padding: 0 12px;
  border: 1px solid var(--black);
  background: var(--green);
  color: var(--black);
}

.board-section #bo_v.community-board-view #bo_v_title .bo_v_tit {
  display: block;
  color: var(--black);
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
  word-break: keep-all;
}

.board-section #bo_v.community-board-view #bo_v_info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  color: var(--black);
}

.board-section #bo_v.community-board-view #bo_v_info h2 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.board-section #bo_v.community-board-view .profile_info {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.board-section #bo_v.community-board-view .pf_img,
.board-section #bo_v.community-board-view .profile_info .pf_img {
  flex: 0 0 auto;
}

.board-section #bo_v.community-board-view .pf_img img {
  width: 46px;
  height: 46px;
  border: 1px solid var(--black);
  border-radius: 0;
}

.board-section #bo_v.community-board-view .profile_info_ct {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.7;
}

.board-section #bo_v.community-board-view .profile_info_ct strong {
  margin-right: 12px;
  color: var(--black);
  font-weight: 900;
}

.board-section #bo_v.community-board-view .community-view-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  color: var(--black);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.45;
}

.board-section #bo_v.community-board-view .community-view-author {
  flex-basis: 100%;
  font-size: 16px;
}

.board-section #bo_v.community-board-view #bo_v_top {
  flex: 0 0 auto;
  margin-left: auto;
}

.board-section #bo_v.community-board-view #bo_v_atc {
  min-height: 280px;
  padding: 44px 40px;
  box-shadow: 14px 14px 0 rgba(36, 180, 230, 0.18);
}

.board-section #bo_v.community-board-view #bo_v_atc_title {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 0 0 26px;
  padding: 0 11px;
  border: 1px solid var(--black);
  background: var(--pink);
  color: var(--ivory);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
}

.board-section #bo_v.community-board-view #bo_v_con {
  color: var(--black);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.85;
  word-break: keep-all;
}

.board-section #bo_v.community-board-view #bo_v_share {
  margin: 0 0 22px;
}

.board-section #bo_v.community-board-view #bo_v_share:empty {
  display: none;
}

.board-section #bo_v.community-board-view #bo_v_file,
.board-section #bo_v.community-board-view #bo_v_link {
  padding: 24px;
}

.board-section #bo_v.community-board-view .bo_v_nb {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  border-top: 2px solid var(--black);
}

.board-section #bo_v.community-board-view .bo_v_nb li {
  min-height: 64px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
}

.board-section #bo_v.community-board-view .bo_v_nb li:last-child {
  border-right: 0;
}

.board-section #bo_v.community-board-view .bo_v_nb a {
  font-weight: 900;
}

@media (max-width: 768px) {
  .board-section #bo_list.community-board-list {
    gap: 20px;
  }

  .board-section #bo_list.community-board-list #bo_btn_top {
    padding: 16px;
    box-shadow: 0 8px 0 rgba(36, 180, 230, 0.22);
  }

  .board-section #bo_list.community-board-list .tbl_head01 tr {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 18px;
    box-shadow: 0 8px 0 rgba(26, 26, 26, 0.08);
  }

  .board-section #bo_list.community-board-list .tbl_head01 td {
    padding: 0 !important;
  }

  .board-section #bo_list.community-board-list .td_num2 {
    justify-content: flex-start;
    border-right: 0;
    margin: 0 0 12px;
  }

  .board-section #bo_list.community-board-list .td_subject {
    gap: 8px;
  }

  .board-section #bo_list.community-board-list .bo_tit a {
    font-size: 22px;
    line-height: 1.28;
  }

  .board-section #bo_list.community-board-list .td_name,
  .board-section #bo_list.community-board-list .td_num:not(.td_num2),
  .board-section #bo_list.community-board-list .td_datetime {
    display: inline-flex;
    flex-direction: row;
    justify-content: flex-start;
    margin-top: 14px;
    padding-right: 12px !important;
    font-size: 13px;
  }

  .board-section #bo_list.community-board-list .td_name::before,
  .board-section #bo_list.community-board-list .td_num:not(.td_num2)::before,
  .board-section #bo_list.community-board-list .td_datetime::before {
    margin-right: 5px;
  }

  .board-section #bo_list.community-board-list .list_01 {
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .board-section #bo_list.community-board-list .list_01 ul {
    display: grid;
    gap: 16px;
  }

  .board-section #bo_list.community-board-list .list_01 li {
    border: 2px solid var(--black);
    background: var(--paper);
    box-shadow: 0 8px 0 rgba(36, 180, 230, 0.18);
  }

  .board-section #bo_list.community-board-list .list_01 li.bo_notice {
    background: rgba(221, 74, 150, 0.08);
  }

  .board-section #bo_list.community-board-list .bo_subject {
    font-size: 22px;
    line-height: 1.28;
  }

  .board-section #bo_list.community-board-list .bo_info {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
  }

  .board-section #bo_v.community-board-view {
    width: 100% !important;
    gap: 18px;
  }

  .board-section #bo_v.community-board-view > header {
    padding: 26px 20px;
    box-shadow: 0 9px 0 rgba(221, 74, 150, 0.22);
  }

  .board-section #bo_v.community-board-view #bo_v_title .bo_v_tit {
    font-size: 32px;
    line-height: 1.12;
  }

  .board-section #bo_v.community-board-view #bo_v_info {
    align-items: flex-start;
    flex-direction: column;
    min-height: 0;
    padding: 18px;
  }

  .board-section #bo_v.community-board-view .community-view-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    font-size: 14px;
  }

  .board-section #bo_v.community-board-view .profile_info {
    align-items: flex-start;
  }

  .board-section #bo_v.community-board-view #bo_v_top {
    width: 100%;
    margin-left: 0;
  }

  .board-section #bo_v.community-board-view #bo_v_atc {
    min-height: 220px;
    padding: 28px 20px;
    box-shadow: 0 9px 0 rgba(36, 180, 230, 0.18);
  }

  .board-section #bo_v.community-board-view #bo_v_con {
    font-size: 16px;
    line-height: 1.75;
  }

  .board-section #bo_v.community-board-view .bo_v_nb {
    grid-template-columns: 1fr;
  }

  .board-section #bo_v.community-board-view .bo_v_nb li {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
