@charset "utf-8";

:root {
  color-scheme: dark;
  --bg: #0e0f11;
  --surface: #15171a;
  --line: #2a2d31;
  --text: #f2f2ef;
  --muted: #aaa59c;
  --soft: #77736c;
  --accent: #d9d3c7;
  --max: 1120px;
  --font: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

:root[data-theme="light"] {
  color-scheme: light;
  --bg: #f7f6f2;
  --surface: #ffffff;
  --line: #ded9cf;
  --text: #141414;
  --muted: #615d55;
  --soft: #8c877d;
  --accent: #262522;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  overflow-x: clip;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: clip;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  transition: background 180ms ease, color 180ms ease;
}

.page p,
.page dd,
.page li,
.notice-row-title,
.site-footer span {
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
  line-break: strict;
  word-break: keep-all;
  overflow-wrap: break-word;
}

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

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(18px);
}

.header-inner,
.page,
.site-footer {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.05;
}

.brand-ko {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
}

.brand-en {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-nav a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  transition: color 160ms ease;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  color: var(--text);
}

.theme-toggle {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}

.theme-toggle:hover {
  border-color: var(--muted);
  background: var(--surface);
}

.theme-toggle svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page {
  flex: 1;
  padding: 92px 0 84px;
}

.hero {
  min-height: calc(100vh - 240px);
  display: grid;
  align-items: center;
  padding: 34px 0 72px;
}

.hero-home {
  min-height: calc(100vh - 250px);
  justify-items: center;
  padding: 58px 0 92px;
  text-align: center;
}

.hero-home-inner {
  width: min(100%, 760px);
  display: grid;
  justify-items: center;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-title,
.page-title {
  margin: 0;
  font-size: 124px;
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-title span,
.page-title span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.1;
}

.hero-copy {
  max-width: 560px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.55;
}

.hero-home .hero-copy {
  margin-top: 24px;
}

.hero-actions,
.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.home-link-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 6px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.home-link-list a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  transition: color 160ms ease, background 160ms ease;
}

.home-link-list a:hover {
  color: var(--text);
  background: var(--surface);
}

.text-link,
.button-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid currentColor;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.button-link {
  padding: 0 18px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.page-head {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(260px, 0.28fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: end;
  margin-bottom: 72px;
}

.page-intro {
  margin: 0;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.6;
}

.icon-link {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  justify-self: end;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  transition: border-color 160ms ease, background 160ms ease;
}

.icon-link:hover {
  border-color: var(--muted);
  background: var(--surface);
}

.icon-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.profile-title {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: clamp(16px, 2.5vw, 28px);
  font-size: clamp(86px, 9.5vw, 112px);
}

.profile-title span {
  display: inline;
  margin-top: 0;
  color: color-mix(in srgb, var(--muted) 82%, var(--text));
  font-size: clamp(22px, 2.35vw, 30px);
  font-weight: 600;
  line-height: 1;
}

.instagram-link {
  width: 58px;
  height: 58px;
  align-self: center;
}

.instagram-link svg {
  width: 25px;
  height: 25px;
}

.profile-page-head {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  margin-bottom: 58px;
}

.section {
  padding: 42px 0;
  border-top: 1px solid var(--line);
}

.section-title {
  margin: 0 0 28px;
  color: var(--soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.info-row {
  display: grid;
  grid-template-columns: minmax(120px, 0.28fr) minmax(0, 0.72fr);
  gap: 28px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.info-row dt {
  color: var(--soft);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.info-row dd {
  margin: 0;
  color: var(--text);
}

.section-copy {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.inline-text-link {
  color: var(--text);
  border-bottom: 1px solid currentColor;
  font-weight: 700;
}

.cafe-gate {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(260px, 0.38fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
  padding: 44px 0;
  border-top: 1px solid var(--line);
}

.cafe-gate-panel {
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid var(--line);
  background: var(--surface);
}

.cafe-gate-panel h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.05;
}

.cafe-gate-panel p:not(.eyebrow) {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.cafe-gate-panel .cafe-helper-note {
  margin-top: 18px;
  color: var(--soft);
  font-size: 13px;
  line-height: 1.6;
}

.cafe-note-list {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}

.cafe-note-list div {
  display: grid;
  gap: 8px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.cafe-note-list dt {
  color: var(--soft);
  font-size: 12px;
  font-weight: 700;
}

.cafe-note-list dd {
  margin: 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.5;
}

.member-card-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 44px;
  border-top: 1px solid var(--line);
}

.member-card {
  min-height: 190px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.member-card h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 500;
}

.profile-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(44px, 9vw, 108px);
  align-items: start;
  padding-top: 14px;
}

.profile-turntile {
  position: sticky;
  top: 112px;
  min-height: 560px;
}

.profile-photo-card {
  width: min(100%, 324px);
  margin: 0;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 28px 70px color-mix(in srgb, #000 38%, transparent);
}

.profile-photo-button {
  width: 100%;
  height: 100%;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
}

.profile-photo-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.profile-photo-image-main {
  transform: scale(1.18);
  transform-origin: center bottom;
  object-position: center bottom;
}

.profile-photo-image-fullbody {
  object-position: center bottom;
}

.profile-photo-card-main {
  aspect-ratio: 4 / 4.85;
  overflow: hidden;
}

.profile-photo-card-sub {
  position: absolute;
  width: min(50%, 168px);
  aspect-ratio: 4 / 5;
}

.profile-photo-card-sub:nth-of-type(2) {
  top: 270px;
  right: 4px;
  transform: rotate(5deg);
}

.profile-photo-card-sub:nth-of-type(3) {
  top: 388px;
  left: 28px;
  transform: rotate(-4deg);
}

.profile-lightbox[hidden] {
  display: none;
}

.profile-lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  gap: 18px;
  padding: 32px;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(18px);
}

.profile-lightbox-stage {
  width: min(82vw, 980px);
  max-height: 82vh;
  display: grid;
  place-items: center;
  justify-self: center;
}

.profile-lightbox-image {
  max-width: 100%;
  max-height: 82vh;
  display: block;
  border: 1px solid var(--line);
  background: var(--surface);
  object-fit: contain;
}

.profile-lightbox-close,
.profile-lightbox-nav {
  border: 1px solid var(--line);
  border-radius: 50%;
  background: color-mix(in srgb, var(--surface) 70%, transparent);
  color: var(--text);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}

.profile-lightbox-close:hover,
.profile-lightbox-nav:hover {
  border-color: var(--muted);
  background: var(--surface);
}

.profile-lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 42px;
  height: 42px;
}

.profile-lightbox-close::before,
.profile-lightbox-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1px;
  background: currentColor;
}

.profile-lightbox-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.profile-lightbox-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.profile-lightbox-nav {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  justify-self: center;
}

.profile-lightbox-nav svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.profile-copy {
  padding-top: 8px;
}

.profile-minimal {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}

.profile-minimal div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.profile-minimal dt {
  color: var(--soft);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
}

.profile-minimal dd {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
  overflow-wrap: normal;
  word-break: keep-all;
}

.profile-minimal-wide dd {
  max-width: 420px;
  line-height: 1.7;
}

.profile-skill-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 8px;
  row-gap: 2px;
}

.profile-skill-list span {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.profile-skill-list span:not(:last-child)::after {
  content: "·";
  margin-left: 8px;
  color: var(--text);
}

.profile-links {
  margin-top: 28px;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.content-item {
  min-height: 220px;
  padding: 30px;
  background: var(--bg);
}

.content-item h2,
.content-item h3 {
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0;
}

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

.meta {
  margin-top: 26px;
  color: var(--soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.work-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.work-filter a {
  padding-bottom: 6px;
  border-bottom: 1px solid transparent;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
}

.work-filter a:hover,
.work-filter a:focus-visible {
  border-bottom-color: currentColor;
}

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

.work-section {
  display: grid;
  grid-template-columns: minmax(130px, 0.24fr) minmax(0, 0.76fr);
  gap: 36px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 96px;
}

.work-section h2 {
  margin: 0;
  color: var(--soft);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
}

.work-section ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.work-section li {
  color: var(--text);
  font-size: 18px;
  line-height: 1.55;
}

.notice-board {
  border-top: 1px solid var(--line);
}

.notice-list {
  display: grid;
  gap: 0;
}

.notice-row {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: clamp(18px, 3vw, 32px);
  align-items: center;
  min-height: 68px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  transition: color 160ms ease, background 160ms ease;
}

.notice-row:hover,
.notice-row:focus-visible {
  color: var(--text);
  background: color-mix(in srgb, var(--surface) 42%, transparent);
}

.notice-row-date {
  color: var(--soft);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.notice-row-title {
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.45;
  word-break: keep-all;
}

.notice-detail-head {
  margin-bottom: 34px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.notice-detail-date {
  display: block;
  margin-bottom: 14px;
  color: var(--soft);
  font-size: 13px;
  font-weight: 700;
}

.notice-detail-title {
  margin: 0;
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 500;
  line-height: 1.12;
  word-break: keep-all;
}

.notice-detail-actions {
  margin-top: 34px;
}

.notice-language-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.notice-language-grid-1 {
  grid-template-columns: minmax(0, 1fr);
}

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

.notice-language {
  min-height: 220px;
  padding: clamp(22px, 3vw, 30px);
  background: var(--bg);
}

.notice-language-label {
  margin: 0 0 18px;
  color: var(--soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.notice-language h3 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.35;
  word-break: keep-all;
}

.notice-language p {
  margin: 0;
  color: var(--muted);
}

.notice-language p + p {
  margin-top: 10px;
}

.notice-empty {
  margin: 0;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.notice-pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  padding-top: 24px;
}

.notice-pagination[hidden] {
  display: none;
}

.notice-page-button {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.notice-page-button:hover:not(:disabled) {
  border-color: var(--muted);
}

.notice-page-button:disabled {
  color: var(--soft);
  cursor: not-allowed;
  opacity: 0.58;
}

.notice-page-status {
  color: var(--soft);
  font-size: 12px;
  font-weight: 700;
}

.site-footer {
  padding: 26px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--soft);
  font-size: 12px;
  letter-spacing: 0;
}

.site-footer span {
  display: block;
  line-height: 1.7;
}

@media (max-width: 820px) {
  .header-inner {
    min-height: auto;
    padding: 18px 0;
    align-items: flex-start;
  }

  .nav-wrap {
    align-items: flex-start;
  }

  .site-nav {
    max-width: 210px;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  .page-head,
  .profile-layout,
  .content-grid,
  .cafe-gate,
  .member-card-list {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: auto;
    padding-top: 46px;
  }

  .hero-title,
  .page-title {
    font-size: 86px;
  }

  .profile-page-head {
    align-items: end;
    margin-bottom: 46px;
  }

  .profile-title {
    gap: 14px;
    font-size: 76px;
  }

  .hero-title span,
  .page-title span {
    font-size: 24px;
  }

  .profile-title span {
    font-size: 22px;
  }

  .hero-copy,
  .page-intro {
    font-size: 20px;
  }

  .instagram-link {
    justify-self: start;
  }

  .profile-turntile {
    position: relative;
    top: auto;
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(170px, 1.1fr) repeat(2, minmax(126px, 0.75fr));
    gap: 12px;
    align-items: end;
    overflow-x: auto;
    padding: 4px 0 10px;
  }

  .profile-photo-card,
  .profile-photo-card-sub {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
    transform: none;
    box-shadow: none;
  }

  .profile-photo-card-sub:nth-of-type(2),
  .profile-photo-card-sub:nth-of-type(3) {
    top: auto;
    right: auto;
    left: auto;
    transform: none;
  }

  .profile-copy {
    padding-top: 0;
  }

  .profile-lightbox {
    grid-template-columns: minmax(0, 1fr);
    place-items: center;
    gap: 0;
    padding: 22px 14px;
  }

  .profile-lightbox-stage {
    width: min(100%, 520px);
  }

  .profile-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
  }

  .profile-lightbox-prev {
    left: 14px;
  }

  .profile-lightbox-next {
    right: 14px;
  }
}

@media (max-width: 560px) {
  .header-inner,
  .page,
  .site-footer {
    width: min(100% - 28px, var(--max));
  }

  .header-inner {
    flex-wrap: wrap;
    gap: 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand-ko {
    font-size: 17px;
  }

  .brand-en {
    font-size: 9px;
  }

  .nav-wrap {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .site-nav {
    max-width: none;
    flex: 1;
    justify-content: flex-start;
    gap: 8px 11px;
  }

  .site-nav a {
    font-size: 12px;
  }

  .page {
    padding: 58px 0 64px;
  }

  .hero-title,
  .page-title {
    font-size: 62px;
  }

  .profile-page-head {
    gap: 24px;
  }

  .profile-title {
    gap: 10px;
    font-size: 58px;
  }

  .hero-title span,
  .page-title span {
    font-size: 20px;
  }

  .profile-title span {
    font-size: 17px;
  }

  .instagram-link {
    width: 52px;
    height: 52px;
  }

  .instagram-link svg {
    width: 22px;
    height: 22px;
  }

  .hero-copy,
  .page-intro {
    font-size: 18px;
  }

  .info-row,
  .work-section,
  .notice-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .notice-row {
    align-items: start;
    min-height: 0;
    padding: 18px 0;
  }

  .notice-language-grid,
  .notice-language-grid-2,
  .notice-language-grid-3 {
    grid-template-columns: 1fr;
  }

  .notice-language {
    min-height: 0;
  }

  .notice-pagination {
    justify-content: space-between;
    gap: 10px;
  }

  .notice-page-button {
    min-width: 74px;
  }

  .content-item {
    min-height: 190px;
    padding: 24px;
  }

  .profile-layout {
    gap: 30px;
  }

  .profile-turntile {
    grid-template-columns: minmax(190px, 68%) repeat(2, minmax(126px, 44%));
    width: 100%;
    padding-right: 14px;
  }

  .profile-minimal div {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 14px;
    padding: 13px 0;
  }

  .profile-minimal-wide dd {
    max-width: 260px;
  }
}

@media (max-width: 360px) {
  .header-inner,
  .page,
  .site-footer {
    width: min(100% - 24px, var(--max));
  }

  .hero-title,
  .page-title {
    font-size: 54px;
  }

  .profile-title {
    font-size: 50px;
  }

  .hero-title span,
  .page-title span {
    font-size: 18px;
  }

  .profile-lightbox-close {
    top: 14px;
    right: 14px;
  }
}
