.request-feed {
  touch-action: auto;
  overscroll-behavior: auto;
}

.newspaper-panel {
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: max(18px, env(safe-area-inset-top, 0px)) 14px calc(92px + env(safe-area-inset-bottom, 0px));
  background: #fbfbfc;
  color: #111217;
}

.newspaper-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 2px 14px;
}

.newspaper-head small {
  display: none;
}

.newspaper-head h2 {
  position: relative;
  margin: 0;
  padding-left: 0;
  color: #111217;
  font-size: 24px;
  font-weight: 1000;
  letter-spacing: -.04em;
}

.newspaper-head h2::before {
  content: none;
}

.newspaper-head h2::after {
  content: '';
  margin-left: 6px;
  color: #111217;
  font-size: 16px;
}

.newspaper-place-title {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.newspaper-place-flag {
  width: 31px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(17, 18, 23, .08), 0 6px 14px rgba(17, 18, 23, .08);
}

.newspaper-place-flag img,
.newspaper-place-flag svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.newspaper-head-actions {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.newspaper-icon-button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #111217;
}

.newspaper-icon-button svg {
  width: 22px;
  height: 22px;
  display: block;
}

.newspaper-lang-wrap {
  position: relative;
}

.newspaper-lang-toggle {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #111217;
}

.newspaper-lang-toggle svg {
  width: 22px;
  height: 22px;
  display: block;
}

.newspaper-lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 40;
  min-width: 128px;
  padding: 8px;
  border: 1px solid #e8e9ef;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(17, 18, 23, .12);
}

.newspaper-lang-menu[hidden] {
  display: none !important;
}

.newspaper-lang-menu button {
  width: 100%;
  padding: 10px 11px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: #111217;
  font: 900 13px var(--font-ui, 'Pretendard', sans-serif);
  text-align: left;
}

.newspaper-lang-menu button.active,
.newspaper-lang-menu button:hover,
.newspaper-lang-menu button:focus {
  background: rgba(123, 87, 255, .1);
  color: #6f4cff;
}

.newspaper-country-bar {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 0 12px;
  scrollbar-width: none;
}


.newspaper-country-bar[hidden] {
  display: none !important;
}
.newspaper-country-bar::-webkit-scrollbar {
  display: none;
}

.newspaper-country-chip {
  flex: 0 0 auto;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.035));
  color: rgba(246,243,255,.78);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.04),
    0 10px 24px rgba(0,0,0,.16);
  backdrop-filter: blur(8px);
}

.newspaper-country-chip b {
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.newspaper-country-chip.is-active {
  border-color: rgba(216,255,54,.36);
  background: linear-gradient(135deg, #7b57ff, #b234ff);
  color: #fff;
  box-shadow: 0 12px 28px rgba(123,87,255,.26);
}

.newspaper-sort-chip {
  min-height: 34px;
  padding: 0 13px;
}

.newspaper-sort-chip span {
  font-size: 14px;
  line-height: 1;
}

.newspaper-sort-chip.is-active {
  border-color: #7b57ff;
  background: linear-gradient(135deg, #7b57ff, #b234ff);
  color: #fff;
  box-shadow: 0 10px 24px rgba(123, 87, 255, .22);
}

.newspaper-feed {
  flex: 1 1 auto;
  min-height: 0;
  max-height: none;
  display: grid;
  align-content: start;
  gap: 10px;
  overflow-y: auto;
  padding: 0 0 12px;
  scrollbar-width: none;
}

.newspaper-feed.is-expanded {
  max-height: min(58dvh, 560px);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.newspaper-feed::-webkit-scrollbar {
  display: none;
}

.newspaper-card {
  position: relative;
  inset: auto;
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  align-items: stretch;
  grid-template-rows: auto auto;
  padding: 0;
  border: 1px solid #e8e9ef;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(20, 20, 30, .045);
  overflow: hidden;
  transform: none;
  transition: transform .16s ease, box-shadow .16s ease;
}

.newspaper-card:active {
  transform: scale(.992);
}

.newspaper-card-thumb {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 14px 0 0 14px;
  grid-column: 1;
  grid-row: 1;
  align-self: start;
}

.newspaper-card-thumb img {
  width: 84px;
  height: 84px;
  flex: none;
  display: block;
  object-fit: cover;
  aspect-ratio: 1;
  border-radius: 16px;
  background: rgba(124, 92, 255, .08);
  box-shadow: 0 10px 24px rgba(5, 5, 12, .16);
}

.newspaper-card-thumb:not(.is-photo) img {
  object-fit: contain;
  padding: 6px;
  background: rgba(124, 92, 255, .08);
}

.newspaper-card-thumb.is-photo img {
  border-radius: 16px;
}

.home-footprints-panel.newspaper-panel .newspaper-card .request-body {
  display: grid;
  gap: 8px;
  padding: 18px 18px 15px 12px;
  overflow: visible;
  grid-column: 2;
  grid-row: 1;
}

.newspaper-card-country,
.newspaper-card-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin: 0;
}

.newspaper-card-meta-left {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  min-width: 0;
}

.newspaper-card-country span,
.newspaper-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #161820;
  font-size: 14px;
  font-weight: 1000;
}

.newspaper-card-country em,
.newspaper-card-meta em {
  margin-left: auto;
  flex-shrink: 0;
  color: #9a9da8;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.newspaper-solved-badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid rgba(216, 255, 54, .42);
  background: rgba(216, 255, 54, .16);
  color: #5f7d00;
  font: 900 11px var(--font-ui, 'Pretendard', sans-serif);
  letter-spacing: -.01em;
}

.newspaper-card.is-solved {
  border-color: rgba(124, 60, 255, 0.28);
}

.newspaper-category-label {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 3px 9px;
  border: 1px solid rgba(127, 106, 255, .28);
  border-radius: 999px;
  background: rgba(127, 106, 255, .10);
  color: #7f6aff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: -.01em;
}

.home-footprints-panel.newspaper-panel .newspaper-card h3 {
  margin: 8px 0 0;
  color: #111217;
  font-size: 16px;
  line-height: 1.28;
  letter-spacing: -.035em;
}

.home-footprints-panel.newspaper-panel .newspaper-card p {
  margin: 0;
  color: #818592;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.newspaper-tags {
  grid-column: 2;
  grid-row: 2;
  min-height: 18px;
  display: flex;
  align-items: center;
  padding: 0 18px 14px 12px;
  color: #818592;
  font-size: 12px;
  font-weight: 800;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}

.newspaper-tags::-webkit-scrollbar {
  display: none;
}

.newspaper-card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
  color: #69707d;
}

.newspaper-card-stats span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 900;
}

.newspaper-card-stats svg {
  width: 18px;
  height: 18px;
  color: #69707d;
}

.newspaper-card-stats span:last-child svg {
  width: 15px;
  height: 15px;
}

.home-footprints-panel.newspaper-panel .feed-scroll-card.newspaper-card .request-body {
  gap: 0;
}

.home-footprints-panel.newspaper-panel .newspaper-card h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-footprints-panel.newspaper-panel .newspaper-tags {
  grid-column: 1 / -1;
  justify-content: center;
  gap: 7px;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 18px 14px 14px;
}

.home-footprints-panel.newspaper-panel .newspaper-tags span {
  display: inline;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  line-height: 1;
}

.newspaper-load-more {
  width: fit-content;
  min-width: 132px;
  height: 42px;
  justify-self: center;
  border: 1px solid rgba(127, 106, 255, .26);
  border-radius: 999px;
  background: rgba(127, 106, 255, .12);
  color: #7f6aff;
  font-size: 13px;
  font-weight: 1000;
}

.home-footprints-panel.newspaper-panel .feed-scroll-card.newspaper-card {
  min-height: 138px;
}

.home-footprints-panel.newspaper-panel .request-feed.newspaper-feed.is-expanded {
  max-height: min(58dvh, 560px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
}

.home-footprints-panel.newspaper-panel .request-feed.newspaper-feed.is-expanded::-webkit-scrollbar {
  display: none;
}


.request-feed .feed-scroll-card {
  transition: none;
  will-change: auto;
}

.request-media.map-media {
  position: relative;
  display: block;
  overflow: hidden;
  background: #dfe2dc;
}

.request-media.photo-media {
  position: relative;
  display: block;
  overflow: hidden;
  background: #1b1d1a;
}

.request-media.photo-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.request-card.feed-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
}

.request-card.feed-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
}

.request-card.feed-loading .request-body h3 {
  color: #777970;
  font-size: 15px;
  font-weight: 600;
}

.request-card.feed-empty .request-body {
  display: grid;
  place-items: center;
}

.request-card.feed-empty .request-body p {
  margin: 0;
  color: #777970;
  font: 600 15px/1.5 var(--font-ui, 'Pretendard', sans-serif);
}

.session-timer {
  position: absolute;
  top: 64px;
  right: 16px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(20, 22, 19, .82);
  color: #f4f6f1;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .02em;
}

.session-timer.expired {
  background: #ff5b35;
  color: #fff;
}

.extend-session {
  margin: 0 16px 8px;
  width: calc(100% - 32px);
  padding: 13px;
  border: 1.5px dashed #c6cabc;
  border-radius: 14px;
  background: #fff;
  color: #1b1d1a;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
}

.profile-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.profile-settings-view {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.profile-settings-form {
  flex: 1;
  overflow-y: auto;
  padding: 8px 18px 28px;
}

.profile-settings-form .onboarding-field {
  margin-top: 0;
}

.profile-settings-form .onboarding-field + .onboarding-field,
.profile-settings-form .onboarding-field-hint + .onboarding-field {
  margin-top: 14px;
}

.profile-settings-form .onboarding-field input,
.profile-settings-form .onboarding-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #171815;
  border-radius: 14px;
  background: #fff;
  color: #171815;
  font-size: 13px;
  font-weight: 600;
}

.profile-settings-form .onboarding-field textarea {
  min-height: 108px;
  resize: vertical;
  font-weight: 500;
  line-height: 1.45;
}

.profile-settings-save {
  width: 100%;
  height: 52px;
  margin-top: 20px;
  border: 2px solid #171815;
  border-radius: 14px;
  background: #d8ff42;
  color: #171815;
  font: 11px 'Archivo Black', sans-serif;
  letter-spacing: .04em;
  cursor: pointer;
}

.profile-settings-save:active {
  transform: scale(.98);
}

.profile-settings-status {
  display: block;
  margin-top: 12px;
  color: #777970;
  font-size: 12px;
  font-style: normal;
  text-align: center;
}

.profile-certs small {
  color: #777970;
}

.profile-view-head .view-head > div,
.profile-view-head > div {
  flex: 1;
}

.profile-view-head h2 {
  margin: 0;
  font: 700 24px 'Archivo Black', sans-serif;
  letter-spacing: -.04em;
}

.profile-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding: 4px 18px 14px;
}

.profile-hero-main {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
  min-width: 0;
}

.profile-hero-copy {
  flex: 1;
  min-width: 0;
  padding-top: 2px;
}

.profile-trust-badge,
.profile-equipped-title {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px 4px 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #8b6cff, #6b4fe0);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 8px;
  box-shadow: 0 4px 12px rgba(107, 79, 224, .22);
}

.profile-trust-badge b,
.profile-equipped-title b {
  font: inherit;
}

.profile-equipped-title b {
  font: inherit;
}

.profile-trust-badge i {
  font-style: normal;
  opacity: .72;
  font-size: 10px;
  margin-left: 1px;
}

.profile-hero-copy h2 {
  margin: 0 0 7px;
  font: 700 22px 'Archivo Black', sans-serif;
  letter-spacing: -.03em;
  line-height: 1.08;
}

.profile-nationality-line,
.profile-status-line {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0 0 5px;
  font-size: 12px;
  color: #5f635c;
  line-height: 1.35;
}

.profile-nationality-line {
  font-weight: 600;
  color: #3d4038;
}

.profile-verified {
  display: inline-grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #3b82f6;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  flex-shrink: 0;
}

.profile-status-line span:first-child {
  color: #7c5cfc;
  font-size: 13px;
}

.profile-settings-button {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(23, 24, 21, .12);
  border-radius: 12px;
  background: #fff;
  font-size: 18px;
  line-height: 1;
  color: #5f635c;
  box-shadow: 0 4px 14px rgba(23, 24, 21, .06);
}

.profile-settings-button:active {
  transform: scale(.97);
}

.cert-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(47, 209, 118, .14);
  color: #1b6e3f;
  font-weight: 700;
  font-size: 13px;
}

.board-view {
  display: flex;
  flex-direction: column;
}

.board-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 0 16px 16px;
}

.board-section { margin-top: 18px; }

.board-label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  color: #777970;
  margin-bottom: 10px;
}

.board-empty { color: #777970; }

.board-card {
  background: #fff;
  border: 1px solid var(--line, rgba(23,24,21,.12));
  border-radius: 16px;
  padding: 14px 16px;
  margin-bottom: 10px;
}

.pinned-card {
  background: #fffdf3;
  border-color: rgba(255, 91, 53, .25);
}

.pinned-card b { display: block; margin-bottom: 4px; }
.pinned-card p, .footprint-card p { margin: 0; line-height: 1.45; }

.footprint-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #777970;
  margin-bottom: 8px;
  font-weight: 600;
}

.footprint-card p { margin-bottom: 10px; }

.vote-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--line, rgba(23,24,21,.12));
  background: #f4f6f1;
  font-weight: 700;
}

.vote-button.voted {
  background: rgba(47, 209, 118, .18);
  color: #1b6e3f;
  border-color: transparent;
}

.board-composer {
  display: flex;
  gap: 8px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line, rgba(23,24,21,.12));
  background: #fff;
}

.board-composer input {
  flex: 1;
  border: 1px solid var(--line, rgba(23,24,21,.12));
  border-radius: 999px;
  padding: 11px 16px;
  background: #f4f6f1;
}

.perk-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.perk-row + .perk-row {
  border-top: 1px solid var(--line, rgba(23,24,21,.12));
}

.perk-row.deferred {
  opacity: .6;
}

.perk-row.deferred em {
  display: block;
  font-style: normal;
  font-size: 12px;
  color: #777970;
}

.soon-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  color: #777970;
  border: 1px solid var(--line, rgba(23,24,21,.12));
  border-radius: 999px;
  padding: 3px 8px;
}

.report-reasons {
  display: grid;
  gap: 8px;
  margin: 8px 0 12px;
}

.report-reasons button {
  text-align: left;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line, rgba(23,24,21,.12));
  background: #fff;
  font-weight: 600;
}

.report-reasons button.selected {
  border-color: var(--orange, #ff5b35);
  background: rgba(255, 91, 53, .08);
}

.report-panel textarea {
  width: 100%;
  min-height: 70px;
  border: 1px solid var(--line, rgba(23,24,21,.12));
  border-radius: 12px;
  padding: 11px 14px;
  background: #f4f6f1;
  resize: none;
  margin-bottom: 10px;
}

#answerReportLayer.auth-layer {
  position: absolute;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  padding: 18px;
}

#answerReportLayer.auth-layer[hidden] {
  display: none !important;
}

#answerReportLayer .auth-shade {
  background: rgba(3, 3, 12, .72);
  backdrop-filter: blur(12px);
}

#answerReportLayer .auth-panel {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas:
    "icon head"
    "reasons reasons"
    "detail detail"
    "submit submit"
    "status status";
  column-gap: 8px;
  left: auto;
  right: auto;
  bottom: auto;
  width: min(392px, 100%);
  max-height: min(82dvh, 640px);
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 26px 18px 18px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 16% 8%, rgba(255, 91, 139, .16), transparent 34%),
    linear-gradient(180deg, rgba(24, 22, 42, .98), rgba(11, 10, 24, .98));
  color: #f6f3ff;
  box-shadow: 0 26px 88px rgba(0, 0, 0, .5);
  text-align: left;
}

#answerReportLayer .auth-panel::-webkit-scrollbar {
  display: none;
}

#answerReportLayer .auth-close {
  right: 14px;
  top: 14px;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .08);
  color: #f6f3ff;
}

#answerReportLayer .auth-rune {
  grid-area: icon;
  justify-self: start;
  align-self: start;
  width: 46px;
  height: 46px;
  margin: 0;
  border: 1px solid rgba(255, 109, 139, .32);
  border-radius: 16px;
  background: rgba(255, 109, 139, .12);
  box-shadow: none;
  color: #ff6d8b;
  font-size: 22px;
}

#answerReportLayer .report-head-copy {
  grid-area: head;
  display: grid;
  gap: 6px;
  align-content: start;
  min-width: 0;
  margin: 0 40px 16px 0;
}

#answerReportLayer .report-head-copy small {
  margin: 0;
  color: #ff8aa3;
  font: 900 11px var(--font-ui, 'Pretendard', sans-serif);
  letter-spacing: .02em;
}

#answerReportLayer .report-head-copy h2 {
  margin: 0;
  color: #fff;
  font: 900 22px/1.2 var(--font-ui, 'Pretendard', sans-serif);
  letter-spacing: -.04em;
}

#answerReportLayer .auth-rune svg,
#answerReportLayer .report-submit-icon svg {
  width: 22px;
  height: 22px;
}


#answerReportLayer .report-reasons {
  grid-area: reasons;
  gap: 8px;
  margin: 0 0 12px;
}

#answerReportLayer .report-reasons button {
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px;
  background: rgba(255, 255, 255, .055);
  color: rgba(246, 243, 255, .86);
  font: 800 13px var(--font-ui, 'Pretendard', sans-serif);
}

#answerReportLayer .report-reasons button.selected {
  border-color: rgba(255, 109, 139, .55);
  background: rgba(255, 109, 139, .14);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(255, 109, 139, .08) inset;
}

#answerReportLayer textarea {
  grid-area: detail;
  min-height: 92px;
  margin-bottom: 0;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  background: rgba(255, 255, 255, .06);
  color: #f6f3ff;
  font: 700 13px/1.5 var(--font-ui, 'Pretendard', sans-serif);
}

#answerReportLayer textarea::placeholder {
  color: rgba(246, 243, 255, .38);
}

#answerReportLayer .google-login {
  grid-area: submit;
  height: 54px;
  margin-top: 14px;
  justify-content: center;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #7b57ff, #b234ff);
  color: #fff;
  box-shadow: 0 14px 36px rgba(123, 87, 255, .28);
}

#answerReportLayer .google-login b {
  width: auto;
  height: auto;
  background: transparent;
  color: inherit;
}

#answerReportLayer .google-login span {
  font: 900 14px var(--font-ui, 'Pretendard', sans-serif);
}

#answerReportLayer .auth-panel em {
  grid-area: status;
  min-height: 18px;
  margin-top: 10px;
  color: rgba(255, 138, 163, .9);
  font: 800 11px var(--font-ui, 'Pretendard', sans-serif);
  text-align: center;
}

.text-button {
  display: block;
  width: 100%;
  background: none;
  border: none;
  color: #777970;
  font-weight: 600;
  font-size: 13px;
  text-decoration: underline;
  padding: 8px;
  margin-top: 8px;
}

.souvenirs-menu,
.collection-menu {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  text-align: left;
  cursor: pointer;
}

.souvenirs-menu-main,
.collection-menu-main {
  flex: 1;
  min-width: 0;
}

.souvenirs-menu em,
.collection-menu em {
  flex-shrink: 0;
  font: 28px/1 'DM Sans', sans-serif;
  font-style: normal;
  color: #94978e;
}

.profile-card-souvenirs,
.profile-card-collection {
  padding-bottom: 14px;
}

.souvenirs-preview,
.collection-preview {
  margin-top: 10px;
}

.souvenirs-panel,
.profile-collection-panel {
  z-index: 45;
}

.souvenirs-grid,
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 0 18px 22px;
  max-height: min(52vh, 420px);
  overflow-y: auto;
}

.souvenirs-grid .souvenir-cell,
.collection-grid .collection-cell,
.collection-preview .collection-cell {
  height: 92px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  border-radius: 16px;
  background: #f0efe9;
  font-size: 28px;
}

.souvenirs-grid .souvenir-cell small,
.collection-grid .collection-cell small,
.collection-preview .collection-cell small {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .04em;
}

.souvenirs-grid .souvenir-cell.locked {
  color: #aaa;
  filter: grayscale(1);
}

.collection-cell-empty {
  grid-column: 1 / -1;
  height: 72px;
  font-size: 14px;
  color: #94978e;
}

.collection-empty {
  margin: 0;
  padding: 0 18px 24px;
  color: #777970;
  font-size: 13px;
  text-align: center;
}

/* Map header: back arrow (left, where the logo was), role switch centered, actions right */
.map-screen .topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
}

.map-screen .topbar #mapBack {
  justify-self: start;
}

.map-screen .topbar #mapBack.is-reserved {
  visibility: hidden;
  pointer-events: none;
}

.map-screen .topbar .role-switch {
  justify-self: center;
}

.map-screen .topbar .topbar-right {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Topbar icon buttons ??same shape as language toggle */
.map-screen .map-lang-toggle {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(23, 24, 21, .15);
  border-radius: 12px;
  background: rgba(255, 255, 255, .9);
  color: #171815;
  box-shadow: 0 6px 20px rgba(23, 24, 21, .07);
  backdrop-filter: blur(10px);
  font-size: 18px;
  line-height: 1;
}

.map-screen .map-lang-toggle svg {
  width: 20px;
  height: 20px;
  display: block;
}

.map-screen .map-lang-toggle:active {
  transform: translateY(1px);
}

/* Traveler-only floating actions above bottom nav */
.traveler-dock {
  position: absolute;
  z-index: 7;
  left: 10px;
  right: 10px;
  bottom: calc(10px + 66px + 12px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  pointer-events: none;
}

.traveler-dock > * {
  pointer-events: auto;
}

.traveler-dock .map-lang-toggle {
  flex: 0 0 auto;
}

.traveler-dock .traveler-dock-chip {
  height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(23, 24, 21, .12);
  border-radius: 14px;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 8px 24px rgba(23, 24, 21, .12);
  backdrop-filter: blur(12px);
  color: var(--ink, #171815);
  font: 15px 'Archivo Black', sans-serif;
  letter-spacing: -.04em;
}

.traveler-dock .traveler-dock-chip .dock-q {
  color: var(--orange, #ff5b35);
}

.traveler-dock .traveler-dock-chip .dock-q::before {
  content: '';
}

.traveler-dock .traveler-dock-chip:active {
  transform: translateY(1px);
}

.map-screen .bottom-nav {
  grid-template-columns: repeat(3, 1fr);
}

.currency-view {
  display: flex;
  flex-direction: column;
  background: var(--paper, #f8f7f2);
  position: relative;
}

.currency-view .view-head {
  flex-shrink: 0;
}

.currency-head-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  margin-left: auto;
}

.currency-tool-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.currency-tool-button svg {
  display: block;
}

.currency-stage {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 8px 20px 0;
  min-height: 0;
}

.currency-block {
  display: grid;
  gap: 6px;
}

.currency-block small {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  color: #777970;
}

.currency-display {
  font: 700 clamp(36px, 10vw, 52px) 'Archivo Black', sans-serif;
  letter-spacing: -.04em;
  line-height: 1.05;
  word-break: break-all;
}

.currency-display-krw {
  white-space: nowrap;
  word-break: normal;
  overflow-wrap: normal;
  overflow: hidden;
  width: 100%;
}

.currency-display.home {
  color: var(--orange, #ff5b35);
}

.currency-block-home .currency-rate-meta {
  font-style: normal;
  font-size: 13px;
  color: #94958e;
}

.currency-equals {
  text-align: center;
  font: 700 22px 'Archivo Black', sans-serif;
  color: #94958e;
  padding: 4px 0;
}

.currency-keypad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 12px 16px calc(14px + env(safe-area-inset-bottom, 0px));
  flex-shrink: 0;
  width: 100%;
  box-sizing: border-box;
}

.currency-keypad button {
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 3px 12px rgba(23, 24, 21, .06);
  font: 700 18px 'Archivo Black', sans-serif;
  color: var(--ink, #171815);
}

.currency-keypad button[data-key="back"] {
  font-size: 17px;
  color: #777970;
}

.currency-keypad .currency-op-key {
  color: var(--orange, #ff5b35);
  background: rgba(255, 91, 53, .1);
}

.currency-keypad .currency-enter-key {
  grid-column: 1 / -1;
  background: var(--orange, #ff5b35);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255, 91, 53, .28);
  font-size: 14px;
  letter-spacing: .08em;
}

.currency-keypad button:active {
  transform: scale(.97);
  background: rgba(255, 255, 255, .75);
}

.currency-panel {
  position: absolute;
  inset: 0;
  z-index: 30;
  display: flex;
  align-items: flex-end;
}

.currency-panel[hidden] {
  display: none !important;
}

.currency-panel-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(23, 24, 21, .28);
}

.currency-panel-sheet {
  position: relative;
  width: 100%;
  max-height: 72%;
  border-radius: 22px 22px 0 0;
  background: var(--paper, #f8f7f2);
  box-shadow: 0 -12px 40px rgba(23, 24, 21, .12);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.currency-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px 10px;
  flex-shrink: 0;
}

.currency-panel-head h3 {
  margin: 4px 0 0;
  font: 700 22px 'Archivo Black', sans-serif;
  letter-spacing: -.04em;
}

.currency-picker-list,
.currency-history-list {
  overflow-y: auto;
  padding: 0 12px calc(16px + env(safe-area-inset-bottom, 0px));
}

.currency-picker-item,
.currency-history-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 0;
  border-radius: 14px;
  padding: 14px 12px;
  background: transparent;
  text-align: left;
}

.currency-picker-item strong,
.currency-history-item strong {
  display: block;
  font: 700 16px 'Archivo Black', sans-serif;
}

.currency-picker-item span,
.currency-history-item span {
  font-size: 12px;
  color: #777970;
  white-space: nowrap;
}

.currency-history-item {
  flex-direction: column;
  align-items: flex-start;
  border-bottom: 1px solid rgba(23, 24, 21, .08);
  border-radius: 0;
}

.currency-history-item:last-child {
  border-bottom: 0;
}

.currency-picker-item.selected {
  background: rgba(255, 91, 53, .08);
}

.currency-picker-item.selected strong {
  color: var(--orange, #ff5b35);
}

.currency-history-empty {
  margin: 0;
  padding: 24px 12px 32px;
  text-align: center;
  font-size: 14px;
  color: #777970;
}

.perk-row.perk-button {
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  padding: 10px 0 0;
}

.perk-row.perk-button em {
  display: block;
  font-style: normal;
  font-size: 12px;
  color: #777970;
  margin-top: 2px;
}

.perk-arrow {
  font-size: 20px;
  color: #94958e;
}

.mini-world-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 35% 38%,#ffd978 0 15%,transparent 16%),radial-gradient(circle at 68% 45%,#9fe0ae 0 20%,transparent 21%),linear-gradient(145deg,#8ee3f2,#d8f6dc);
}

.feed-map-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(23, 24, 21, .25));
  pointer-events: none;
}

.feed-map-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 12px;
  background: #ff5b35;
  color: #fff;
  box-shadow: 0 9px 25px rgba(23, 24, 21, .28);
  font-size: 18px;
  transform: translate(-50%, -60%) rotate(-45deg);
}

.feed-map-pin span {
  transform: rotate(45deg);
}

.feed-map-label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 10px;
  background: rgba(23, 24, 21, .88);
  color: #fff;
  font: 8px 'Archivo Black';
  letter-spacing: .05em;
  backdrop-filter: blur(8px);
}

.game-marker {
  position: relative;
  min-width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 3px solid #171815;
  border-radius: 16px;
  background: #fff;
  box-shadow: 5px 6px 0 #171815;
  transform: translateY(-8px);
}

.game-marker::after {
  content: '';
  position: absolute;
  left: 15px;
  bottom: -7px;
  width: 11px;
  height: 11px;
  border-right: 3px solid #171815;
  border-bottom: 3px solid #171815;
  background: #fff;
  transform: rotate(45deg);
}

.game-marker span { font-size: 20px; }
.game-marker b {
  position: absolute;
  right: -8px;
  top: -9px;
  min-width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border: 2px solid #171815;
  border-radius: 50%;
  background: #ff5b35;
  color: #fff;
  font-size: 8px;
}
.game-marker small {
  position: absolute;
  bottom: -25px;
  padding: 4px 6px;
  border-radius: 6px;
  background: #171815;
  color: #fff;
  font: 7px 'Archivo Black';
}

.casual-map {
  background: linear-gradient(#8de4f4,#dff9ef);
}

.arrival-map.casual-arrival {
  background: radial-gradient(circle at 30% 42%,#b9a1ef 0 17%,transparent 18%),radial-gradient(circle at 70% 55%,#7edca8 0 22%,transparent 23%),linear-gradient(145deg,#8ee3f2,#d8f6dc);
}

.casual-map::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(248, 247, 242, .48), transparent 20%, transparent 70%, rgba(39, 147, 179, .18));
}

.district-layer {
  position: absolute;
  inset: 10% 7% 14%;
  z-index: 2;
}

.district-label {
  position: absolute;
  min-width: 28px;
  padding: 3px 4px;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 6px;
  background: rgba(54, 76, 80, .76);
  color: #fff;
  box-shadow: 0 3px 8px rgba(35, 92, 103, .22);
  font-size: 6px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(3px);
}

.district-label.hot::after {
  content: attr(data-count);
  position: absolute;
  right: -7px;
  top: -8px;
  min-width: 15px;
  height: 15px;
  display: grid;
  place-items: center;
  padding: 0 2px;
  border: 1px solid #171815;
  border-radius: 8px;
  background: #ff5b35;
  color: white;
  font-size: 6px;
}

.district-label.selected {
  z-index: 3;
  border-color: #d8ff42;
  background: #d8ff42;
  color: #171815;
  box-shadow: 0 0 0 4px rgba(216, 255, 66, .2);
}

.chat-list {
  display: grid;
  gap: 0;
  padding: 0 16px 24px;
  overflow-y: auto;
  flex: 1;
}

.chat-list-view {
  display: flex;
  flex-direction: column;
}

.chat-list-item {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 16px 4px;
  border: 0;
  border-bottom: 1px solid rgba(23, 24, 21, .08);
  background: transparent;
  text-align: left;
}

.chat-list-item strong {
  display: block;
  font: 700 15px 'Archivo Black', sans-serif;
  letter-spacing: -.03em;
}

.chat-list-item em {
  display: block;
  font-style: normal;
  font-size: 13px;
  color: #777970;
  margin-top: 4px;
  line-height: 1.35;
}

.chat-list-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 4px 14px rgba(23, 24, 21, .06);
  font-size: 20px;
}

.chat-list-arrow {
  font-size: 22px;
  color: #94958e;
}

.chat-list-empty {
  margin: 0;
  padding: 32px 20px;
  text-align: center;
  font-size: 14px;
  color: #777970;
}

.chat-empty {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.chat-empty > p {
  margin: 0;
  padding: 24px 20px;
  font-size: 14px;
  line-height: 1.55;
  color: #777970;
}

.chat-view {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

#chatActivePane {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

#chatActivePane .chat-head,
#chatActivePane .request-summary {
  flex-shrink: 0;
}

#chatActivePane .messages {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.message.mine {
  margin-left: auto;
  align-self: flex-end;
  grid-template-columns: auto auto;
}

.message.mine p {
  border-radius: 16px 16px 4px 16px;
  background: var(--acid);
}

.message.theirs {
  align-self: flex-start;
}

.message.theirs p {
  border-radius: 16px 16px 16px 4px;
  background: white;
}

.request-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  width: calc(100% - 28px);
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  border: 1px solid var(--line);
}

.request-summary-chevron {
  margin-left: auto;
  font-style: normal;
  font-size: 18px;
  color: #777970;
}

.request-detail-body {
  padding: 0 20px 24px;
  display: grid;
  gap: 12px;
}

.request-detail-body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  white-space: pre-wrap;
}

.request-detail-body img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

.request-detail-body small {
  color: #777970;
  font-size: 12px;
}

.request-detail-sheet .category-tag {
  align-self: flex-start;
}

#chatActivePane .composer,
#chatActivePane .extend-session,
#chatActivePane .solved-button {
  flex-shrink: 0;
}

.casual-map + .topbar,
.casual-map ~ .map-context,
.casual-map ~ .map-district-trail,
.casual-map ~ .map-card,
.casual-map ~ .bottom-nav { color: #171815; }

.map-district-trail {
  position: absolute;
  z-index: 6;
  top: calc(max(12px, env(safe-area-inset-top, 0)) + 58px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: calc(100% - 28px);
  padding: 9px 15px;
  border: 2px solid #171815;
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.96);
  box-shadow: 0 4px 14px rgba(23, 24, 21, 0.14);
  font: 700 13px 'DM Sans', sans-serif;
  letter-spacing: -0.02em;
  white-space: nowrap;
  pointer-events: none;
}

.map-district-trail-flag {
  font-size: 16px;
  line-height: 1;
}

.map-district-trail[hidden] {
  display: none !important;
}

body.district-detail-open .map-district-trail {
  display: none !important;
}

.sheet-lede {
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: #777970;
  font-weight: 500;
}

.help-guidelines-sheet {
  z-index: calc(var(--z-sheet, 45) + 2);
}

.lucide-map-pinned {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.lucide-map-pinned svg {
  width: 100%;
  height: 100%;
  display: block;
}

.location-lock > .lucide-map-pinned {
  width: 22px;
  height: 22px;
}

.answer-location .lucide-map-pinned {
  width: 15px;
  height: 15px;
}

.location-share-toggle {
  cursor: pointer;
}

.location-share-toggle p {
  margin: 3px 0 0;
  color: #777970;
  font-size: 10px;
  line-height: 1.35;
}

.location-share-toggle .location-switch {
  position: relative;
  width: 50px;
  height: 30px;
  flex: 0 0 50px;
  margin-left: auto;
  border-radius: 999px;
  background: #d7d5cc;
  box-shadow: inset 0 0 0 1px rgba(23, 24, 21, .08);
  transition: background .18s ease, box-shadow .18s ease;
}

.location-share-toggle .location-switch i {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 7px rgba(23, 24, 21, .22);
  transition: transform .18s ease;
}

.location-share-toggle .location-switch-label {
  min-width: 36px;
  color: #777970;
  text-align: right;
  font-size: 10px;
  font-weight: 900;
}

.location-share-toggle:has(input:checked) {
  background: rgba(215, 255, 47, .24);
}

.location-share-toggle:has(input:checked) .location-switch {
  background: #171815;
  box-shadow: inset 0 0 0 1px #171815;
}

.location-share-toggle:has(input:checked) .location-switch i {
  transform: translateX(20px);
}

.location-share-toggle:has(input:checked) .location-switch-label {
  color: #171815;
}

.location-share-toggle:has(input:disabled) {
  opacity: .62;
}

.answer-map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  margin-top: 10px;
  border-radius: 13px;
  background: #171815;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
}

.help-sheet-dark {
  top: 0;
  min-height: 100%;
  max-height: 100%;
  padding: max(18px, env(safe-area-inset-top)) 20px max(24px, env(safe-area-inset-bottom));
  border-radius: 0;
  background:
    radial-gradient(circle at 75% 0%, rgba(128, 59, 255, .2), transparent 28%),
    radial-gradient(circle at 20% 22%, rgba(111, 57, 255, .12), transparent 34%),
    #080810;
  color: #fff;
  box-shadow: none;
  animation: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.help-sheet-dark::-webkit-scrollbar {
  display: none;
}

.help-sheet-dark .sheet-handle {
  display: none;
}

.help-sheet-dark .lucide-icon {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.help-sheet-dark .lucide-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.help-dark-head {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  min-height: 54px;
}

.help-dark-head h2 {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-align: center;
  letter-spacing: -0.04em;
}

.help-dark-head .help-dark-brand-title {
  min-width: 0;
}

.help-title-mascot {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(124, 60, 255, .24));
}

.help-dark-close {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 34px;
  line-height: 1;
  font-weight: 300;
}

.help-dark-hero {
  display: block;
  margin: 6px 0 24px;
  text-align: center;
}

.help-dark-logo {
  margin: 0;
  font: 900 30px/1 var(--font-ui, 'DM Sans', sans-serif);
  letter-spacing: -0.08em;
  transform: rotate(-2deg);
}

.help-dark-head .help-dark-logo {
  display: inline-block;
  white-space: nowrap;
}

.help-dark-logo span {
  color: #7c3cff;
  text-shadow: 0 0 22px rgba(124, 60, 255, .5);
}

.help-dark-hero > p:last-child {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: 17px;
  font-weight: 800;
}

.help-dark-hero > div > p:last-child {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: 17px;
  font-weight: 800;
}

.help-sheet-dark .help-dark-question {
  display: block;
  margin-bottom: 28px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  background: #14141f;
  box-shadow: inset 0 0 0 1px rgba(124, 60, 255, .05);
}

.help-sheet-dark .help-dark-question > span {
  display: none;
  margin: 0 0 14px;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.help-sheet-dark .request-input textarea {
  height: 130px;
  padding: 0 0 28px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: 14px;
  line-height: 1.65;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.help-sheet-dark .request-input textarea::-webkit-scrollbar {
  display: none;
}

.help-sheet-dark .request-input textarea::placeholder {
  color: rgba(255, 255, 255, .42);
}

.help-sheet-dark .request-input textarea:focus {
  border: 0;
}

.help-sheet-dark .request-input > small {
  right: 5px;
  bottom: 5px;
  color: rgba(255, 255, 255, .48);
  font-size: 12px;
  font-weight: 800;
}

.help-dark-section {
  margin: 0 0 28px;
}

.help-dark-section h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.help-dark-section h3 small {
  color: rgba(255, 255, 255, .45);
  font-size: 13px;
  font-weight: 800;
}

.help-photo-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.help-sheet-dark .photo-drop {
  width: 92px;
  height: 104px;
  flex: 0 0 92px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  margin: 0;
  padding: 10px;
  border: 1.5px dashed rgba(124, 60, 255, .8);
  border-radius: 16px;
  background: rgba(255, 255, 255, .03);
  color: #fff;
  text-align: center;
}

.help-sheet-dark .photo-drop > span {
  width: 28px;
  height: 28px;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: 24px;
}

.help-sheet-dark .photo-drop b {
  color: #fff;
  font-size: 12px;
}

.help-sheet-dark .photo-drop small {
  color: rgba(255, 255, 255, .44);
}

.help-sheet-dark .photo-drop img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 16px;
}

.help-sheet-dark #photoPreview {
  display: none !important;
}

.help-sheet-dark .photo-preview-grid {
  display: flex;
  gap: 12px;
  margin: 0;
}

.help-sheet-dark .photo-preview-grid[hidden] {
  display: none !important;
}

.help-sheet-dark .photo-preview-grid img {
  width: 92px;
  height: 104px;
  flex: 0 0 92px;
  border-radius: 16px;
}

.help-sheet-dark .photo-preview-item {
  position: relative;
  flex: 0 0 92px;
  width: 92px;
  height: 104px;
  margin: 0;
}

.help-sheet-dark .photo-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.help-sheet-dark .photo-preview-remove {
  position: absolute;
  top: -7px;
  right: -7px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  background: rgba(17, 17, 28, .94);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  box-shadow: 0 8px 16px rgba(0, 0, 0, .34);
}

.help-sheet-dark .photo-count-badge {
  z-index: 2;
  right: 6px;
  top: 6px;
  background: rgba(124, 60, 255, .95);
}

.help-sheet-dark .photo-drop-more {
  border-color: rgba(255, 255, 255, .24);
}

.help-sheet-dark #categories {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  margin: 0;
  overflow-x: auto;
}

.help-sheet-dark #categories button {
  height: 44px;
  flex: 0 0 auto;
  display: inline-flex;
  gap: 7px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 13px;
  background: #171722;
  color: rgba(255, 255, 255, .78);
}

.help-sheet-dark #categories button span {
  display: inline-grid !important;
  font-size: 16px;
}

.help-sheet-dark #categories button b {
  font-size: 13px;
}

.help-sheet-dark #categories button.selected {
  border: 1px solid #7c3cff;
  background: rgba(124, 60, 255, .18);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(124, 60, 255, .28), 0 10px 24px rgba(124, 60, 255, .14);
}

.help-sheet-dark .location-share-toggle {
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  background: #14141f;
}

.help-sheet-dark .location-share-toggle > .lucide-map-pinned {
  width: 34px;
  height: 34px;
  color: #7c3cff;
}

.help-sheet-dark .location-share-toggle small {
  color: #fff;
  font-size: 14px;
}

.help-sheet-dark .location-share-toggle b {
  margin-top: 2px;
  color: rgba(255, 255, 255, .54);
  font-size: 11px;
}

.help-sheet-dark .location-share-toggle p {
  color: rgba(255, 255, 255, .44);
  font-size: 11px;
}

.help-sheet-dark .location-share-toggle .location-switch {
  background: rgba(255, 255, 255, .16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .1);
}

.help-sheet-dark .location-share-toggle:has(input:checked) .location-switch {
  background: linear-gradient(135deg, #6d35ff, #bf3df4);
  box-shadow: 0 8px 20px rgba(124, 60, 255, .24);
}

.help-sheet-dark .location-share-toggle .location-switch i {
  background: #fff;
}

.help-sheet-dark .location-switch-label {
  display: none;
}

.help-sheet-dark .help-dark-submit {
  height: 68px;
  display: grid;
  place-items: center;
  justify-content: center;
  gap: 5px;
  margin: 18px 0 0;
  border-radius: 999px;
  background: linear-gradient(100deg, #6836ff, #bd3eee);
  box-shadow: 0 18px 34px rgba(124, 60, 255, .3);
}

.help-sheet-dark .help-dark-submit span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 18px;
  letter-spacing: -0.04em;
}

.help-sheet-dark .help-dark-submit em {
  display: none;
}

.help-dark-credit {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .5);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.help-dark-credit .credit-inline {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin: 0 2px;
  color: #fff8d8;
  vertical-align: -3px;
}

.help-dark-credit .credit-inline img {
  width: 17px;
  height: 17px;
  object-fit: contain;
  filter: drop-shadow(0 2px 5px rgba(255, 176, 31, .28));
}

.help-dark-credit .credit-inline b {
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
}

.help-dark-input-hint {
  margin: -10px 0 18px;
  color: rgba(255, 255, 255, .5);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.55;
  text-align: left;
  padding: 0 2px;
}

.help-dark-tip {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  padding: 16px;
  border: 1px solid rgba(124, 60, 255, .25);
  border-radius: 16px;
  background: rgba(124, 60, 255, .06);
}

.help-dark-tip b {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #b789ff;
  font-size: 14px;
}

.help-dark-tip p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
  line-height: 1.55;
}

.help-dark-tip > span {
  margin-left: auto;
  font-size: 38px;
}

#helpSheet .categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 16px;
}

#helpSheet .categories button {
  width: auto;
  min-width: 0;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0 14px;
  border: 1px solid rgba(23, 24, 21, .12);
  border-radius: 999px;
  background: #fff;
  color: #55584f;
  box-shadow: none;
}

#helpSheet .categories button span,
#helpSheet .categories .category-cost {
  display: none !important;
}

#helpSheet .categories button b {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

#helpSheet .categories button.selected {
  border: 1px solid #171815;
  background: #171815;
  color: #fff;
}

.help-guidelines-body {
  display: grid;
  gap: 14px;
  padding: 4px 18px 8px;
}

.help-guidelines-body p {
  margin: 0;
  font: 500 14px/1.55 var(--font-ui, 'Pretendard', sans-serif);
  color: #4a4a44;
}

.help-guidelines-agree {
  margin-top: 8px;
}

[data-theme='night'] .help-guidelines-body p {
  color: var(--c-text-secondary, #a099b0);
}

.post-compose-preview {
  display: grid;
  gap: 8px;
  margin: 0 0 12px;
}

.post-compose-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #777970;
}

.post-compose-card {
  margin: 0;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(23, 24, 21, .1);
  background: #fff;
  box-shadow: 0 8px 24px rgba(23, 24, 21, .06);
}

.post-compose-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.post-compose-meta span {
  font-size: 13px;
  font-weight: 700;
}

.post-compose-meta em {
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #ff5b35;
}

.post-compose-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: #171815;
  white-space: pre-wrap;
}

.local-seeking-badge {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 8px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 91, 53, .12);
  color: #ff5b35;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.arrival-post-card {
  margin: 0 0 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(23, 24, 21, .08);
  box-shadow: 0 10px 30px rgba(23, 24, 21, .08);
}

.arrival-post-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: #171815;
  white-space: pre-wrap;
}

.arrival-wait {
  margin-bottom: 10px;
}

.arrival-wait strong {
  font: 700 28px 'Archivo Black', sans-serif;
}

.arrival-offers {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0 8px;
}

.arrival-offer-card {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid rgba(23, 24, 21, 0.12);
  border-radius: 16px;
  background: #fff;
  text-align: left;
  cursor: pointer;
}

.arrival-offer-card:disabled {
  opacity: 0.55;
  cursor: wait;
}

.arrival-offer-card.is-selected,
.arrival-offer-card.is-selected:disabled {
  border-color: rgba(62, 207, 142, 0.65);
  background: rgba(62, 207, 142, 0.12);
  opacity: 1;
  cursor: default;
}

.arrival-offer-card b {
  display: block;
  font: 700 15px 'DM Sans', sans-serif;
}

.arrival-offer-card p {
  margin: 5px 0 6px;
  color: #484a43;
  font: 600 12px/1.45 'DM Sans', sans-serif;
  white-space: pre-wrap;
}

.arrival-offer-card small {
  color: #777970;
  font: 500 12px 'DM Sans', sans-serif;
}

.arrival-answer-photo {
  width: 100%;
  max-height: 140px;
  object-fit: cover;
  display: block;
  margin: 8px 0;
  border-radius: 12px;
  background: #eceee7;
}

.arrival-offer-avatar {
  font-size: 22px;
  line-height: 1;
}

.ask-type {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 0 0 12px;
}

.ask-type button {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1.5px solid rgba(23, 24, 21, .12);
  background: #fff;
  text-align: left;
  transition: border-color .15s, background .15s;
}

.ask-type button b {
  font-size: 14px;
  font-weight: 700;
}

.ask-type button small {
  font-size: 11px;
  font-weight: 600;
  color: #777970;
}

.ask-type button.selected {
  border-color: var(--ink, #171815);
  background: #f3f4ee;
}

.ask-type button[data-asktype="emergency"].selected {
  border-color: #ff5b35;
  background: rgba(255, 91, 53, .08);
}

.ask-type button[data-asktype="emergency"].selected small {
  color: #ff5b35;
}

.credit-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  padding: 10px 14px;
  border-radius: 14px;
  background: #f3f4ee;
  border: 1px solid rgba(23, 24, 21, .08);
}

.credit-status > span {
  font-size: 18px;
}

.credit-status div {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.credit-status small {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #777970;
}

.credit-status b {
  font-size: 15px;
  font-weight: 700;
}

.credit-status em {
  margin-left: auto;
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  color: #777970;
}

.credit-status.insufficient {
  background: rgba(255, 91, 53, .08);
  border-color: rgba(255, 91, 53, .3);
}

.credit-status.insufficient em {
  color: #ff5b35;
}

.coin-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
}

.coin-icon-lg {
  width: 32px;
  height: 32px;
}

.credit-sheet-title {
  margin: 0;
  line-height: 1;
}

.credit-label {
  display: inline-flex;
  align-items: center;
}

.perk-row.credit-open {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: 0;
  padding: 0;
  text-align: left;
}

.credit-open-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.credit-open-right em {
  font-style: normal;
  font-size: 20px;
  color: #777970;
  line-height: 1;
}

.credit-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 4px 0 18px;
}

.credit-pool {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(23, 24, 21, .1);
  background: #fff;
}

.credit-pool small {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  color: #777970;
}

.credit-pool b {
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.credit-pool em {
  font-style: normal;
  font-size: 11px;
  font-weight: 500;
  color: #9a9c91;
  line-height: 1.35;
}

.credit-pool-bonus {
  background: #f3f4ee;
}

.credit-pool-bonus b {
  font-variant-numeric: tabular-nums;
}

.credit-pool-paid b {
  color: #ff5b35;
}

.credit-history {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 8px;
  max-height: 280px;
  overflow-y: auto;
}

.credit-row-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 4px;
  border-bottom: 1px solid rgba(23, 24, 21, .07);
}

.credit-row-item:last-child {
  border-bottom: 0;
}

.credit-row-item .credit-row-main {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.credit-row-item .credit-row-main b {
  font-size: 14px;
  font-weight: 700;
}

.credit-row-item .credit-row-main small {
  font-size: 11px;
  color: #9a9c91;
}

.credit-row-item .credit-row-delta {
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
}

.credit-row-item .credit-row-delta.plus {
  color: #2fd176;
}

.credit-row-item .credit-row-delta.minus {
  color: #ff5b35;
}

.credit-history-empty {
  padding: 18px 4px;
  font-size: 13px;
  color: #9a9c91;
  text-align: center;
}

.answer-view {
  background: #0b0d14;
  color: #171815;
  overflow: hidden;
}

.answer-head {
  position: sticky;
  top: 0;
  z-index: 5;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 8px;
  padding: calc(12px + env(safe-area-inset-top)) 12px 10px;
  background: rgba(11, 13, 20, 0.96);
  color: #fff;
}

.answer-head-title {
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 0;
}

.answer-head h2 {
  margin: 0;
  text-align: center;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.answer-head h2[hidden] {
  display: none !important;
}

.answer-destination-badge {
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font: 1000 24px/1 var(--font-ui, 'Pretendard', sans-serif);
  letter-spacing: -0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.answer-destination-badge[hidden] {
  display: none !important;
}

.answer-destination-badge span:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.answer-destination-flag {
  flex-shrink: 0;
  width: 36px;
  height: auto;
  display: block;
}

.answer-head .back-button,
.answer-head-icon {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: #fff;
  font-size: 25px;
}

.answer-head-icon {
  font-size: 22px;
}

.answer-scroll {
  height: 100%;
  overflow-y: auto;
  padding: 10px 12px max(24px, env(safe-area-inset-bottom));
  background:
    radial-gradient(circle at 20% 0%, rgba(210, 255, 50, 0.14), transparent 34%),
    #0b0d14;
}

.answer-question-card {
  padding: 18px;
  border-radius: 18px;
  background: #fbfbff;
  box-shadow: 0 14px 44px rgba(0, 0, 0, .24);
}

.answer-question-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin: 25px 0 25px;
}

.answer-question-tags[hidden] {
  display: none !important;
}

.answer-question-tags span {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
}

.answer-list-section {
  margin-top: 10px;
  padding: 14px 8px 8px;
  border-radius: 18px;
  background: #fbfbff;
  box-shadow: 0 14px 44px rgba(0, 0, 0, .2);
}

.answer-list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 4px 10px;
  border-bottom: 1px solid rgba(23, 24, 21, .08);
}

.answer-list-head h3 {
  margin: 0;
  color: #171815;
  font-size: 15px;
  font-weight: 900;
}

.answer-list-head button {
  border: 0;
  background: transparent;
  color: #777970;
  font-size: 12px;
  font-weight: 800;
}

.answer-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 8px;
}

.answer-list-empty {
  margin: 0;
  padding: 22px 8px;
  color: #8b8e98;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

.answer-detail-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 86px;
  gap: 10px;
  padding: 12px 8px;
  border: 1px solid rgba(23, 24, 21, .08);
  border-radius: 14px;
  background: #fff;
}

.answer-detail-card.is-selected {
  border-color: rgba(62, 207, 142, .55);
  box-shadow: 0 0 0 3px rgba(62, 207, 142, .12);
}

.answer-detail-main {
  min-width: 0;
}

.answer-detail-author {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 8px;
}

.answer-detail-avatar {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #eef0f4;
  overflow: hidden;
}

.answer-detail-author b {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #171815;
  font-size: 14px;
  font-weight: 900;
}

.answer-detail-author small {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 2px;
  color: #7b57ff;
  font-size: 11px;
  font-weight: 800;
}

.cert-pill-row {
  display: flex !important;
  flex-wrap: wrap;
  gap: 5px;
}

.cert-pill {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 3px 7px;
  border-radius: 999px;
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
}

.cert-pill-country {
  background: rgba(123, 87, 255, .12);
  color: #7b57ff;
}

.cert-pill-area {
  background: rgba(62, 207, 142, .13);
  color: #1d9f67;
}

.answer-detail-card p {
  margin: 0;
  color: #33362f;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
  white-space: pre-wrap;
}

.answer-detail-photo {
  width: 100%;
  max-height: 150px;
  object-fit: cover;
  display: block;
  margin-top: 9px;
  border-radius: 12px;
  background: #eef0f4;
}

.photo-count-badge {
  position: absolute;
  right: 8px;
  top: 8px;
  min-width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #171815;
  color: #fff;
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
}

.photo-preview-grid,
.answer-question-photos,
.answer-detail-photos,
.answer-photo-preview-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
}

.photo-preview-grid {
  margin-top: 8px;
}

.photo-preview-grid img,
.answer-photo-preview-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  background: #eef0f4;
}

.answer-question-photos,
.answer-detail-photos {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 6px 0 14px;
}

.answer-question-photos img,
.answer-detail-photos img {
  width: 100%;
  aspect-ratio: 1.1;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  background: #eef0f4;
}

.answer-detail-photos {
  margin: 9px 0 0;
}

.answer-comment-thread {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(23, 24, 21, .08);
}

.answer-comment {
  padding: 10px;
  border-radius: 14px;
  background: rgba(246, 247, 250, .9);
}

.answer-comment.is-mine {
  background: rgba(215, 255, 47, .16);
}

.answer-comment-head {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 5px;
}

.answer-comment-head b {
  font-size: 12px;
  font-weight: 900;
}

.answer-comment-flag {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
}

.answer-comment-flag img,
.answer-comment-flag svg {
  width: 14px;
  height: auto;
  display: block;
}

.answer-comment-action {
  margin-left: auto;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #8b8e98;
}

.answer-comment-action .lucide-inline {
  width: 16px;
  height: 16px;
}

.answer-comment-action.is-delete {
  color: #ff6f8f;
}

.answer-comment-action.is-report {
  color: #ff8a6b;
}

.answer-comment-meta-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
  color: #8b8e98;
}

.answer-comment-meta-row small {
  font-size: 10px;
  font-weight: 800;
}

.answer-comment p {
  margin: 0;
  color: #3f423b;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
  white-space: pre-wrap;
}

.answer-comment-photos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5px;
  margin-top: 7px;
}

.answer-comment-photos img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
  background: #eef0f4;
}

.answer-comment-form {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  gap: 7px;
  align-items: end;
  padding: 8px;
  border: 1px solid rgba(23, 24, 21, .08);
  border-radius: 16px;
  background: #fff;
}

.answer-comment-form label,
.answer-comment-form button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 12px;
  background: #f0f1f5;
  color: #171815;
  font-size: 18px;
  font-weight: 900;
}

.answer-comment-form textarea {
  min-height: 40px;
  max-height: 92px;
  resize: none;
  border: 0;
  outline: none;
  border-radius: 12px;
  padding: 11px 12px;
  background: #f6f7fa;
  color: #171815;
  font-size: 13px;
  font-weight: 700;
}

.answer-comment-form button {
  background: #d7ff2f;
}

.answer-detail-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
  justify-content: flex-start;
}

.answer-pick-button {
  min-height: 42px;
  border: 1.5px solid rgba(123, 87, 255, .18);
  border-radius: 13px;
  background: #fff;
  color: #7b57ff;
  font-size: 12px;
  font-weight: 900;
}

.answer-pick-button {
  color: #ff4f7a;
  border-color: rgba(255, 79, 122, .25);
}

.answer-pick-button:disabled {
  color: #3ecf8e;
  border-color: rgba(62, 207, 142, .32);
  background: rgba(62, 207, 142, .08);
}

.answer-card-meta,
.answer-author-row,
.answer-location {
  display: flex;
  align-items: center;
}

.answer-card-meta {
  justify-content: space-between;
  margin-bottom: 12px;
  color: #8b8e98;
  font-size: 12px;
  font-weight: 700;
}

.answer-chip {
  color: #7b57ff;
  font-weight: 900;
}

.answer-author-row {
  gap: 10px;
  margin-bottom: 14px;
}

.answer-author-avatar {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #eceef3;
  font-size: 20px;
}

.answer-author-row b {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 900;
}

.answer-country-identity {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.answer-country-name {
  color: rgba(246, 243, 255, .72);
  font-size: 12px;
  font-weight: 900;
}

.answer-country-cert {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(123, 87, 255, .16);
  color: #c8b7ff;
  font-size: 10px;
  font-weight: 900;
}

.country-cert-info {
  width: 16px;
  height: 16px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #b99cff;
  line-height: 1;
}

.country-cert-info svg {
  width: 15px;
  height: 15px;
  display: block;
}

.country-cert-popover {
  position: fixed;
  z-index: 9999;
  width: min(292px, calc(100vw - 24px));
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  background: rgba(17, 17, 31, .98);
  color: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .42);
  backdrop-filter: blur(16px);
}

.country-cert-popover b {
  display: block;
  margin-bottom: 8px;
  color: #c9b7ff;
  font-size: 13px;
  font-weight: 1000;
}

.country-cert-popover-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  border-radius: 12px;
  background: linear-gradient(135deg, #7b57ff, #b932ff);
  color: #fff;
}

.country-cert-popover-icon svg {
  width: 20px;
  height: 20px;
}

.country-cert-popover p {
  margin: 0;
  color: rgba(255, 255, 255, .74);
  font-size: 12px;
  line-height: 1.5;
}

.country-cert-popover p + p {
  margin-top: 4px;
}

.country-cert-popover ol {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.country-cert-popover li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .055);
}

.country-cert-popover li b {
  margin: 0;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.country-cert-popover li span {
  color: rgba(246, 243, 255, .62);
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.country-cert-popover .country-cert-popover-manual {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: rgba(246, 243, 255, .7);
}

.answer-gps-level-layer {
  z-index: 110;
}

.answer-gps-level-card {
  max-height: min(720px, calc(100vh - 40px));
  overflow: auto;
  scrollbar-width: none;
}

.answer-gps-level-card::-webkit-scrollbar {
  display: none;
}

.answer-gps-level-card li.is-current-user-level {
  border-color: rgba(123, 87, 255, .78);
  background:
    linear-gradient(135deg, rgba(123, 87, 255, .32), rgba(62, 207, 142, .16)),
    rgba(255, 255, 255, .08);
  box-shadow: 0 0 0 1px rgba(123, 87, 255, .22), 0 10px 28px rgba(123, 87, 255, .18);
}

.answer-gps-level-card li.is-current-user-level b {
  color: #fff;
}

.answer-gps-level-card li.is-current-user-level span {
  color: #d8ccff;
}

.saved-me-confirm {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(0, 0, 0, .58);
  backdrop-filter: blur(12px);
}

.saved-me-confirm-card {
  width: min(320px, 100%);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(21, 21, 38, .98), rgba(10, 10, 22, .98));
  color: #fff;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .48);
}

.saved-me-confirm-card p {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 900;
}

.saved-me-confirm-card div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.saved-me-confirm-card button {
  height: 46px;
  border: 0;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 1000;
}

.saved-me-yes {
  background: linear-gradient(135deg, #7b57ff, #bc40ff);
  color: #fff;
}

.comment-delete-confirm .saved-me-yes {
  background: linear-gradient(135deg, #ff5b7d, #ff7a45);
}

.saved-me-close {
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .76);
}

.answer-profile-copy {
  width: 100%;
  min-width: 0;
  flex: 1 1 auto;
}

.answer-profile-title {
  width: fit-content;
  max-width: 100%;
  margin: 0;
  padding: 3px 8px;
  border: 1px solid rgba(139, 92, 246, .38);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(139, 92, 246, .22), rgba(255, 255, 255, .06));
  color: #d8ccff;
  font-size: 10px;
  font-weight: 1000;
  line-height: 1.15;
  letter-spacing: -.01em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.answer-profile-country {
  display: block;
  margin-bottom: 4px;
}

.answer-profile-country .answer-profile-name-row {
  margin-bottom: 4px;
}

.creator-profile-banner-host[hidden] {
  display: none !important;
}

.creator-profile-banner {
  display: block;
  width: min(100%, 260px);
  margin-top: 8px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
  color: inherit;
  text-decoration: none;
  overflow: hidden;
}

.creator-profile-banner img {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 2;
  height: auto;
  object-fit: cover;
  background: rgba(255, 255, 255, .08);
}

.creator-profile-banner:hover {
  border-color: rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .09);
}

.answer-detail-card > .creator-profile-banner {
  width: calc(100% + 18px);
  max-width: none;
  margin: 12px -9px 16px;
  border-radius: 12px;
}

.answer-detail-card > .creator-profile-banner img {
  aspect-ratio: 5 / 2;
}

.answer-profile-name-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  min-width: 0;
}

.answer-profile-name-main {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  flex: 1 1 auto;
}

.answer-profile-name-row > b,
.answer-profile-name-row .answer-author-name {
  min-width: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 1000;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.answer-profile-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
  width: 100%;
  margin: 0 0 5px;
}

.answer-saved-count {
  color: rgba(246, 243, 255, .68);
  font-size: 10.5px;
  font-weight: 1000;
  line-height: 1;
  letter-spacing: -.02em;
  white-space: nowrap;
  margin-left: auto;
}

.answer-profile-name-row .answer-author-flag {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}

.answer-profile-trust {
  display: grid;
  gap: 4px;
}

.answer-trust-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  min-width: 0;
  color: rgba(246, 243, 255, .72);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.15;
}

.answer-trust-main {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex: 1 1 auto;
  min-width: 0;
}

.answer-trust-line span,
.answer-trust-line em {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.answer-trust-line em {
  flex: 0 0 auto;
  max-width: 42%;
  color: rgba(246, 243, 255, .58);
  font-style: normal;
}

.answer-trust-country {
  color: #d8ccff;
}

.answer-trust-area {
  color: #59e59d;
}

.answer-profile-name-row .cert-pill-row {
  flex: 0 0 auto;
  margin-top: 0;
  justify-content: flex-start;
}

.answer-author-row small {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 3px;
  color: #7b57ff;
  font-size: 12px;
  font-weight: 800;
}

.answer-question-card h3 {
  margin: 0 0 8px;
  color: #171815;
  font-size: 21px;
  line-height: 1.28;
  letter-spacing: -0.04em;
}

.answer-question-card p {
  margin: 0 0 14px;
  color: #3f423b;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
  white-space: pre-wrap;
}

.answer-question-photo {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  border-radius: 14px;
  margin: 16px 0 14px;
  background: #eceef3;
}

.answer-location {
  gap: 5px;
  color: #7b57ff;
  font-size: 12px;
  font-weight: 800;
  width: fit-content;
  text-decoration: none;
}

.answer-composer {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  align-items: end;
  gap: 8px;
  margin: 10px 0 12px;
  padding: 10px;
  border-radius: 20px;
  background: rgba(250, 250, 255, 0.98);
  border: 1px solid rgba(23, 24, 21, .08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
}

.answer-composer-legacy {
  display: none !important;
}

.answer-photo-preview-grid {
  grid-column: 1 / -1;
  order: -1;
  grid-template-columns: repeat(5, 42px);
  justify-content: start;
}

.answer-photo-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #f0f1f5;
  color: #171815;
  font-size: 24px;
  font-weight: 800;
  overflow: hidden;
}

.answer-photo-button img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.answer-composer textarea {
  min-height: 52px;
  max-height: 118px;
  resize: none;
  border: 0;
  border-radius: 18px;
  padding: 16px 16px 13px;
  background: linear-gradient(135deg, #7b57ff, #aa4dff);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  outline: none;
  box-shadow: 0 12px 24px rgba(123, 87, 255, .24);
}

.answer-composer textarea::placeholder {
  color: rgba(255, 255, 255, .82);
}

.answer-submit {
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 16px;
  background: #d7ff2f;
  color: #121310;
  font-size: 22px;
  font-weight: 900;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, .16);
}

.answer-submit:disabled {
  opacity: .55;
}

/* Cooked 3.0 request detail - dark social Q&A */
.answer-view {
  background:
    radial-gradient(circle at 82% 12%, rgba(123, 87, 255, .16), transparent 34%),
    radial-gradient(circle at 12% 0%, rgba(52, 211, 153, .08), transparent 28%),
    #070711;
  color: #f6f3ff;
}

.answer-head {
  grid-template-columns: 44px 1fr 44px;
  padding: calc(10px + env(safe-area-inset-top)) 16px 8px;
  background: rgba(7, 7, 17, .94);
  backdrop-filter: blur(18px);
}

.answer-head .back-button,
.answer-head-icon {
  display: grid;
  place-items: center;
  color: #f6f3ff;
}

.answer-head .back-button svg,
.answer-head-icon svg,
.lucide-inline svg {
  width: 21px;
  height: 21px;
}

.answer-head-actions {
  position: relative;
  display: flex;
  justify-content: flex-end;
  gap: 4px;
}

.answer-head-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
}

.answer-more-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 20;
  min-width: 132px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  background: rgba(25, 22, 39, .98);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .36);
  backdrop-filter: blur(18px);
}

.answer-more-menu[hidden] {
  display: none !important;
}

.answer-more-menu button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 11px 12px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: #f6f3ff;
  font: 900 13px var(--font-ui, 'Pretendard', sans-serif);
  text-align: left;
}

.answer-more-menu button .lucide-inline,
.answer-card-menu button .lucide-inline {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
}

.answer-more-menu button:hover,
.answer-more-menu button:active {
  background: rgba(255, 255, 255, .08);
}

.answer-more-menu button.is-danger {
  color: #ff6f8f;
}

.answer-more-menu button:disabled,
.answer-more-menu button.is-disabled {
  opacity: .38;
}

.answer-more-menu button.is-disabled {
  cursor: not-allowed;
}

.answer-scroll {
  padding: 8px 16px max(104px, calc(96px + env(safe-area-inset-bottom, 0px)));
  background: transparent;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.answer-scroll::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.answer-question-card,
.answer-list-section {
  border: 1px solid rgba(255, 255, 255, .07);
  background: linear-gradient(180deg, rgba(20, 20, 38, .98), rgba(13, 13, 28, .98));
  box-shadow: 0 18px 56px rgba(0, 0, 0, .34);
}

.answer-question-card {
  padding: 16px;
  border-radius: 13px;
}

.answer-card-meta {
  margin-bottom: 8px;
  color: rgba(246, 243, 255, .56);
}

.answer-chip {
  color: #a277ff;
}

.answer-author-row {
  align-items: flex-start;
  margin-bottom: 10px;
}

.answer-author-avatar,
.answer-detail-avatar {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  color: #f6f3ff;
}

.answer-profile-photo {
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  background: linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(123, 87, 255, .16));
}

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

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

.answer-comment-avatar[role="link"] {
  cursor: pointer;
}

.answer-author-row b,
.answer-detail-author b {
  color: #fff;
}

.answer-author-row small,
.answer-detail-author small {
  color: rgba(246, 243, 255, .6);
}

.answer-question-card h3 {
  margin-bottom: 6px;
  color: #fff;
  font-size: 18px;
  white-space: pre-wrap;
  overflow: visible;
  text-overflow: unset;
  -webkit-line-clamp: unset;
  display: block;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.answer-question-card p {
  color: rgba(246, 243, 255, .78);
  font-size: 13px;
  white-space: pre-wrap;
  overflow: visible;
  text-overflow: unset;
  -webkit-line-clamp: unset;
  display: block;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.answer-question-photo,
.answer-question-photos img,
.answer-detail-photos img,
.answer-comment-photos img {
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .08);
}

.answer-question-photos,
.answer-detail-photos {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.answer-question-photos {
  margin: 16px 0 14px;
}

.answer-question-photos img,
.answer-detail-photos img {
  aspect-ratio: 1.24;
  border-radius: 9px;
}

.answer-question-original-toggle {
  display: flex;
  width: fit-content;
  margin: 8px 0 0;
}

.answer-question-original-copy {
  display: block;
  width: 100%;
  margin-top: 8px;
}

.answer-question-original-copy[hidden] {
  display: none !important;
}

.answer-location,
.answer-map-link {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 5px;
  color: #9b63ff;
}

.answer-question-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
  margin-top: 12px;
}

.answer-question-stats[hidden] {
  display: none;
}

.answer-question-views {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(246, 243, 255, .66);
  font-size: 12px;
  font-weight: 900;
}

.answer-question-views .lucide-inline {
  width: 11px;
  height: 11px;
  color: rgba(246, 243, 255, .58);
}

.answer-question-date,
.answer-detail-date {
  color: rgba(246, 243, 255, .48);
  font-size: 12px;
  font-weight: 800;
}

.answer-location {
  margin-top: 10px;
  padding: 8px 11px;
  border: 1px solid rgba(155, 99, 255, .24);
  border-radius: 999px;
  background: rgba(155, 99, 255, .1);
  font-size: 12px;
  font-weight: 1000;
}

.answer-map-link {
  width: fit-content;
  margin-top: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(155, 99, 255, .24);
  border-radius: 999px;
  background: rgba(155, 99, 255, .1);
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
}

.answer-list-section {
  margin-top: 10px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  border: 0;
}

.answer-list-head {
  padding: 4px 4px 10px;
  border-bottom: 0;
}

.answer-list-head h3 {
  color: #fff;
  font-size: 15px;
}

.answer-list-head button {
  color: #a277ff;
}

.answer-detail-card {
  position: relative;
  display: block;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 13px;
  background: linear-gradient(180deg, rgba(19, 19, 37, .98), rgba(12, 12, 27, .98));
  box-shadow: 0 12px 34px rgba(0, 0, 0, .24);
  overflow: hidden;
}

.answer-detail-card.is-selected {
  border-color: rgba(52, 211, 153, .38);
  box-shadow: 0 0 0 1px rgba(52, 211, 153, .16), 0 16px 42px rgba(0, 0, 0, .3);
}

.answer-best-ribbon {
  position: static;
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  padding: 3px 12px 3px 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #66e77b, #24b961);
  color: #06100a;
  font-size: 9px;
  font-weight: 1000;
  letter-spacing: .08em;
}

.answer-card-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 18px;
  margin: -4px 0 4px;
}

.answer-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
  min-width: 0;
}

.answer-card-top .answer-detail-author {
  gap: 10px;
  margin-bottom: 0;
  width: 100%;
  min-width: 0;
}

.answer-card-top .answer-detail-avatar {
  width: 58px;
  height: 58px;
}

.answer-card-meta-right {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(246, 243, 255, .46);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.answer-card-more-button {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: rgba(246, 243, 255, .78);
}

.answer-card-more-button .lucide-inline {
  width: 20px;
  height: 20px;
}

.answer-card-more-button.is-report {
  color: rgba(255, 109, 139, .9);
}

.answer-card-more-button.is-report .lucide-inline {
  width: 19px;
  height: 19px;
}

.answer-card-menu {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  z-index: 8;
  min-width: 108px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px;
  background: rgba(25, 22, 39, .98);
  box-shadow: 0 16px 38px rgba(0, 0, 0, .32);
  backdrop-filter: blur(16px);
}

.answer-card-menu[hidden] {
  display: none !important;
}

.answer-card-menu button {
  width: 100%;
  padding: 10px 11px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #f6f3ff;
  font: 900 12px var(--font-ui, 'Pretendard', sans-serif);
  text-align: left;
}

.answer-card-menu button:active {
  background: rgba(255, 255, 255, .08);
}

.answer-card-menu button.is-danger {
  color: #ff6f8f;
}

.cert-pill {
  min-height: 18px;
  padding: 3px 7px;
  font-size: 10px;
}

.cert-pill-country {
  background: rgba(255, 187, 75, .16);
  color: #ffc55f;
}

.cert-pill-area {
  background: rgba(73, 209, 108, .16);
  color: #78e986;
}

.answer-detail-main {
  margin-top: 8px;
}

.answer-detail-meta-row {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  text-align: left;
}

.answer-detail-card p {
  color: rgba(246, 243, 255, .84);
  font-size: 13px;
  line-height: 1.62;
}

.answer-detail-actions {
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
}

.answer-comment-count {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #8c5cff;
  font-size: 12px;
  font-weight: 900;
}

.answer-comment-count {
  color: rgba(246, 243, 255, .62);
}

.answer-detail-meta-row .answer-comment-count {
  min-height: auto;
  color: rgba(246, 243, 255, .52);
}

.answer-detail-meta-row .answer-comment-count .lucide-inline {
  width: 13px;
  height: 13px;
}

.answer-detail-meta-row .answer-detail-date {
  text-align: right;
}

.answer-pick-button {
  margin-left: auto;
  min-height: 34px;
  padding: 0 12px;
  border-color: rgba(255, 88, 132, .34);
  background: rgba(255, 88, 132, .08);
  color: #ff7aa0;
}

.answer-comment-thread {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.answer-comment {
  background: rgba(255, 255, 255, .035);
}

.answer-comment.is-mine {
  background: rgba(123, 87, 255, .1);
}

.answer-comment-head b {
  color: #fff;
}

.answer-comment-action {
  background: transparent;
  box-shadow: none;
}

.answer-comment-action.is-delete {
  color: rgba(255, 111, 143, .86);
}

.answer-comment-action.is-report {
  color: rgba(255, 138, 107, .86);
}

.answer-comment-action .lucide-inline {
  width: 16px;
  height: 16px;
}

.answer-comment-meta-row {
  color: rgba(246, 243, 255, .42);
}

.answer-comment p {
  color: rgba(246, 243, 255, .76);
}

.answer-comment-form,
.answer-composer {
  border: 1px solid rgba(255, 255, 255, .06);
  background: rgba(13, 13, 29, .9);
  box-shadow: inset 0 0 0 1px rgba(123, 87, 255, .04);
}

.answer-comment-form label,
.answer-comment-form button,
.answer-photo-button {
  background: rgba(255, 255, 255, .06);
  color: #9b63ff;
}

.answer-comment-form .answer-comment-image-button {
  cursor: pointer;
}

.answer-comment-form .answer-comment-image-button .lucide-inline,
.answer-comment-form button .lucide-inline {
  width: 20px;
  height: 20px;
}

.answer-comment-preview-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  margin-top: 2px;
}

.answer-comment-preview-grid[hidden] {
  display: none !important;
}

.answer-comment-preview-item {
  position: relative;
  min-width: 0;
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .06);
}

.answer-comment-preview-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.answer-comment-preview-remove {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 18px !important;
  height: 18px !important;
  min-height: 0 !important;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 50% !important;
  background: rgba(5, 4, 12, .72) !important;
  color: #fff !important;
  font: 900 12px/1 var(--font-ui, 'Pretendard', sans-serif) !important;
}

.answer-comment-form textarea,
.answer-composer textarea {
  background: rgba(255, 255, 255, .045);
  color: #fff;
  box-shadow: none;
}

.answer-comment-form textarea::placeholder,
.answer-composer textarea::placeholder {
  color: rgba(246, 243, 255, .36);
}

.answer-comment-form button,
.answer-submit {
  background: transparent;
  color: #9b63ff;
  box-shadow: none;
}

.lucide-inline {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
}

/* Unified dark toast ??credit/status popups */
.app .toast {
  z-index: var(--z-toast, 60);
  left: 18px;
  right: 18px;
  top: calc(max(18px, env(safe-area-inset-top)) + 8px);
  gap: 12px;
  padding: 14px 15px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  background: rgba(30, 27, 46, .94);
  color: #fff;
  box-shadow: 0 18px 46px rgba(0, 0, 0, .44), 0 0 24px rgba(123, 87, 255, .18);
  backdrop-filter: blur(18px);
}

.app .toast > span {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: linear-gradient(135deg, #3ecf8e, #7b57ff);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16), 0 8px 20px rgba(62, 207, 142, .22);
  font: 900 16px var(--font-ui, 'Pretendard', sans-serif);
}

.app .toast[data-tone='credit'] {
  border-color: rgba(123, 87, 255, .32);
  background: linear-gradient(135deg, rgba(30, 27, 46, .97), rgba(47, 43, 66, .96));
  box-shadow: 0 18px 48px rgba(0, 0, 0, .48), 0 0 30px rgba(123, 87, 255, .25);
}

.app .toast[data-tone='credit'] > span {
  background: linear-gradient(135deg, #ffd75f, #a855f7 62%, #7b57ff);
  color: #120f1f;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .45);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .22), 0 8px 24px rgba(123, 87, 255, .32);
}

.app .toast b {
  color: #fff;
  font: 900 13px/1.25 var(--font-ui, 'Pretendard', sans-serif);
  letter-spacing: -0.02em;
}

.app .toast small {
  margin-top: 4px;
  color: rgba(255, 255, 255, .64);
  font: 700 11px/1.35 var(--font-ui, 'Pretendard', sans-serif);
}

/* Layer popup replacing transient toasts */
.app-alert-layer {
  position: absolute;
  inset: 0;
  z-index: var(--z-modal, 70);
  display: grid;
  place-items: center;
  padding: 22px;
}

.app-alert-layer[hidden] {
  display: none !important;
}

.app-alert-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(5, 4, 12, .62);
  backdrop-filter: blur(8px);
}

.app-alert-card {
  position: relative;
  z-index: 1;
  width: min(100%, 350px);
  display: grid;
  justify-items: center;
  gap: 13px;
  padding: 24px 20px 18px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(30, 27, 46, .98), rgba(47, 43, 66, .98));
  color: #fff;
  box-shadow: 0 26px 72px rgba(0, 0, 0, .56), 0 0 34px rgba(123, 87, 255, .2);
  text-align: center;
  animation: appAlertIn .22s ease;
}

.app-alert-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 19px;
  background: linear-gradient(135deg, #3ecf8e, #7b57ff);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18), 0 12px 30px rgba(123, 87, 255, .28);
  font: 950 23px var(--font-ui, 'Pretendard', sans-serif);
}

.app-alert-layer[data-tone='credit'] .app-alert-icon {
  background: transparent;
  color: inherit;
  text-shadow: none;
  box-shadow: none;
}

.app-alert-icon .app-alert-credit-image {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(123, 87, 255, .34));
}

.app-alert-layer[data-tone='danger'] .app-alert-icon {
  background: linear-gradient(135deg, #ff5b6a, #a855f7);
}

.app-alert-copy b {
  display: block;
  color: #fff;
  font: 950 20px/1.25 var(--font-ui, 'Pretendard', sans-serif);
  letter-spacing: -0.04em;
}

.app-alert-copy small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, .62);
  font: 750 13px/1.45 var(--font-ui, 'Pretendard', sans-serif);
}

.app-alert-copy small + small {
  margin-top: 6px;
}

.app-alert-action,
.app-alert-close {
  width: 100%;
  height: 48px;
  margin-top: 4px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(100deg, #6836ff, #bd3eee);
  color: #fff;
  box-shadow: 0 16px 32px rgba(124, 60, 255, .28);
  font: 950 15px var(--font-ui, 'Pretendard', sans-serif);
}

.app-alert-action[hidden],
.app-alert-close[hidden] {
  display: none;
}

@keyframes appAlertIn {
  from { opacity: 0; transform: translateY(14px) scale(.97); }
}

/* Credit detail is a centered layer popup, not a bottom sheet */
.backdrop.credit-modal-backdrop {
  z-index: var(--z-overlay, 50);
  background: rgba(5, 4, 12, .68);
  backdrop-filter: blur(10px);
}

#creditSheet.sheet {
  z-index: var(--z-modal, 70);
  left: 50%;
  right: auto;
  top: 50%;
  bottom: auto;
  width: min(392px, calc(100% - 28px));
  height: min(78dvh, 640px);
  max-height: min(78dvh, 640px);
  padding: 22px 18px 20px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(30, 27, 46, .98), rgba(47, 43, 66, .98));
  color: #fff;
  box-shadow: 0 28px 76px rgba(0, 0, 0, .58), 0 0 34px rgba(123, 87, 255, .22);
  transform: translate(-50%, -50%);
  animation: creditModalIn .22s ease;
  display: flex;
  flex-direction: column;
}

#creditSheet .sheet-handle {
  position: absolute;
  left: 50%;
  top: 10px;
  width: 52px;
  height: 5px;
  margin: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .2);
  transform: translateX(-50%);
}

#creditSheet .sheet-head {
  align-items: flex-start;
  gap: 12px;
  margin-top: 14px;
}

#creditSheet .sheet-head .close-button {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: rgba(18, 15, 31, .38);
  color: #fff;
  font-size: 24px;
}

#creditSheet .sheet-lede {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .62);
  font: 800 14px/1.45 var(--font-ui, 'Pretendard', sans-serif);
}

#creditSheet .credit-sheet-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

#creditSheet .credit-sheet-title strong {
  color: #fff;
  font: 950 34px/1 var(--font-ui, 'Pretendard', sans-serif);
  letter-spacing: -.04em;
  text-shadow: 0 0 24px rgba(216, 255, 66, .22);
}

#creditSheet .credit-title-piece {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 18px;
}

#creditSheet .credit-title-piece[hidden] {
  display: none;
}

#creditSheet .credit-title-piece img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(255, 184, 40, .22));
}

#creditSheet .credit-title-piece b {
  color: #fff;
  font: 950 31px/1 var(--font-display, var(--font-ui, sans-serif));
  text-shadow: 0 0 18px rgba(255, 255, 255, .2);
}

#creditSheet .credit-split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 10px;
}

#creditSheet .credit-bonus-daily-note {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, .54);
  font: 700 12px/1.45 var(--font-ui, 'Pretendard', sans-serif);
  text-align: center;
}

#creditSheet .credit-pool {
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  background: #f7f8f2;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .65);
}

#creditSheet .credit-pool small,
#creditSheet .credit-pool em {
  color: #858878;
}

#creditSheet .credit-pool b {
  color: #7b57ff;
  text-shadow: none;
}

#creditSheet .credit-pool-paid b,
#creditSheet .credit-row-delta.minus {
  color: #ff5b35;
}

#creditSheet .credit-pool-piece {
  display: none !important;
}

#creditSheet .credit-piece-visual {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 54px;
  margin-top: 0;
}

#creditSheet .credit-piece-visual img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(255, 184, 40, .2));
}

#creditSheet .credit-piece-visual b {
  color: #fff;
  font: 950 28px/1 var(--font-display, var(--font-ui, sans-serif));
  text-shadow: 0 2px 10px rgba(58, 38, 20, .28);
}

#creditSheet .credit-row-delta.bucket-bonus {
  color: #8b5cff;
}

#creditSheet .credit-row-delta.bucket-paid {
  color: #ff5b35;
}

#creditSheet .credit-row-delta.bucket-piece {
  color: #8b5cff;
}

#creditSheet .post-compose-label {
  color: rgba(255, 255, 255, .38);
  font: 900 12px var(--font-ui, 'Pretendard', sans-serif);
  letter-spacing: .08em;
  text-transform: uppercase;
}

#creditSheet .credit-history {
  flex: 1;
  max-height: min(38dvh, 330px);
  min-height: 170px;
  margin-top: 18px;
  padding-right: 2px;
  overflow-y: auto;
  scrollbar-width: none;
}

#creditSheet .credit-history::-webkit-scrollbar {
  display: none;
}

#creditSheet .credit-history.is-empty {
  display: flex;
}

#creditSheet .credit-row-item {
  border-color: rgba(255, 255, 255, .06);
  padding: 13px 4px;
}

#creditSheet .credit-row-empty {
  width: 100%;
  min-height: 150px;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(255, 255, 255, .12);
  border-radius: 18px;
  padding: 20px;
  background: rgba(255, 255, 255, .035);
}

#creditSheet .credit-row-empty .credit-row-main {
  align-items: center;
  text-align: center;
}

#creditSheet .credit-row-main b {
  color: #fff;
  font: 900 15px/1.2 var(--font-ui, 'Pretendard', sans-serif);
}

#creditSheet .credit-row-main small {
  color: rgba(255, 255, 255, .48);
  font-weight: 800;
}

#creditSheet .credit-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 36px;
  margin-top: 12px;
}

#creditSheet .credit-pagination[hidden] {
  display: none;
}

#creditSheet .credit-page-button {
  min-width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, .5);
  font: 950 15px/1 var(--font-display, var(--font-ui, sans-serif));
}

#creditSheet .credit-page-button.is-active {
  color: #fff;
  background: rgba(139, 92, 246, .24);
  box-shadow: 0 0 18px rgba(139, 92, 246, .24);
}

@keyframes creditModalIn {
  from { opacity: 0; transform: translate(-50%, -46%) scale(.97); }
}

.translated-copy {
  margin-top: 8px !important;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  color: rgba(246, 243, 255, .76) !important;
  font-size: 13px;
  line-height: 1.55;
}

.translation-original-copy {
  display: block;
  margin-top: 8px !important;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(123, 87, 255, .12);
  border: 1px solid rgba(167, 139, 250, .22);
  color: rgba(246, 243, 255, .76) !important;
  font-size: 13px;
  line-height: 1.55;
  white-space: pre-wrap;
}

.translation-original-copy[hidden] {
  display: none !important;
}

.translate-action {
  width: fit-content;
  margin-top: 8px;
  border: 1px solid rgba(167, 139, 250, .32);
  border-radius: 999px;
  background: rgba(123, 87, 255, .14);
  color: #cbb9ff;
  padding: 7px 10px;
  font: 800 11px var(--font-ui, 'Pretendard', sans-serif);
}

.translate-action:disabled {
  opacity: .6;
}

.translate-saved-note {
  margin-top: 8px !important;
  color: rgba(246, 243, 255, .52) !important;
  font: 700 11px/1.45 var(--font-ui, 'Pretendard', sans-serif);
}

.home-icon-btn,
.newspaper-icon-button {
  position: relative;
}

.home-icon-btn.has-unread::after,
.newspaper-icon-button.has-unread::after {
  content: '';
  position: absolute;
  top: 4px;
  right: 3px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #ff5b6a;
  box-shadow: 0 0 0 3px rgba(255, 91, 106, .18), 0 0 14px rgba(255, 91, 106, .65);
}

.notification-layer {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(4, 2, 12, .66);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}

.notification-layer.visible {
  opacity: 1;
  pointer-events: auto;
}

.notification-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
}

.notification-panel {
  position: relative;
  width: min(100%, 390px);
  max-height: min(74dvh, 620px);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 28px;
  padding: 18px 16px 18px;
  background:
    radial-gradient(circle at 22% 0%, rgba(124, 86, 255, .22), transparent 34%),
    linear-gradient(180deg, #2b2540 0%, #171326 100%);
  box-shadow: 0 24px 90px rgba(0, 0, 0, .58);
  transform: translateY(10px) scale(.96);
  transition: transform .22s ease;
}

.notification-layer.visible .notification-panel {
  transform: translateY(0) scale(1);
}

.notification-handle {
  display: none;
  width: 46px;
  height: 4px;
  margin: 0 auto 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .22);
}

.notification-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 0 2px 14px;
}

.notification-head small {
  display: block;
  margin-bottom: 5px;
  color: #b998ff;
  font: 950 11px/1 var(--font-ui, 'Pretendard', sans-serif);
  letter-spacing: .08em;
}

.notification-head h2 {
  margin: 0;
  color: #fff;
  font: 950 27px/1.1 var(--font-display, var(--font-ui, sans-serif));
  letter-spacing: -.02em;
}

.notification-close {
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 18px;
  background: rgba(11, 8, 24, .42);
  color: #fff;
  font: 950 30px/1 var(--font-ui, 'Pretendard', sans-serif);
}

.notification-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 230px;
  overflow-y: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.notification-list::-webkit-scrollbar {
  display: none;
}

.notification-row {
  width: 100%;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 19px;
  padding: 13px;
  background: rgba(255, 255, 255, .045);
  color: #fff;
  text-align: left;
}

.notification-row.is-unread {
  border-color: rgba(171, 91, 255, .35);
  background: rgba(123, 87, 255, .13);
  box-shadow: inset 3px 0 0 rgba(190, 65, 255, .92);
}

.notification-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(139, 92, 246, .28), rgba(255, 255, 255, .05));
  color: #c9b7ff;
  font: 950 18px/1 var(--font-ui, 'Pretendard', sans-serif);
}

.notification-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.notification-icon-footprint_like {
  color: #ff5b93;
}

.notification-icon-coin_piece_earned,
.notification-icon-paid_credit_earned {
  color: #ffb72d;
}

.notification-row-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.notification-row-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.notification-row-top b {
  overflow: hidden;
  color: #fff;
  font: 950 14px/1.25 var(--font-ui, 'Pretendard', sans-serif);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.notification-row-top em {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, .42);
  font: 850 11px/1 var(--font-ui, 'Pretendard', sans-serif);
  font-style: normal;
}

.notification-row-body small {
  overflow: hidden;
  color: rgba(255, 255, 255, .64);
  font: 780 12px/1.45 var(--font-ui, 'Pretendard', sans-serif);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.notification-empty {
  min-height: 230px;
  display: grid;
  place-content: center;
  border: 1px dashed rgba(255, 255, 255, .12);
  border-radius: 22px;
  background: rgba(255, 255, 255, .035);
  text-align: center;
  padding: 28px;
}

.notification-empty b {
  color: #fff;
  font: 950 18px/1.2 var(--font-ui, 'Pretendard', sans-serif);
}

.notification-empty small {
  display: none;
  color: rgba(255, 255, 255, .52);
  font: 800 13px/1.5 var(--font-ui, 'Pretendard', sans-serif);
}

/* Station list final layout guard */
.home-footprints-panel.newspaper-panel {
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  padding-bottom: calc(79px + env(safe-area-inset-bottom, 0px));
}

.home-footprints-panel.newspaper-panel .newspaper-country-bar {
  flex: 0 0 auto;
}

.home-footprints-panel.newspaper-panel .request-feed.newspaper-feed {
  flex: 1 1 auto;
  min-height: 0;
  max-height: none;
  padding-bottom: 0;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
}

.home-footprints-panel.newspaper-panel .request-feed.newspaper-feed::-webkit-scrollbar {
  display: none;
}

.home-footprints-panel.newspaper-panel .request-feed.newspaper-feed.is-expanded {
  max-height: none;
  overflow-y: auto;
  scrollbar-width: none;
}

.home-footprints-panel.newspaper-panel .request-feed.newspaper-feed.is-expanded::-webkit-scrollbar {
  display: none;
}

.home-footprints-panel.newspaper-panel .feed-scroll-card.newspaper-card {
  grid-template-rows: minmax(104px, auto) minmax(28px, auto);
  min-height: 152px;
  overflow: hidden;
}

.home-footprints-panel.newspaper-panel .newspaper-card-thumb {
  grid-row: 1;
}

.home-footprints-panel.newspaper-panel .feed-scroll-card.newspaper-card .request-body {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  padding-bottom: 10px;
}

.home-footprints-panel.newspaper-panel .newspaper-tags {
  grid-column: 1 / -1;
  grid-row: 2;
  align-self: end;
  justify-content: center;
  min-width: 0;
  min-height: 28px;
  padding: 0 16px 14px;
}
