body[data-page="hall"] {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 10%, rgba(15, 118, 110, 0.09), transparent 28vw),
    linear-gradient(180deg, #f7faf8 0%, #eef4f1 100%);
}

.hall-shell {
  min-height: 100vh;
}

.hall-topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(24px, 5vw, 72px);
  border-bottom: 1px solid rgba(220, 229, 225, 0.82);
  background: rgba(247, 250, 248, 0.88);
  backdrop-filter: blur(16px);
}

.hall-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--ink);
  text-decoration: none;
}

.hall-brand strong,
.hall-brand em {
  display: block;
  line-height: 1.2;
}

.hall-brand strong {
  font-size: 19px;
  font-weight: 950;
}

.hall-brand em {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.hall-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hall-user-menu {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hall-user-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(23, 33, 29, 0.06);
  font-weight: 850;
}

.hall-avatar,
.hall-avatar-sm {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  font-weight: 950;
}

.hall-avatar {
  width: 58px;
  height: 58px;
  font-size: 22px;
}

.hall-avatar-sm {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  font-size: 12px;
}

.hall-avatar img,
.hall-avatar-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hall-main {
  display: grid;
  gap: 18px;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 22px 0 44px;
}

.hall-hero {
  display: grid;
  align-items: center;
  padding: clamp(18px, 2.4vw, 28px);
  border: 1px solid rgba(220, 229, 225, 0.88);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(238, 244, 241, 0.72)),
    #fff;
  box-shadow: var(--shadow);
}

.hall-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 52px;
  width: min(920px, 100%);
  margin: 0 auto;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 36px rgba(23, 33, 29, 0.06);
}

.hall-search input {
  min-height: 58px;
  border-radius: 12px;
  font-size: 16px;
}

.hall-filter-button {
  display: grid;
  width: 52px;
  min-height: 58px;
  place-items: center;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease, transform 180ms ease;
}

.hall-filter-button:hover {
  border-color: var(--accent);
  background: var(--accent-subtle);
  color: var(--accent);
  transform: translateY(-1px);
}

.hall-filter-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.hall-list-panel {
  display: grid;
  gap: 14px;
}

.hall-list-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding: 0 2px;
}

.hall-list-head h2 {
  margin: 0 0 4px;
  font-size: 20px;
}

.hall-list {
  display: grid;
  gap: 14px;
}

.hall-row {
  display: grid;
  grid-template-columns: minmax(250px, 0.34fr) minmax(0, 1fr) auto;
  gap: 12px 18px;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid rgba(220, 229, 225, 0.9);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(23, 33, 29, 0.05);
  outline: none;
  transition:
    grid-template-columns 220ms ease,
    padding 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.hall-row:hover,
.hall-row.is-expanded,
.hall-row:focus,
.hall-row:focus-within {
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr) auto;
  align-items: stretch;
  padding: 18px;
  border-color: rgba(15, 118, 110, 0.22);
  box-shadow: 0 18px 36px rgba(23, 33, 29, 0.08);
  transform: translateY(-1px);
}

.hall-user-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 13px;
  align-content: start;
  min-width: 0;
}

.hall-user-card strong,
.hall-user-card p {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hall-user-card strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  font-weight: 950;
  white-space: nowrap;
}

.hall-user-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.hall-user-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 9px;
}

.hall-user-meta span,
.hall-skill-chip span,
.hall-price {
  display: inline-grid;
  min-height: 24px;
  place-items: center;
  padding: 0 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  line-height: 1.2;
}

.hall-skill-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
  max-height: 64px;
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);
  transition: max-height 240ms ease, opacity 180ms ease, transform 220ms ease;
}

.hall-row:hover .hall-skill-strip,
.hall-row.is-expanded .hall-skill-strip,
.hall-row:focus .hall-skill-strip,
.hall-row:focus-within .hall-skill-strip {
  max-height: 180px;
}

.hall-skill-chip {
  display: grid;
  grid-template-rows: auto;
  gap: 0;
  min-width: 0;
  min-height: 48px;
  align-content: center;
  justify-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(220, 229, 225, 0.9);
  border-radius: 10px;
  background: #fbfdfc;
  color: var(--ink);
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.hall-row:hover .hall-skill-chip,
.hall-row.is-expanded .hall-skill-chip,
.hall-row:focus .hall-skill-chip,
.hall-row:focus-within .hall-skill-chip {
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 8px;
  min-height: 138px;
  align-content: stretch;
  justify-items: stretch;
  padding: 14px;
}

.hall-skill-chip:hover {
  border-color: rgba(15, 118, 110, 0.32);
  box-shadow: 0 14px 28px rgba(23, 33, 29, 0.08);
  transform: translateY(-2px);
}

.hall-skill-chip strong {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  color: var(--ink);
  font-size: 15px;
  font-weight: 950;
  line-height: 1.35;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hall-row:hover .hall-skill-chip strong,
.hall-row.is-expanded .hall-skill-chip strong,
.hall-row:focus .hall-skill-chip strong,
.hall-row:focus-within .hall-skill-chip strong {
  text-align: left;
}

.hall-skill-chip p {
  display: none;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.hall-skill-meta {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.hall-row:hover .hall-skill-chip p,
.hall-row.is-expanded .hall-skill-chip p,
.hall-row:focus .hall-skill-chip p,
.hall-row:focus-within .hall-skill-chip p {
  display: -webkit-box;
}

.hall-row:hover .hall-skill-meta,
.hall-row.is-expanded .hall-skill-meta,
.hall-row:focus .hall-skill-meta,
.hall-row:focus-within .hall-skill-meta {
  display: flex;
}

.hall-price {
  border-color: rgba(15, 118, 110, 0.2);
  background: rgba(15, 118, 110, 0.08);
  color: var(--accent);
}

.hall-row-actions {
  display: grid;
  gap: 10px;
  align-content: center;
  grid-column: 3;
  justify-self: end;
  min-width: 116px;
}

.hall-row-actions .primary-link {
  min-width: 116px;
  min-height: 48px;
  padding: 0 18px;
}

.hall-empty {
  display: grid;
  place-items: center;
  min-height: 180px;
  padding: 28px;
  border: 1px dashed var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  text-align: center;
  line-height: 1.7;
}

.hall-skill-strip .hall-empty {
  min-height: 48px;
  padding: 10px 12px;
}

.hall-row:hover .hall-skill-strip .hall-empty,
.hall-row.is-expanded .hall-skill-strip .hall-empty,
.hall-row:focus .hall-skill-strip .hall-empty,
.hall-row:focus-within .hall-skill-strip .hall-empty {
  min-height: 138px;
  padding: 28px;
}

.hall-empty strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 15px;
}

.hall-empty p {
  margin: 0;
  font-size: 13px;
}

.hall-loadbar {
  display: flex;
  justify-content: center;
  padding: 10px 0 0;
}

.hall-loadbar[hidden] {
  display: none;
}

@media (max-width: 980px) {
  .hall-hero,
  .hall-row {
    grid-template-columns: 1fr;
  }

  .hall-row:hover,
  .hall-row.is-expanded,
  .hall-row:focus,
  .hall-row:focus-within {
    grid-template-columns: 1fr;
  }

  .hall-skill-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hall-row-actions {
    display: flex;
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .hall-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .hall-nav,
  .hall-user-menu,
  .hall-row-actions {
    width: 100%;
  }

  .hall-nav a,
  .hall-user-menu a,
  .hall-user-menu button,
  .hall-row-actions a {
    flex: 1;
  }

  .hall-main {
    width: min(100% - 28px, 1180px);
    padding-top: 18px;
  }

  .hall-skill-strip {
    grid-template-columns: 1fr;
  }

  .hall-search {
    grid-template-columns: minmax(0, 1fr) 52px;
  }
}

/* Product-shelf hall layout: Skill is the product, person is seller proof. */
.hall-search {
  grid-template-columns: minmax(0, 1fr) 52px;
}

.hall-category-filter {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 2px 2px 0;
}

.hall-category-filter-chip,
.hall-category-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 30px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.hall-category-filter-chip {
  padding: 0 12px;
}

.hall-category-filter-chip span,
.hall-category-badge span {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: currentColor;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
}

.hall-category-filter-chip:hover,
.hall-category-filter-chip.is-active,
.hall-category-badge:hover {
  border-color: rgba(15, 118, 110, 0.28);
  box-shadow: 0 10px 22px rgba(23, 33, 29, 0.08);
  transform: translateY(-1px);
}

.hall-category-filter-chip.is-active {
  background: var(--ink);
  color: #fff;
}

.hall-category-quant {
  color: #087f5b;
  background: #e9fbf3;
  border-color: rgba(8, 127, 91, 0.28);
}

.hall-category-legal {
  color: #4254d8;
  background: #eef1ff;
  border-color: rgba(66, 84, 216, 0.28);
}

.hall-category-pm {
  color: #b45f06;
  background: #fff4e2;
  border-color: rgba(180, 95, 6, 0.28);
}

.hall-category-marketing {
  color: #be185d;
  background: #fff0f6;
  border-color: rgba(190, 24, 93, 0.26);
}

.hall-category-general {
  color: #475569;
  background: #f1f5f9;
  border-color: rgba(71, 85, 105, 0.22);
}

.hall-list {
  grid-template-columns: repeat(auto-fill, minmax(318px, 1fr));
  align-items: stretch;
  gap: 18px;
}

.hall-row,
.hall-row:hover,
.hall-row.is-expanded,
.hall-row:focus,
.hall-row:focus-within {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto minmax(0, 1fr) auto;
  align-items: stretch;
  gap: 14px;
  min-height: 344px;
  padding: 16px;
  border-radius: 14px;
}

.hall-row {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.94);
  transform-origin: center;
}

.hall-row::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(239, 247, 244, 0.56));
  opacity: 0.9;
}

.hall-row:hover,
.hall-row:focus,
.hall-row:focus-within {
  border-color: rgba(15, 118, 110, 0.3);
  box-shadow: 0 24px 46px rgba(23, 33, 29, 0.14);
  transform: translateY(-5px) scale(1.025);
}

.hall-seller-line {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--muted);
}

.hall-seller-line .hall-avatar-sm {
  width: 34px;
  height: 34px;
  border-radius: 9px;
}

.hall-seller-line span {
  display: flex;
  align-items: baseline;
  gap: 8px;
  min-width: 0;
}

.hall-seller-line strong,
.hall-seller-line em {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hall-seller-line strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
}

.hall-seller-line em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.hall-skill-strip,
.hall-row:hover .hall-skill-strip,
.hall-row.is-expanded .hall-skill-strip,
.hall-row:focus .hall-skill-strip,
.hall-row:focus-within .hall-skill-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-height: none;
  min-width: 0;
  overflow: visible;
  opacity: 1;
  transform: none;
}

.hall-skill-chip,
.hall-row:hover .hall-skill-chip,
.hall-row.is-expanded .hall-skill-chip,
.hall-row:focus .hall-skill-chip,
.hall-row:focus-within .hall-skill-chip {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 8px;
  min-height: 74px;
  align-content: stretch;
  justify-items: stretch;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  pointer-events: none;
}

.hall-skill-chip.is-primary {
  min-height: 132px;
  border-color: rgba(15, 118, 110, 0.22);
  background:
    linear-gradient(135deg, rgba(235, 250, 246, 0.9), rgba(255, 255, 255, 0.9)),
    #fff;
}

.hall-skill-chip strong,
.hall-row:hover .hall-skill-chip strong,
.hall-row.is-expanded .hall-skill-chip strong,
.hall-row:focus .hall-skill-chip strong,
.hall-row:focus-within .hall-skill-chip strong {
  display: -webkit-box;
  color: var(--ink);
  font-size: 15px;
  font-weight: 950;
  line-height: 1.35;
  text-align: left;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.hall-skill-chip.is-primary strong {
  font-size: 18px;
}

.hall-skill-chip p,
.hall-row:hover .hall-skill-chip p,
.hall-row.is-expanded .hall-skill-chip p,
.hall-row:focus .hall-skill-chip p,
.hall-row:focus-within .hall-skill-chip p {
  display: -webkit-box;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.hall-skill-chip.is-primary p {
  -webkit-line-clamp: 2;
}

.hall-skill-meta,
.hall-row:hover .hall-skill-meta,
.hall-row.is-expanded .hall-skill-meta,
.hall-row:focus .hall-skill-meta,
.hall-row:focus-within .hall-skill-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.hall-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 34px;
}

.hall-skill-count {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.hall-category-badge {
  min-width: 88px;
  padding: 0 12px;
}

.hall-row-actions {
  display: none;
}

.hall-skill-strip .hall-empty,
.hall-row:hover .hall-skill-strip .hall-empty,
.hall-row.is-expanded .hall-skill-strip .hall-empty,
.hall-row:focus .hall-skill-strip .hall-empty,
.hall-row:focus-within .hall-skill-strip .hall-empty {
  min-height: 180px;
  padding: 28px;
}

@media (max-width: 760px) {
  .hall-list {
    grid-template-columns: 1fr;
  }

  .hall-row,
  .hall-row:hover,
  .hall-row:focus,
  .hall-row:focus-within {
    min-height: 0;
    transform: none;
  }

  .hall-seller-line span {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }
}

/* Horizontal card refinement: identity first, Skill details only on hover. */
.hall-list {
  grid-template-columns: 1fr;
  gap: 14px;
}

.hall-row,
.hall-row:hover,
.hall-row.is-expanded,
.hall-row:focus,
.hall-row:focus-within {
  grid-template-columns: minmax(220px, 0.25fr) minmax(0, 1fr) minmax(118px, auto);
  grid-template-rows: auto;
  gap: 18px;
  align-items: center;
  min-height: 126px;
  padding: 18px 20px;
  border-radius: 14px;
}

.hall-row:hover,
.hall-row:focus,
.hall-row:focus-within {
  min-height: 202px;
  align-items: stretch;
  transform: translateY(-4px) scale(1.014);
}

.hall-seller-line {
  align-self: center;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 14px;
}

.hall-seller-line .hall-avatar-sm {
  width: 68px;
  height: 68px;
  border-radius: 13px;
}

.hall-seller-line span {
  display: grid;
  align-content: center;
  gap: 5px;
  min-width: 0;
}

.hall-seller-line strong {
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: 0;
}

.hall-seller-line em {
  max-width: 100%;
  font-size: 14px;
  line-height: 1.35;
}

.hall-skill-strip,
.hall-row:hover .hall-skill-strip,
.hall-row.is-expanded .hall-skill-strip,
.hall-row:focus .hall-skill-strip,
.hall-row:focus-within .hall-skill-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-self: stretch;
}

.hall-skill-chip,
.hall-row .hall-skill-chip,
.hall-skill-chip.is-primary {
  grid-template-rows: 1fr;
  min-height: 74px;
  padding: 12px 14px;
  align-content: center;
  justify-content: stretch;
}

.hall-row:hover .hall-skill-chip,
.hall-row.is-expanded .hall-skill-chip,
.hall-row:focus .hall-skill-chip,
.hall-row:focus-within .hall-skill-chip {
  grid-template-rows: auto minmax(0, 1fr) auto;
  min-height: 150px;
  gap: 9px;
  align-content: stretch;
}

.hall-skill-chip strong,
.hall-skill-chip.is-primary strong,
.hall-row:hover .hall-skill-chip strong,
.hall-row.is-expanded .hall-skill-chip strong,
.hall-row:focus .hall-skill-chip strong,
.hall-row:focus-within .hall-skill-chip strong {
  font-size: 14px;
  line-height: 1.36;
  -webkit-line-clamp: 2;
}

.hall-skill-chip p,
.hall-skill-meta {
  display: none;
}

.hall-row:hover .hall-skill-chip p,
.hall-row.is-expanded .hall-skill-chip p,
.hall-row:focus .hall-skill-chip p,
.hall-row:focus-within .hall-skill-chip p {
  display: -webkit-box;
  font-size: 12px;
  line-height: 1.55;
  -webkit-line-clamp: 3;
}

.hall-row:hover .hall-skill-meta,
.hall-row.is-expanded .hall-skill-meta,
.hall-row:focus .hall-skill-meta,
.hall-row:focus-within .hall-skill-meta {
  display: flex;
}

.hall-card-footer {
  align-self: stretch;
  display: grid;
  align-content: center;
  justify-items: end;
  gap: 10px;
  min-height: 0;
}

.hall-skill-count {
  font-size: 13px;
}

.hall-category-badge {
  min-width: 104px;
}

@media (max-width: 980px) {
  .hall-row,
  .hall-row:hover,
  .hall-row.is-expanded,
  .hall-row:focus,
  .hall-row:focus-within {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hall-skill-strip,
  .hall-row:hover .hall-skill-strip,
  .hall-row.is-expanded .hall-skill-strip,
  .hall-row:focus .hall-skill-strip,
  .hall-row:focus-within .hall-skill-strip {
    grid-template-columns: 1fr;
  }

  .hall-card-footer {
    align-content: start;
    justify-items: start;
  }
}

@media (max-width: 640px) {
  .hall-seller-line {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .hall-seller-line .hall-avatar-sm {
    width: 56px;
    height: 56px;
  }

  .hall-seller-line strong {
    font-size: 19px;
  }
}

/* Reference-card layout: compact expert cards instead of long strips. */
.hall-main {
  width: min(1120px, calc(100% - 48px));
}

.hall-list-head {
  align-items: center;
  padding: 0;
}

.hall-list-head h2 {
  font-size: 24px;
}

.hall-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.hall-row,
.hall-row:hover,
.hall-row.is-expanded,
.hall-row:focus,
.hall-row:focus-within {
  grid-template-columns: 1fr;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: stretch;
  min-height: 344px;
  padding: 24px;
  border: 1.2px solid rgba(169, 178, 173, 0.55);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
}

.hall-row:hover,
.hall-row:focus,
.hall-row:focus-within {
  min-height: 372px;
  transform: translateY(-4px) scale(1.012);
}

.hall-seller-line {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  align-self: start;
}

.hall-seller-line .hall-avatar-sm {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #dff5ee;
  color: #087f5b;
}

.hall-seller-line span {
  display: grid;
  gap: 4px;
  align-content: center;
}

.hall-seller-line strong {
  font-size: 20px;
  line-height: 1.12;
}

.hall-seller-line em {
  font-size: 14px;
  line-height: 1.35;
}

.hall-skill-strip,
.hall-row:hover .hall-skill-strip,
.hall-row.is-expanded .hall-skill-strip,
.hall-row:focus .hall-skill-strip,
.hall-row:focus-within .hall-skill-strip {
  grid-template-columns: 1fr;
  gap: 10px;
  align-self: stretch;
}

.hall-skill-chip,
.hall-row .hall-skill-chip,
.hall-skill-chip.is-primary {
  position: relative;
  grid-template-columns: 18px minmax(0, 1fr);
  grid-template-rows: auto;
  column-gap: 10px;
  min-height: 38px;
  padding: 8px 12px;
  border: 0;
  border-radius: 8px;
  background: #f3f1eb;
  pointer-events: none;
}

.hall-skill-chip::before {
  content: "";
  display: block;
  width: 14px;
  height: 16px;
  align-self: center;
  border: 2px solid #12a388;
  border-radius: 3px;
  box-shadow: inset 0 4px 0 rgba(18, 163, 136, 0.12);
}

.hall-skill-chip::after {
  content: "";
  position: absolute;
  left: 17px;
  top: 16px;
  width: 6px;
  height: 2px;
  background: #12a388;
  box-shadow: 0 5px 0 #12a388;
}

.hall-row:hover .hall-skill-chip,
.hall-row.is-expanded .hall-skill-chip,
.hall-row:focus .hall-skill-chip,
.hall-row:focus-within .hall-skill-chip {
  grid-template-columns: 18px minmax(0, 1fr);
  grid-template-rows: auto auto;
  min-height: 66px;
  align-content: start;
}

.hall-skill-chip strong,
.hall-skill-chip.is-primary strong,
.hall-row:hover .hall-skill-chip strong,
.hall-row.is-expanded .hall-skill-chip strong,
.hall-row:focus .hall-skill-chip strong,
.hall-row:focus-within .hall-skill-chip strong {
  grid-column: 2;
  display: block;
  overflow: hidden;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hall-skill-chip p,
.hall-skill-meta {
  display: none;
}

.hall-row:hover .hall-skill-chip p,
.hall-row.is-expanded .hall-skill-chip p,
.hall-row:focus .hall-skill-chip p,
.hall-row:focus-within .hall-skill-chip p {
  grid-column: 2;
  display: -webkit-box;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.hall-row:hover .hall-skill-meta,
.hall-row.is-expanded .hall-skill-meta,
.hall-row:focus .hall-skill-meta,
.hall-row:focus-within .hall-skill-meta {
  display: none;
}

.hall-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 74px;
  padding-top: 16px;
  border-top: 1px solid rgba(169, 178, 173, 0.36);
}

.hall-category-badge {
  min-width: 0;
  min-height: 28px;
  padding: 0 12px;
}

.hall-profile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 158px;
  min-height: 56px;
  padding: 0 18px;
  border: 1.2px solid rgba(78, 83, 80, 0.38);
  border-radius: 11px;
  background: #fff;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.hall-profile-cta:hover {
  border-color: rgba(15, 118, 110, 0.34);
  box-shadow: 0 12px 24px rgba(23, 33, 29, 0.08);
  transform: translateY(-1px);
}

@media (max-width: 1060px) {
  .hall-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .hall-list {
    grid-template-columns: 1fr;
  }

  .hall-row,
  .hall-row:hover,
  .hall-row:focus,
  .hall-row:focus-within {
    min-height: 0;
    transform: none;
  }

  .hall-card-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .hall-profile-cta {
    width: 100%;
  }
}

/* Golden-ratio shelf cards: fixed footprint, iPhone-like hover lift. */
.hall-main {
  width: min(1180px, calc(100% - 48px));
}

.hall-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 18px;
}

.hall-row,
.hall-row:hover,
.hall-row.is-expanded,
.hall-row:focus,
.hall-row:focus-within {
  grid-template-columns: 1fr;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 17px;
  min-height: 0;
  aspect-ratio: 1 / 1.18;
  padding: 24px;
  border-radius: 14px;
  overflow: visible;
}

.hall-row {
  transform: translateZ(0);
  transition:
    border-color 180ms ease,
    box-shadow 220ms ease,
    transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.hall-row:hover,
.hall-row:focus,
.hall-row:focus-within {
  z-index: 4;
  min-height: 0;
  transform: translateY(-6px) scale(1.045);
}

.hall-seller-line {
  grid-template-columns: 54px minmax(0, 1fr);
}

.hall-seller-line strong {
  font-size: 21px;
  font-weight: 950;
}

.hall-seller-line em {
  font-size: 14px;
}

.hall-skill-strip,
.hall-row:hover .hall-skill-strip,
.hall-row.is-expanded .hall-skill-strip,
.hall-row:focus .hall-skill-strip,
.hall-row:focus-within .hall-skill-strip {
  grid-template-columns: 1fr;
  gap: 10px;
}

.hall-skill-chip,
.hall-row .hall-skill-chip,
.hall-skill-chip.is-primary,
.hall-row:hover .hall-skill-chip,
.hall-row.is-expanded .hall-skill-chip,
.hall-row:focus .hall-skill-chip,
.hall-row:focus-within .hall-skill-chip {
  grid-template-columns: 18px minmax(0, 1fr);
  min-height: 39px;
  padding: 8px 12px;
  align-content: center;
}

.hall-row:hover .hall-skill-chip,
.hall-row.is-expanded .hall-skill-chip,
.hall-row:focus .hall-skill-chip,
.hall-row:focus-within .hall-skill-chip {
  grid-template-rows: auto auto;
  min-height: 62px;
}

.hall-skill-chip strong,
.hall-skill-chip.is-primary strong,
.hall-row:hover .hall-skill-chip strong,
.hall-row.is-expanded .hall-skill-chip strong,
.hall-row:focus .hall-skill-chip strong,
.hall-row:focus-within .hall-skill-chip strong {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}

.hall-row:hover .hall-skill-chip p,
.hall-row.is-expanded .hall-skill-chip p,
.hall-row:focus .hall-skill-chip p,
.hall-row:focus-within .hall-skill-chip p {
  font-size: 11px;
  line-height: 1.42;
  -webkit-line-clamp: 2;
}

.hall-card-footer {
  min-height: 72px;
}

.hall-profile-cta {
  min-width: 150px;
  min-height: 54px;
  font-size: 17px;
}

@media (max-width: 1060px) {
  .hall-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .hall-list {
    grid-template-columns: 1fr;
  }

  .hall-row,
  .hall-row:hover,
  .hall-row.is-expanded,
  .hall-row:focus,
  .hall-row:focus-within {
    aspect-ratio: auto;
    transform: none;
  }
}

/* Hall card spec v2: compact 3-column golden-ratio cards. */
body[data-page="hall"] {
  --color-background-primary: #ffffff;
  --color-background-secondary: #f5f4ef;
  --color-border-secondary: #d5ddd9;
  --color-border-tertiary: #dfe6e2;
  --color-text-primary: #1a211e;
  --color-text-secondary: #5a6b64;
}

.hall-main {
  width: min(1080px, calc(100% - 48px));
  gap: 16px;
}

.hall-list-panel {
  gap: 0;
}

.hall-list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
  padding: 0;
}

.hall-list-head > div:first-child {
  min-width: 0;
}

#hallResultMeta {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 13px;
  line-height: 1.4;
}

.hall-refresh-button {
  display: none;
}

.hall-category-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
  padding: 0;
}

.hall-category-filter-chip,
.hall-category-filter-chip.hall-category-quant,
.hall-category-filter-chip.hall-category-legal,
.hall-category-filter-chip.hall-category-marketing,
.hall-category-filter-chip.hall-category-pm,
.hall-category-filter-chip.hall-category-engineering,
.hall-category-filter-chip.hall-category-general {
  min-height: 0;
  padding: 3px 12px;
  border: 0.5px solid var(--color-border-secondary);
  border-radius: 20px;
  background: transparent;
  color: var(--color-text-secondary);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  cursor: pointer;
  box-shadow: none;
  transform: none;
  transition: border-color 140ms ease, background-color 140ms ease, color 140ms ease;
}

.hall-category-filter-chip:hover,
.hall-category-filter-chip.is-active,
.hall-category-filter-chip.hall-category-quant.is-active,
.hall-category-filter-chip.hall-category-legal.is-active,
.hall-category-filter-chip.hall-category-marketing.is-active,
.hall-category-filter-chip.hall-category-pm.is-active,
.hall-category-filter-chip.hall-category-engineering.is-active,
.hall-category-filter-chip.hall-category-general.is-active {
  border-color: #5dcaa5;
  background: #e1f5ee;
  color: #085041;
  box-shadow: none;
  transform: none;
}

.hall-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  align-items: start;
}

.hall-row,
.hall-row:hover,
.hall-row.is-expanded,
.hall-row:focus,
.hall-row:focus-within {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0;
  min-height: 0;
  aspect-ratio: 1.618 / 1;
  padding: 16px;
  border: 0.5px solid var(--color-border-tertiary);
  border-radius: 12px;
  background: var(--color-background-primary);
  box-shadow: none;
  transform: none;
  overflow: visible;
}

.hall-row {
  position: relative;
  z-index: 0;
  cursor: pointer;
  transform-origin: center;
  transition: border-color 140ms ease, box-shadow 180ms ease, transform 180ms ease;
  will-change: transform;
}

.hall-row:hover,
.hall-row:focus,
.hall-row:focus-within {
  z-index: 5;
  border-color: #5dcaa5;
  box-shadow: 0 16px 32px rgba(23, 33, 29, 0.10);
  transform: translateY(-3px) scale(1.035);
}

.hall-seller-line {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}

.hall-seller-line .hall-avatar-sm {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  border-radius: 50%;
  background: #e1f5ee;
  color: #085041;
  font-size: 14px;
  font-weight: 700;
}

.hall-seller-line .hall-avatar-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.hall-seller-line span {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.hall-seller-line strong {
  overflow: hidden;
  color: var(--color-text-primary);
  font-size: 16px;
  font-weight: 750;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hall-seller-line em {
  overflow: hidden;
  margin-top: 1px;
  color: var(--color-text-secondary);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hall-skill-strip,
.hall-row:hover .hall-skill-strip,
.hall-row.is-expanded .hall-skill-strip,
.hall-row:focus .hall-skill-strip,
.hall-row:focus-within .hall-skill-strip {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 5px;
  min-height: 0;
  margin-top: 10px;
  overflow: hidden;
}

.hall-skill-chip,
.hall-row .hall-skill-chip,
.hall-skill-chip.is-primary,
.hall-row:hover .hall-skill-chip,
.hall-row.is-expanded .hall-skill-chip,
.hall-row:focus .hall-skill-chip,
.hall-row:focus-within .hall-skill-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 0;
  padding: 5px 8px;
  border: 0;
  border-radius: 6px;
  background: var(--color-background-secondary);
  pointer-events: none;
}

.hall-skill-chip::before,
.hall-skill-chip::after {
  content: none;
  display: none;
}

.hall-skill-icon {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  color: #1d9e75;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hall-skill-chip span {
  min-width: 0;
  overflow: hidden;
  color: var(--color-text-primary);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hall-skill-chip:hover {
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.hall-skill-chip strong,
.hall-skill-chip p,
.hall-skill-meta,
.hall-price {
  display: none !important;
}

.hall-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 0;
  margin-top: 10px;
  padding-top: 0;
  border-top: 0;
}

.hall-category-badge,
.hall-category-badge.hall-category-quant,
.hall-category-badge.hall-category-legal,
.hall-category-badge.hall-category-marketing,
.hall-category-badge.hall-category-pm,
.hall-category-badge.hall-category-engineering,
.hall-category-badge.hall-category-general {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 0;
  padding: 2px 9px;
  border: 0;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.35;
  white-space: nowrap;
  cursor: inherit;
}

.hall-category-badge.hall-category-quant {
  background: #e1f5ee;
  color: #085041;
}

.hall-category-badge.hall-category-legal {
  background: #eeedfe;
  color: #26215c;
}

.hall-category-badge.hall-category-marketing {
  background: #e6f1fb;
  color: #042c53;
}

.hall-category-badge.hall-category-pm {
  background: #faeeda;
  color: #412402;
}

.hall-category-badge.hall-category-engineering {
  background: #faece7;
  color: #4a1b0c;
}

.hall-category-badge.hall-category-general {
  background: #f1f5f9;
  color: #475569;
}

.hall-category-badge span {
  display: none;
}

.hall-card-arrow {
  display: inline-grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: var(--color-text-secondary);
}

.hall-card-arrow svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hall-profile-cta {
  display: none;
}

@media (max-width: 1060px) {
  .hall-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .hall-main {
    width: min(100% - 28px, 1080px);
  }

  .hall-list-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .hall-category-filter {
    justify-content: flex-start;
  }

  .hall-list {
    grid-template-columns: 1fr;
  }

  .hall-row,
  .hall-row:hover,
  .hall-row.is-expanded,
  .hall-row:focus,
  .hall-row:focus-within {
    aspect-ratio: 1.618 / 1;
    transform: none;
  }
}

/* Poster-style talent cards: photo first, skills on hover. */
.hall-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  overflow: visible;
}

.hall-photo-card,
.hall-photo-card:hover,
.hall-photo-card.is-expanded,
.hall-photo-card:focus,
.hall-photo-card:focus-within {
  position: relative;
  display: block;
  min-height: 0;
  aspect-ratio: 4 / 5;
  padding: 0;
  border: 0;
  border-radius: 20px;
  background: #0d1713;
  box-shadow: 0 14px 36px rgba(23, 33, 29, 0.10);
  transform: translateZ(0);
  transform-origin: center;
  overflow: hidden;
}

.hall-photo-card {
  cursor: pointer;
  isolation: isolate;
  color: inherit;
  text-decoration: none;
  transition:
    box-shadow 220ms ease,
    transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.hall-photo-card:hover,
.hall-photo-card:focus,
.hall-photo-card:focus-within {
  z-index: 8;
  box-shadow: 0 28px 60px rgba(9, 18, 15, 0.26);
  transform: translateY(-8px) scale(1.055);
}

.hall-card-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 22%, rgba(93, 202, 165, 0.35), transparent 34%),
    linear-gradient(145deg, #1b2d27, #07110e);
}

.hall-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.02);
  transition: filter 220ms ease, transform 260ms ease;
}

.hall-card-photo-fallback {
  display: grid;
  place-items: center;
}

.hall-card-photo-fallback span {
  display: grid;
  width: 104px;
  height: 104px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(225, 245, 238, 0.18);
  color: #f7fffb;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 0;
}

.hall-photo-card:hover .hall-card-photo img,
.hall-photo-card:focus .hall-card-photo img,
.hall-photo-card:focus-within .hall-card-photo img {
  filter: saturate(0.82) contrast(1.04) brightness(0.58);
  transform: scale(1.08);
}

.hall-card-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(3, 10, 8, 0.05) 18%, rgba(3, 10, 8, 0.08) 45%, rgba(3, 10, 8, 0.78) 100%);
  pointer-events: none;
  transition: opacity 200ms ease;
}

.hall-photo-card:hover .hall-card-glow,
.hall-photo-card:focus .hall-card-glow,
.hall-photo-card:focus-within .hall-card-glow {
  opacity: 0;
}

.hall-poster-identity {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  gap: 4px;
  min-width: 0;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.42);
  transition: opacity 180ms ease, transform 220ms ease;
}

.hall-poster-identity strong {
  overflow: hidden;
  font-size: 28px;
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hall-poster-identity em {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hall-photo-card:hover .hall-poster-identity,
.hall-photo-card:focus .hall-poster-identity,
.hall-photo-card:focus-within .hall-poster-identity {
  opacity: 0;
  transform: translateY(10px);
}

.hall-poster-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(3, 10, 8, 0.20) 0%, rgba(3, 10, 8, 0.72) 48%, rgba(3, 10, 8, 0.88) 100%);
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}

@supports (backdrop-filter: blur(6px)) {
  .hall-poster-overlay {
    backdrop-filter: blur(5px);
  }
}

.hall-photo-card:hover .hall-poster-overlay,
.hall-photo-card:focus .hall-poster-overlay,
.hall-photo-card:focus-within .hall-poster-overlay {
  opacity: 1;
}

.hall-poster-overlay-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.hall-poster-overlay-copy {
  display: grid;
  gap: 5px;
  margin-top: auto;
}

.hall-poster-overlay-copy strong {
  overflow: hidden;
  font-size: 24px;
  font-weight: 850;
  line-height: 1.12;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hall-poster-overlay-copy em,
.hall-poster-overlay .hall-skill-count {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hall-poster-overlay .hall-skill-strip,
.hall-photo-card:hover .hall-skill-strip,
.hall-photo-card:focus .hall-skill-strip,
.hall-photo-card:focus-within .hall-skill-strip {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 8px;
  min-height: 0;
  margin-top: 0;
  overflow: visible;
}

.hall-poster-overlay .hall-skill-chip,
.hall-photo-card:hover .hall-skill-chip,
.hall-photo-card:focus .hall-skill-chip,
.hall-photo-card:focus-within .hall-skill-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.13);
  box-shadow: none;
  transform: none;
}

.hall-poster-overlay .hall-skill-icon {
  width: 14px;
  height: 14px;
  flex-basis: 14px;
  color: #8df0cf;
}

.hall-poster-overlay .hall-skill-chip span {
  display: block;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
  text-shadow: none;
}

.hall-poster-overlay .hall-category-badge {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.hall-poster-overlay .hall-card-arrow {
  width: 34px;
  height: 34px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  color: #ffffff;
}

.hall-poster-overlay .hall-card-arrow svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 1060px) {
  .hall-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .hall-list {
    grid-template-columns: 1fr;
  }

  .hall-photo-card,
  .hall-photo-card:hover,
  .hall-photo-card:focus,
  .hall-photo-card:focus-within {
    aspect-ratio: 4 / 5;
    transform: none;
  }

  .hall-poster-overlay {
    opacity: 1;
    background:
      linear-gradient(180deg, rgba(3, 10, 8, 0.16) 0%, rgba(3, 10, 8, 0.58) 52%, rgba(3, 10, 8, 0.86) 100%);
  }

  .hall-poster-identity {
    display: none;
  }
}
