:root {
  --bg: #f3f0e9;
  --paper: #fffdfa;
  --ink: #191919;
  --muted: #706d67;
  --line: #dedad2;
  --accent: #657986;
  --up: #1d6a4c;
  --upbg: #e7f3ed;
  --down: #9d493f;
  --downbg: #f8e9e6;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    sans-serif;
}
button {
  font: inherit;
}
.wrap {
  width: min(760px, calc(100% - 22px));
  margin: auto;
}
.top {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(243, 240, 233, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.localMode {
  --accent: #c9562f;
}
.srOnly {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.experienceWrap {
  border-top: 1px solid rgba(222, 218, 210, 0.7);
}
.experienceInner {
  min-height: 35px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 16px;
}
.experienceSwitch {
  display: flex;
  align-items: stretch;
  gap: 22px;
}
.experienceLink {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-decoration: none;
  white-space: nowrap;
}
.experienceLink.active {
  border-color: #657986;
  color: #465e6d;
}
.experienceLink.local.active {
  border-color: #c9562f;
  color: #c9562f;
}
.localMark {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c9562f;
}
.cityPicker {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #c9562f;
}
.cityPicker[hidden] {
  display: none;
}
.cityPicker svg {
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.cityPicker select {
  max-width: 210px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 10px;
  font-weight: 850;
  cursor: pointer;
}
.cityPicker select:focus-visible {
  outline: 2px solid rgba(201, 86, 47, 0.3);
  outline-offset: 3px;
  border-radius: 2px;
}
header {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: Georgia, serif;
  font-size: 34px;
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -2px;
  color: #465e6d;
  text-decoration: none;
  cursor: pointer;
}
.logo::after {
  content: '';
  display: inline-block;
  width: 0.23em;
  height: 0.23em;
  margin-left: 0.08em;
  border-radius: 50%;
  background: #c9562f;
  transform: translateY(0.06em);
}
.tag {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  color: var(--muted);
  font-weight: 900;
  margin-top: 4px;
}
.sitePulse {
  display: flex;
  align-items: baseline;
  margin-top: 2px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  white-space: nowrap;
}
.sitePulse span {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}
.sitePulse span + span:before {
  content: '·';
  margin: 0 4px;
  color: #c9562f;
  font-weight: 950;
}
.sitePulse strong {
  color: var(--ink);
  font-size: 8px;
  letter-spacing: 0;
}
.now {
  font-size: 11px;
  color: var(--muted);
  font-weight: 800;
}
.groupsWrap {
  border-top: 1px solid rgba(222, 218, 210, 0.75);
}
.groups {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding: 9px 0 10px;
  scrollbar-width: none;
}
.groups::-webkit-scrollbar {
  display: none;
}
.groupBtn {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.groupBtn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.feed {
  padding: 14px 0 80px;
}
.feedMeta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1px 3px 10px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}
.shuffleBtn {
  border: 0;
  background: transparent;
  color: var(--accent);
  font-weight: 900;
  padding: 0;
  cursor: pointer;
}
.rank {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 13px;
}
.rankTitle {
  color: inherit;
  text-decoration: none;
  display: block;
}
.imageLink {
  display: block;
  text-decoration: none;
}
.rankHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.categoryWrap {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}
.category {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 900;
  color: var(--accent);
  text-decoration: none;
}
.newBadge {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(101, 121, 134, 0.34);
  background: #edf1f2;
  color: var(--accent);
  border-radius: 999px;
  padding: 3px 6px;
  font-size: 8px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  white-space: nowrap;
}
.total {
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
}
h2,
.rankingMain > h1 {
  font-family: Georgia, serif;
  font-size: 32px;
  line-height: 0.98;
  letter-spacing: -1.3px;
  margin: 0 0 14px;
}
.imageStrip {
  height: 126px;
  border-radius: 11px;
  overflow: hidden;
  margin: 2px 0 10px;
  background: var(--accent);
}
.imageStrip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.options {
  border-top: 1px solid var(--line);
}
.homeOption {
  display: grid;
  grid-template-columns: 23px 1fr auto;
  gap: 7px;
  align-items: center;
  min-height: 38px;
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
}
.homeOption:last-child {
  border-bottom: 0;
}
.homePos {
  font-family: Georgia, serif;
  color: var(--accent);
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
}
.topBadge {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: white;
  font-family: Georgia, serif;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  border: 2px solid rgba(255, 255, 255, 0.82);
}
.topBadge.gold {
  background: #c79a2b;
  box-shadow: 0 0 0 1px #a87908;
}
.topBadge.silver {
  background: #9ca3aa;
  box-shadow: 0 0 0 1px #747c84;
}
.topBadge.bronze {
  background: #a86639;
  box-shadow: 0 0 0 1px #7b421f;
}
.homeInfo {
  min-width: 0;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.homeName {
  min-width: 0;
  color: var(--ink);
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 900;
  line-height: 1.18;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.homeName:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.homeScore {
  font-size: 9.5px;
  color: var(--muted);
  white-space: nowrap;
}
.actions {
  display: flex;
  gap: 4px;
}
.homeReact {
  width: 29px;
  height: 29px;
  border: 0;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}
.homeReact.up,
.react.up {
  background: var(--upbg);
  color: var(--up);
}
.homeReact.down,
.react.down {
  background: var(--downbg);
  color: var(--down);
}
.homeReact.selected,
.react.selected {
  outline: 2px solid currentColor;
  outline-offset: 1px;
}
.option {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.option:last-child {
  border-bottom: 0;
}
.pos {
  font-family: Georgia, serif;
  color: var(--accent);
  font-size: 23px;
  font-weight: 900;
}
.name {
  font-size: 14px;
  font-weight: 900;
  line-height: 1.15;
}
.score {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  margin-top: 3px;
}
.react {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 23px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.08s ease;
}
.react:active,
.homeReact:active {
  transform: scale(0.92);
}
.react:disabled,
.homeReact:disabled {
  opacity: 0.55;
}
.previewVotePrompt {
  margin: 10px 0 2px;
  padding: 10px 12px;
  border: 1px solid rgba(101, 121, 134, 0.38);
  border-radius: 10px;
  background: #edf1f2;
  color: var(--ink);
  font-size: 11px;
  font-weight: 850;
  line-height: 1.35;
}
.option.previewFocus {
  margin: 0 -8px;
  padding-left: 8px;
  padding-right: 8px;
  border-radius: 10px;
  background: rgba(101, 121, 134, 0.08);
}
.react.previewIntent {
  outline: 3px solid rgba(101, 121, 134, 0.38);
  outline-offset: 2px;
}
.rankFoot {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 8px;
  font-size: 10px;
  color: var(--muted);
}
.fullLink {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  border: 0;
  background: transparent;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
}
.internalHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 12px;
}
.backLink {
  border: 0;
  background: transparent;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
}
.internalMeta {
  font-size: 11px;
  color: var(--muted);
}
.statsRow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 0 0 13px;
}
.statBox {
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: 11px;
  padding: 10px;
}
.statLabel {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 900;
}
.statValue {
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 900;
  margin-top: 2px;
}
.rankingResultHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid var(--ink);
  padding: 10px 0 8px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.rankingResultHead strong {
  color: var(--ink);
  font-size: 11px;
}
.allItemsExplorer {
  border-top: 1px solid var(--ink);
  margin-top: 16px;
  padding-top: 12px;
}
.allItemsToggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg);
  color: var(--ink);
  padding: 13px 14px;
  text-align: left;
  cursor: pointer;
}
.allItemsToggle[aria-expanded='true'] {
  background: #edf1f2;
  border-color: rgba(101, 121, 134, 0.5);
}
.allItemsToggle span {
  display: block;
}
.allItemsToggle strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 18px;
  line-height: 1.05;
}
.allItemsToggle small {
  display: block;
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  margin-top: 4px;
}
.allItemsToggle > b {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-size: 20px;
  line-height: 1;
}
.contentSection {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 13px;
}
.sectionLabel {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 8px;
}
.aboutText {
  font-family: Georgia, serif;
  font-size: 17px;
  line-height: 1.4;
  margin: 0;
  color: var(--ink);
}
.curiosGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.curioCard {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
}
.curioNum {
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 7px;
}
.curioText {
  font-size: 12px;
  line-height: 1.45;
  font-weight: 700;
  color: var(--ink);
}
.relatedGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
}
.relatedCard {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 7px;
  background: var(--paper);
}
.relatedThumb {
  width: 58px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--accent);
}
.relatedThumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.relatedCat {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 900;
}
.relatedTitle {
  font-family: Georgia, serif;
  font-size: 15px;
  line-height: 1.05;
  font-weight: 900;
  margin-top: 3px;
}
@media (max-width: 560px) {
  .contentSection {
    padding: 13px;
    border-radius: 14px;
  }
  .aboutText {
    font-size: 16px;
  }
  .curiosGrid {
    grid-template-columns: 1fr;
  }
  .curioCard {
    padding: 11px;
  }
  .relatedCard {
    grid-template-columns: 52px 1fr;
  }
  .relatedThumb {
    width: 52px;
    height: 44px;
  }
}
.commentsSection {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 13px;
}
.commentsTitle {
  font-family: Georgia, serif;
  font-size: 27px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.6px;
}
.commentsIntro {
  font-size: 12px;
  line-height: 1.45;
  color: var(--muted);
  margin: 7px 0 14px;
  max-width: 620px;
}
.commentsLoading,
.commentsEmpty {
  font-size: 12px;
  color: var(--muted);
  padding: 13px 0;
}
.commentForm {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 13px;
  margin-bottom: 16px;
}
.commentFormTitle {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 10px;
}
.commentField {
  display: block;
  margin-bottom: 10px;
}
.commentField > span {
  display: block;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 900;
  color: var(--muted);
  margin-bottom: 5px;
}
.commentField select,
.commentField textarea {
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
  border-radius: 10px;
  padding: 10px 11px;
  font-size: 12px;
  outline: none;
}
.commentField select:focus,
.commentField textarea:focus {
  border-color: var(--accent);
}
.commentField textarea {
  resize: vertical;
  min-height: 82px;
  line-height: 1.45;
}
.commentFormFoot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.commentCounter {
  font-size: 10px;
  color: var(--muted);
  font-weight: 800;
}
.commentSubmit {
  border: 0;
  background: var(--accent);
  color: white;
  border-radius: 999px;
  padding: 9px 15px;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
}
.commentSubmit:disabled {
  opacity: 0.55;
}
.commentStatus {
  min-height: 14px;
  color: var(--down);
  font-size: 10px;
  font-weight: 800;
  margin-top: 7px;
}
.commentsLogin {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 16px;
  font-size: 11px;
  color: var(--muted);
  font-weight: 700;
}
.commentsLogin a {
  flex: 0 0 auto;
  text-decoration: none;
  background: var(--accent);
  color: white;
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 10px;
  font-weight: 900;
}
.commentsListHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 900;
  margin-bottom: 7px;
}
.commentsList {
  display: grid;
  gap: 7px;
}
.commentCard {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  background: white;
}
.commentMeta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.commentName {
  font-size: 11px;
  font-weight: 900;
}
.commentDate {
  font-size: 9px;
  color: var(--muted);
  white-space: nowrap;
}
.commentOption {
  display: inline-flex;
  margin-top: 7px;
  border-radius: 999px;
  background: #edf1f2;
  color: var(--accent);
  padding: 4px 7px;
  font-size: 9px;
  font-weight: 900;
}
.commentBody {
  font-family: Georgia, serif;
  font-size: 15px;
  line-height: 1.35;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  margin: 9px 0 0;
}
.commentsRetry {
  border: 0;
  background: transparent;
  color: var(--accent);
  font-size: inherit;
  font-weight: 900;
  padding: 0;
  cursor: pointer;
}
@media (max-width: 560px) {
  .commentsSection {
    padding: 13px;
    border-radius: 14px;
  }
  .commentsTitle {
    font-size: 25px;
  }
  .commentsLogin {
    align-items: flex-start;
    flex-direction: column;
  }
  .commentsLogin a {
    width: 100%;
    text-align: center;
  }
  .commentForm {
    padding: 11px;
  }
  .commentCard {
    padding: 11px;
  }
}
.viewAllComments {
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--accent);
  border-radius: 999px;
  padding: 10px 13px;
  margin-top: 10px;
  font-size: 10px;
  font-weight: 900;
  cursor: pointer;
}
.viewAllComments:hover {
  background: var(--bg);
}
.allCommentsModal {
  display: flex;
  flex-direction: column;
  max-height: min(76vh, 720px);
}
.allCommentsHead {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.allCommentsHead .modalTitle {
  margin-bottom: 4px;
}
.allCommentsClose {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  font-size: 23px;
  line-height: 1;
  cursor: pointer;
}
.allCommentsList {
  display: grid;
  gap: 7px;
  overflow: auto;
  padding: 12px 3px 4px 0;
}
.allCommentsMore {
  flex: 0 0 auto;
}
.allCommentsMore .commentsLoading {
  display: block;
  text-align: center;
  padding: 10px;
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translate(-50%, 10px);
  background: #191919;
  color: white;
  padding: 10px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  opacity: 0;
  transition: 0.18s;
  z-index: 30;
  white-space: nowrap;
}
.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
.end {
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  padding: 20px 0 10px;
}
.loading {
  padding: 70px 0;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
}
.retry {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 999px;
  padding: 9px 14px;
  margin-top: 12px;
  cursor: pointer;
}
.empty {
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  padding: 60px 0;
}
@media (max-width: 560px) {
  .wrap {
    width: calc(100% - 16px);
  }
  header {
    height: 58px;
  }
  .logo {
    font-size: 31px;
  }
  .now {
    font-size: 10px;
  }
  .groups {
    padding: 8px 0 9px;
  }
  .groupBtn {
    padding: 7px 10px;
  }
  .rank {
    padding: 12px;
    border-radius: 14px;
  }
  h2 {
    font-size: 26px;
    margin-bottom: 10px;
  }
  .imageStrip {
    height: 102px;
    margin-bottom: 7px;
  }
  .homeOption {
    grid-template-columns: 20px 1fr auto;
    gap: 5px;
    min-height: 35px;
    padding: 4px 0;
  }
  .homePos {
    font-size: 15px;
  }
  .topBadge {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }
  .homeName {
    font-size: 11.5px;
  }
  .homeScore {
    font-size: 8.8px;
  }
  .homeReact {
    width: 27px;
    height: 27px;
    font-size: 17px;
  }
  .option {
    grid-template-columns: 25px 1fr auto;
    gap: 8px;
    padding: 11px 0;
  }
  .react {
    width: 34px;
    height: 34px;
    font-size: 22px;
  }
}
.account {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
}
.notificationShell {
  position: relative;
  display: inline-flex;
}
.notificationButton {
  position: relative;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
  color: var(--accent);
  cursor: pointer;
}
.notificationButton:hover,
.notificationButton:focus-visible,
.notificationButton[aria-expanded='true'] {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
  outline: none;
}
.notificationButton svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.notificationBadge {
  position: absolute;
  top: -2px;
  right: -3px;
  min-width: 16px;
  height: 16px;
  display: inline-grid;
  place-items: center;
  padding: 0 4px;
  border: 2px solid var(--bg);
  border-radius: 999px;
  background: #c9562f;
  color: #fff;
  font-size: 8px;
  line-height: 1;
  font-weight: 950;
}
.notificationBadge[hidden],
.notificationPanel[hidden] {
  display: none;
}
.notificationPanel {
  position: absolute;
  top: calc(100% + 12px);
  right: -52px;
  z-index: 100;
  width: min(370px, calc(100vw - 24px));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fffdfa;
  color: var(--ink);
  text-align: left;
  box-shadow: 0 18px 50px rgba(30, 42, 48, 0.2);
}
.notificationPanelHead {
  min-height: 61px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}
.notificationPanelHead > div {
  display: grid;
  gap: 2px;
}
.notificationPanelHead strong {
  color: #465e6d;
  font:
    900 18px/1 Georgia,
    serif;
}
.notificationPanelHead span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 750;
}
.notificationPanelHead button {
  border: 0;
  background: transparent;
  color: #c9562f;
  padding: 6px 0;
  font-size: 9px;
  font-weight: 900;
  cursor: pointer;
}
.notificationPanelHead button:disabled {
  opacity: 0.55;
}
.notificationList {
  max-height: min(480px, 65vh);
  overflow-y: auto;
}
.notificationItem {
  position: relative;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(222, 218, 210, 0.74);
  color: inherit;
  text-decoration: none;
}
.notificationItem:last-child {
  border-bottom: 0;
}
.notificationItem:hover,
.notificationItem:focus-visible {
  background: #f7f6f2;
  outline: none;
}
.notificationItem.unread {
  background: #f1f5f6;
}
.notificationItem.unread::after {
  content: '';
  position: absolute;
  top: 15px;
  right: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c9562f;
}
.notificationKind {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e8eef0;
  color: #465e6d;
  font-size: 11px;
  font-weight: 950;
}
.notificationKind.double_vote {
  background: #edf3ed;
  color: #1d6a4c;
}
.notificationKind.level {
  background: #f7eee7;
  color: #b15331;
}
.notificationKind.return {
  font-family: Georgia, serif;
}
.notificationCopy {
  min-width: 0;
  display: grid;
  gap: 3px;
  padding-right: 8px;
}
.notificationCopy strong {
  font-size: 11px;
  line-height: 1.25;
}
.notificationCopy > span {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
}
.notificationCopy time {
  color: #8d8982;
  font-size: 8px;
  font-weight: 800;
}
.notificationEmpty {
  min-height: 126px;
  display: grid;
  place-content: center;
  gap: 5px;
  padding: 20px;
  color: var(--muted);
  text-align: center;
}
.notificationEmpty strong {
  color: var(--ink);
  font-size: 12px;
}
.notificationEmpty span {
  max-width: 250px;
  font-size: 10px;
  line-height: 1.4;
}
@media (max-width: 560px) {
  .notificationPanel {
    position: fixed;
    top: 62px;
    right: 14px;
    left: 8px;
    width: auto;
    max-width: none;
    max-height: calc(100vh - 74px);
    max-height: calc(100dvh - 74px);
  }
  .notificationList {
    max-height: calc(100vh - 136px);
    max-height: calc(100dvh - 136px);
  }
}
.accountLink {
  font-size: 11px;
  color: var(--accent);
  font-weight: 900;
  text-decoration: none;
}
.accountEnter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 31px;
  padding: 7px 12px;
  border: 1px solid currentColor;
  border-radius: 999px;
}
.accountEnter:hover,
.accountEnter:focus-visible {
  background: var(--accent);
  color: white;
}
.voteMeter {
  font-size: 10px;
  color: var(--muted);
  font-weight: 800;
  border-left: 1px solid var(--line);
  padding-left: 8px;
}
.authShell {
  max-width: 520px;
  margin: 18px auto 60px;
}
.authCard {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
}
.authEyebrow {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--accent);
  font-weight: 900;
}
.authTitle {
  font-family: Georgia, serif;
  font-size: 34px;
  line-height: 1;
  margin: 7px 0 9px;
}
.authIntro {
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
  margin: 0 0 18px;
}
.field {
  display: block;
  margin: 0 0 12px;
}
.field span {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 900;
  color: var(--muted);
  margin: 0 0 5px;
}
.field input {
  width: 100%;
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
  border-radius: 11px;
  padding: 11px 12px;
  font-size: 14px;
  outline: none;
}
.field input:focus {
  border-color: var(--accent);
}
.primaryBtn {
  width: 100%;
  border: 0;
  border-radius: 11px;
  background: var(--accent);
  color: white;
  padding: 12px 14px;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}
.primaryBtn:disabled {
  opacity: 0.6;
}
.authNote {
  font-size: 10px;
  line-height: 1.45;
  color: var(--muted);
  margin-top: 11px;
}
.formError {
  font-size: 11px;
  color: var(--down);
  font-weight: 800;
  margin: 0 0 10px;
  min-height: 14px;
}
.profileHero {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  margin-bottom: 12px;
}
.profileName {
  font-family: Georgia, serif;
  font-size: 34px;
  line-height: 1;
  margin: 4px 0;
}
.profileEmail {
  font-size: 11px;
  color: var(--muted);
}
.profileSection {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 15px;
  margin-bottom: 12px;
}
.profileHint {
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}
.recentVote {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  gap: 9px;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.recentVote:last-child {
  border-bottom: 0;
}
.voteArrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 900;
}
.voteArrow.up {
  background: var(--upbg);
  color: var(--up);
}
.voteArrow.down {
  background: var(--downbg);
  color: var(--down);
}
.recentOption {
  font-size: 12px;
  font-weight: 900;
}
.recentQuestion {
  font-size: 10px;
  color: var(--muted);
  margin-top: 2px;
}
.recentTime {
  font-size: 9px;
  color: var(--muted);
}
.logoutBtn {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 10px;
  font-weight: 900;
  cursor: pointer;
}
.modalLayer {
  position: fixed;
  inset: 0;
  background: rgba(25, 25, 25, 0.38);
  z-index: 50;
  display: none;
  align-items: flex-end;
  justify-content: center;
  padding: 12px;
}
.modalLayer.show {
  display: flex;
}
.modalCard {
  width: min(520px, 100%);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
}
.modalKicker {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 900;
}
.modalTitle {
  font-family: Georgia, serif;
  font-size: 27px;
  line-height: 1.05;
  margin: 6px 0 10px;
}
.modalText {
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
}
.howRows {
  margin: 12px 0;
}
.howRow {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 9px;
  align-items: center;
  padding: 7px 0;
}
.howIcon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 900;
}
.howIcon.up {
  background: var(--upbg);
  color: var(--up);
}
.howIcon.down {
  background: var(--downbg);
  color: var(--down);
}
.howCopy {
  font-size: 12px;
  line-height: 1.35;
  font-weight: 700;
}
.modalActions {
  display: flex;
  gap: 7px;
  margin-top: 14px;
}
.modalActions a,
.modalActions button {
  flex: 1;
  text-align: center;
  text-decoration: none;
  border-radius: 11px;
  padding: 11px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
}
.modalActions .main {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}
@media (max-width: 560px) {
  .account {
    gap: 6px;
  }
  .voteMeter {
    font-size: 9px;
  }
  .authCard {
    padding: 16px;
  }
  .authTitle {
    font-size: 30px;
  }
  .profileHero {
    padding: 15px;
  }
  .profileName {
    font-size: 30px;
  }
}
.authButtonLink {
  display: block;
  text-align: center;
  text-decoration: none;
}
.authCard form[hidden] {
  display: none;
}

/* Home editorial em formato de portal */
.siteSearch {
  display: none;
}
.homePage .wrap {
  width: min(1180px, calc(100% - 32px));
}
.homePage .top {
  background: rgba(243, 240, 233, 0.98);
  box-shadow: 0 1px 0 rgba(25, 25, 25, 0.03);
}
.homePage .top header {
  height: 74px;
  display: grid;
  grid-template-columns: 210px minmax(260px, 520px) 1fr;
  gap: 30px;
  align-items: center;
}
.rankingPage .top header {
  height: 72px;
  display: grid;
  grid-template-columns: 145px minmax(220px, 1fr) auto;
  gap: 18px;
  align-items: center;
}
.homePage .brandBlock {
  align-self: center;
}
.homePage .tag {
  font-size: 10px;
  letter-spacing: 0.2em;
}
.homePage .siteSearch,
.rankingPage .siteSearch {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--accent);
  padding: 9px 1px;
  color: var(--accent);
}
.siteSearchSubmit {
  display: grid;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  padding: 0;
  place-items: center;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}
.homePage .siteSearch svg,
.rankingPage .siteSearch svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.homePage .siteSearch input,
.rankingPage .siteSearch input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font:
    700 12px/1.2 Inter,
    system-ui,
    sans-serif;
}
.homePage .siteSearch input::placeholder,
.rankingPage .siteSearch input::placeholder {
  color: #85827c;
}
.homePage .accountLink {
  font-size: 12px;
}
.homePage .accountEnter {
  min-height: 34px;
  padding: 8px 14px;
  font-size: 13px;
}
.homePage .voteMeter {
  font-size: 11px;
}
.homePage .groupsWrap {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.homePage .groups {
  gap: 24px;
  padding: 0;
}
.homePage .groupBtn {
  border: 0;
  border-bottom: 3px solid transparent;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  padding: 13px 1px 11px;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.homePage .groupBtn.active {
  background: transparent;
  border-color: var(--accent);
  color: var(--ink);
}
.homePage .feed {
  padding: 9px 0 90px;
}
.portalSearchNote {
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 10px 13px;
  margin-bottom: 13px;
  color: var(--muted);
  font-size: 12px;
}
.portalSearchNote strong {
  color: var(--ink);
}
.portalSearchNote button {
  margin-left: auto;
  border: 0;
  background: transparent;
  color: var(--accent);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}
.portalTrending {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  align-items: stretch;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}
.portalTrendingLabel {
  display: grid;
  min-width: 0;
  place-items: center;
  padding: 8px 6px;
  overflow: hidden;
  background: var(--accent);
  color: white;
  font-size: 10px;
  font-weight: 950;
  line-height: 1.25;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}
.localMode .portalTrending {
  grid-template-columns: 124px minmax(0, 1fr);
  gap: 14px;
}
.localMode .portalTrendingLabel {
  font-size: 9px;
  letter-spacing: 0.1em;
}
.portalTrending > div {
  display: flex;
  align-items: center;
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.portalTrending > div::-webkit-scrollbar {
  display: none;
}
.portalTrending a {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
  width: 260px;
  max-width: 260px;
  color: var(--ink);
  text-decoration: none;
  font:
    850 10px/1.2 Inter,
    system-ui,
    sans-serif;
  padding: 11px 18px 11px 0;
  margin-right: 18px;
  white-space: nowrap;
  scroll-snap-align: start;
}
.portalTrending a span {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.categoryRail {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  margin: 28px 0;
  padding: 12px 14px;
}
.categoryRailLabel {
  color: var(--accent);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.categoryRailList {
  display: flex;
  gap: 7px;
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.categoryRailList::-webkit-scrollbar {
  display: none;
}
.categoryRailButton {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  padding: 8px 11px;
  font-size: 10px;
  font-weight: 900;
  cursor: pointer;
  text-decoration: none;
}
.categoryRailButton:hover,
.categoryRailButton:focus-visible {
  border-color: var(--accent);
  background: #edf1f2;
  outline: 0;
}
.portalLeadGrid {
  display: grid;
  grid-template-columns: minmax(0, 1.68fr) minmax(210px, 0.76fr) minmax(210px, 0.64fr);
  gap: 18px;
  align-items: start;
}
.portalHero {
  min-width: 0;
}
.portalHeroLink {
  position: relative;
  display: block;
  min-height: 410px;
  overflow: hidden;
  background: var(--accent);
  color: white;
  text-decoration: none;
}
.portalHeroMedia {
  position: absolute;
  inset: 0;
  display: block;
}
.portalHeroMedia img,
.portalSideMedia img,
.portalStoryMedia img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.portalImageFallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: rgba(255, 255, 255, 0.75);
  font:
    900 52px/1 Georgia,
    serif;
  letter-spacing: -3px;
}
.portalHeroCopy {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(72%, 500px);
  display: block;
  background: rgba(18, 20, 20, 0.94);
  padding: 14px 18px 15px;
}
.portalKicker {
  display: block;
  color: var(--accent);
  font-size: 10px;
  line-height: 1.2;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.portalHeroCopy .portalKicker {
  color: #c7d1d6;
}
.portalKicker .newBadge {
  margin-left: 5px;
  vertical-align: 1px;
}
.portalHeroCopy h1 {
  font:
    900 clamp(26px, 2.4vw, 38px)/0.98 Georgia,
    serif;
  letter-spacing: -1.4px;
  margin: 5px 0 2px;
  color: white;
}
.portalQuickVotes {
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 0;
  padding: 11px 13px 9px;
}
.portalQuickHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  padding: 0 0 8px;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.portalQuickHead a {
  color: var(--accent);
  text-decoration: none;
}
.portalQuickLinks {
  display: flex;
  align-items: center;
  gap: 9px;
}
.whatsappShare {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 0;
  border-radius: 999px;
  background: #19764c;
  color: white;
  text-decoration: none;
  padding: 9px 13px;
  font-size: 10px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}
.whatsappShare svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}
.whatsappShare:hover {
  background: #145f3d;
}
.portalQuickHead .whatsappShare.compact {
  width: 26px;
  height: 26px;
  padding: 0;
  background: #19764c;
  color: white;
}
.portalQuickHead .whatsappShare.compact svg {
  width: 15px;
  height: 15px;
}
.rankingShareRow {
  display: flex;
  justify-content: flex-end;
  margin: 6px 0 16px;
}
.rankingShareRow .whatsappShare {
  border: 1px solid #c8ded3;
  background: #edf5f1;
  color: #17623f;
  padding: 7px 11px;
  font-size: 9px;
}
.rankingShareRow .whatsappShare svg {
  width: 14px;
  height: 14px;
}
.rankingShareRow .whatsappShare:hover {
  background: #e1efe8;
}
.portalQuickOption {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) auto auto;
  gap: 8px;
  align-items: center;
  min-height: 38px;
  border-bottom: 1px solid var(--line);
}
.portalQuickOption:last-child {
  border-bottom: 0;
}
.portalQuickPos {
  font:
    900 17px/1 Georgia,
    serif;
  color: var(--accent);
}
.portalQuickName {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--ink);
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
}
.portalQuickName:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.portalQuickScore {
  color: var(--muted);
  font-size: 9px;
  white-space: nowrap;
}
.portalVoteActions {
  display: flex;
  gap: 4px;
}
.portalQuickVotes .homeReact {
  width: 27px;
  height: 27px;
  font-size: 17px;
}
.portalSideColumn {
  display: grid;
  gap: 18px;
}
.portalSideStory {
  min-width: 0;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}
.portalSideStory:last-child {
  padding-bottom: 0;
}
.portalSideMedia {
  display: block;
  height: 150px;
  overflow: hidden;
  background: var(--accent);
  margin-bottom: 10px;
}
.portalSideCopy > a {
  color: var(--ink);
  text-decoration: none;
}
.portalSideCopy h2 {
  font:
    900 23px/1.01 Georgia,
    serif;
  letter-spacing: -0.7px;
  margin: 5px 0 7px;
}
.portalSideCopy p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
  margin: 0 0 7px;
}
.portalStoryMeta {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
}
.portalRankPanel {
  border-top: 4px solid var(--ink);
  min-width: 0;
}
.portalRankPanel.disputed {
  border-top-color: var(--accent);
}
.portalPanelTitle {
  font:
    900 12px/1 Inter,
    system-ui,
    sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.portalRankPanel ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
.portalRankPanel li {
  display: grid;
  grid-template-columns: 31px 1fr;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  padding: 11px 0;
}
.portalListNum {
  font:
    900 21px/1 Georgia,
    serif;
  color: var(--accent);
}
.portalRankPanel li > a {
  min-width: 0;
  color: var(--ink);
  text-decoration: none;
}
.portalRankPanel strong {
  display: block;
  font:
    900 14px/1.1 Georgia,
    serif;
}
.portalRankPanel small {
  display: block;
  color: var(--muted);
  font-size: 9px;
  font-weight: 750;
  margin-top: 5px;
}
.portalSectionHead {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--ink);
  margin: 38px 0 16px;
  padding-top: 12px;
}
.portalSectionHead > div > span {
  color: var(--accent);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.portalSectionHead h2 {
  font:
    900 31px/1 Georgia,
    serif;
  letter-spacing: -1px;
  margin: 5px 0 0;
}
.portalShuffle {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 9px 13px;
  font-size: 10px;
  white-space: nowrap;
}
.portalNewsLayout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 28px;
  align-items: start;
}
.portalStoryFeed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.portalStory {
  min-width: 0;
  background: var(--paper);
  border: 1px solid var(--line);
}
.portalStory.feature {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(230px, 1fr);
}
.portalStory.row {
  display: grid;
  grid-template-columns: 112px 1fr;
}
.portalStory.compact {
  border-top: 4px solid var(--accent);
}
.portalStoryMedia {
  display: block;
  min-height: 140px;
  overflow: hidden;
  background: var(--accent);
}
.portalStory.feature .portalStoryMedia {
  min-height: 285px;
}
.portalStoryCopy {
  padding: 14px;
}
.portalStoryCopy > a {
  color: var(--ink);
  text-decoration: none;
}
.portalStoryCopy h2 {
  font:
    900 23px/1.02 Georgia,
    serif;
  letter-spacing: -0.7px;
  margin: 5px 0 8px;
}
.portalStory.feature h2 {
  font-size: 34px;
  letter-spacing: -1.2px;
}
.portalStoryCopy p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
  margin: 0 0 13px;
}
.portalStoryFoot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding-top: 9px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
}
.portalStoryFoot a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 950;
}
.portalNewsLayout > aside {
  position: sticky;
  top: 148px;
}
.portalMore {
  border-top: 1px solid var(--ink);
  margin-top: 38px;
}
.portalMoreGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.portalMoreGrid .portalSideStory {
  padding-top: 4px;
}
.portalMoreGrid .portalSideMedia {
  height: 170px;
}
.portalEmpty {
  max-width: 720px;
  margin: 50px auto;
  padding: 40px;
  border-top: 5px solid var(--accent);
  background: var(--paper);
  text-align: center;
}
.portalEmpty h1 {
  font:
    900 44px/0.98 Georgia,
    serif;
  letter-spacing: -1.5px;
  margin: 10px 0;
}
.portalEmpty p {
  color: var(--muted);
  font-size: 12px;
}
.portalEmpty button {
  border: 0;
  background: var(--accent);
  color: white;
  padding: 11px 16px;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
}
.searchResultsHead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  border-top: 5px solid var(--ink);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  padding: 22px 24px;
  margin-bottom: 14px;
}
.searchResultsHead h1 {
  font:
    900 40px/0.98 Georgia,
    serif;
  letter-spacing: -1.5px;
  margin: 7px 0 9px;
}
.searchResultsHead p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  margin: 0;
}
.searchResultsHead button {
  flex: 0 0 auto;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: transparent;
  color: var(--accent);
  padding: 9px 12px;
  font-size: 10px;
  font-weight: 900;
  cursor: pointer;
}
.searchRankList {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.searchRankList .categoryRankTop {
  grid-template-columns: 180px minmax(0, 1fr);
  min-height: 150px;
}
.searchRankList .categoryRankTitle h2 {
  font-size: 28px;
  -webkit-line-clamp: 2;
}
.categoryLandingHead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  background: var(--paper);
  border-top: 5px solid var(--ink);
  border-bottom: 1px solid var(--line);
  padding: 22px 24px;
  margin-bottom: 12px;
}
.categoryLandingHead h1 {
  font:
    900 52px/0.92 Georgia,
    serif;
  letter-spacing: -2.2px;
  margin: 7px 0 9px;
}
.categoryLandingHead p {
  max-width: 610px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  margin: 0;
}
.localCatalogHead {
  border-top-color: var(--accent);
  padding-block: 18px;
}
.localCatalogHead h1 {
  font-size: 44px;
  line-height: 0.96;
}
.categoryLandingCount {
  flex: 0 0 auto;
  min-width: 92px;
  border-left: 1px solid var(--line);
  padding-left: 20px;
  text-align: right;
}
.categoryLandingCount strong {
  display: block;
  font:
    900 34px/1 Georgia,
    serif;
  color: var(--accent);
}
.categoryLandingCount span {
  display: block;
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 5px;
}
.categoryRankGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.categoryRankCard {
  min-width: 0;
  background: var(--paper);
  border: 1px solid var(--line);
}
.categoryRankTop {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  min-height: 144px;
}
.categoryRankMedia {
  display: block;
  min-width: 0;
  overflow: hidden;
  background: var(--accent);
}
.categoryRankMedia img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.categoryRankMedia .portalImageFallback {
  font-size: 31px;
  letter-spacing: -2px;
}
.categoryRankCopy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 12px;
}
.categoryRankMeta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
}
.categoryRankMeta .category {
  font-size: 9px;
}
.categoryRankTitle {
  display: block;
  color: var(--ink);
  text-decoration: none;
}
.categoryRankTitle h2 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font:
    900 22px/1.1 Georgia,
    serif;
  letter-spacing: -0.7px;
  margin: 8px 0 4px;
  padding-bottom: 0.14em;
}
.categoryRankLinks {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
}
.categoryRankLinks > a:last-child {
  color: var(--accent);
  text-decoration: none;
  font-size: 9px;
  font-weight: 950;
  white-space: nowrap;
}
.categoryRankLinks .categoryVoteCta {
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: 7px 9px;
}
.categoryRankLinks .whatsappShare.compact {
  width: 25px;
  height: 25px;
  padding: 0;
}
.categoryRankLinks .whatsappShare.compact svg {
  width: 14px;
  height: 14px;
}
.categoryVoteList {
  border-top: 1px solid var(--line);
  padding: 2px 12px 5px;
}
.categoryVoteOption {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) auto;
  gap: 7px;
  align-items: center;
  min-height: 40px;
  border-bottom: 1px solid var(--line);
}
.categoryVoteOption:last-child {
  border-bottom: 0;
}
.categoryVotePos {
  font:
    900 17px/1 Georgia,
    serif;
  color: var(--accent);
}
.categoryVoteName {
  display: flex;
  align-items: baseline;
  gap: 5px;
  min-width: 0;
  color: var(--ink);
  text-decoration: none;
}
.categoryVoteName:hover strong {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.categoryVoteName strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 11px;
}
.categoryVoteName small {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 8px;
}
.categoryVoteActions {
  display: flex;
  gap: 4px;
}
.categoryVoteActions .homeReact {
  width: 27px;
  height: 27px;
  font-size: 17px;
}
@media (max-width: 980px) {
  .homePage .top header {
    grid-template-columns: 175px minmax(220px, 1fr) auto;
    gap: 20px;
  }
  .portalLeadGrid {
    grid-template-columns: minmax(0, 1.5fr) minmax(220px, 0.8fr);
  }
  .portalLeadGrid > .portalRankPanel {
    grid-column: 1/-1;
  }
  .portalLeadGrid > .portalRankPanel ol {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
  }
  .portalLeadGrid > .portalRankPanel li {
    display: block;
  }
  .portalLeadGrid > .portalRankPanel li .portalListNum {
    display: block;
    margin-bottom: 5px;
  }
  .portalNewsLayout {
    grid-template-columns: minmax(0, 1fr) 230px;
    gap: 20px;
  }
  .portalStory.row {
    grid-template-columns: 95px 1fr;
  }
  .portalStoryCopy {
    padding: 12px;
  }
  .portalStoryCopy h2 {
    font-size: 20px;
  }
  .categoryRankTop {
    grid-template-columns: 112px minmax(0, 1fr);
  }
  .categoryRankTitle h2 {
    font-size: 20px;
  }
}
@media (max-width: 700px) {
  .homePage .wrap {
    width: calc(100% - 16px);
  }
  .experienceInner {
    min-height: 33px;
    gap: 10px;
  }
  .experienceSwitch {
    gap: 14px;
  }
  .experienceLink {
    gap: 5px;
    font-size: 9px;
  }
  .cityPicker select {
    max-width: 145px;
    font-size: 9px;
  }
  .homePage .top header {
    height: auto;
    grid-template-columns: 1fr auto;
    gap: 10px 16px;
    padding: 11px 0 10px;
  }
  .homePage .brandBlock {
    grid-column: 1;
  }
  .homePage .tag {
    font-size: 9px;
  }
  .homePage .account {
    grid-column: 2;
    grid-row: 1;
  }
  .homePage .siteSearch {
    grid-column: 1/-1;
    grid-row: 2;
    padding: 8px 1px;
  }
  .homePage .siteSearch input {
    font-size: 12px;
  }
  .rankingPage .top header {
    height: auto;
    grid-template-columns: 1fr auto;
    gap: 9px 14px;
    padding: 10px 0;
  }
  .rankingPage .brandBlock {
    grid-column: 1;
    grid-row: 1;
  }
  .rankingPage .account {
    grid-column: 2;
    grid-row: 1;
  }
  .rankingPage .siteSearch {
    grid-column: 1/-1;
    grid-row: 2;
    padding: 8px 1px;
  }
  .rankingPage .siteSearch input {
    font-size: 12px;
  }
  .homePage .groups {
    gap: 19px;
  }
  .homePage .groupBtn {
    padding: 11px 0 9px;
    font-size: 10px;
  }
  .sitePulse {
    font-size: 8px;
  }
  .homePage .feed {
    padding-top: 5px;
  }
  .portalTrending {
    grid-template-columns: 74px 1fr;
    margin-bottom: 12px;
  }
  .localMode .portalTrending {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 12px;
  }
  .localMode .portalTrendingLabel {
    padding-inline: 5px;
    font-size: 8px;
    line-height: 1.3;
    letter-spacing: 0.07em;
  }
  .portalTrending a {
    width: 220px;
    max-width: 220px;
    padding: 9px 14px 9px 0;
    margin-right: 14px;
    font-size: 10px;
  }
  .categoryRail {
    grid-template-columns: 1fr;
    gap: 9px;
    margin: 20px 0;
    padding: 11px 12px;
  }
  .categoryRailList {
    margin-right: -12px;
    padding-right: 12px;
  }
  .portalLeadGrid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .portalLeadGrid > .portalRankPanel {
    grid-column: auto;
  }
  .portalHeroLink {
    min-height: 360px;
  }
  .portalHeroCopy {
    width: 82%;
    padding: 13px 14px;
  }
  .portalHeroCopy h1 {
    font-size: 30px;
  }
  .portalSideColumn {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .portalSideStory {
    padding-bottom: 12px;
  }
  .portalSideStory:last-child {
    padding-bottom: 12px;
  }
  .portalSideMedia {
    height: 125px;
  }
  .portalSideCopy h2 {
    font-size: 20px;
  }
  .portalSideCopy p {
    display: none;
  }
  .portalLeadGrid > .portalRankPanel ol {
    display: block;
  }
  .portalLeadGrid > .portalRankPanel li {
    display: grid;
  }
  .portalLeadGrid > .portalRankPanel li .portalListNum {
    display: inline;
    margin: 0;
  }
  .portalSectionHead {
    margin-top: 30px;
    align-items: flex-start;
  }
  .portalSectionHead h2 {
    font-size: 27px;
  }
  .portalShuffle {
    padding: 8px 9px;
  }
  .portalNewsLayout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .portalStoryFeed {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .portalStory.feature,
  .portalStory.row {
    grid-column: auto;
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr);
  }
  .portalStory.feature .portalStoryMedia,
  .portalStory.row .portalStoryMedia {
    min-height: 130px;
  }
  .portalStory.feature h2,
  .portalStoryCopy h2 {
    font-size: 21px;
    letter-spacing: -0.5px;
  }
  .portalStoryCopy p {
    display: none;
  }
  .portalStoryFoot {
    margin-top: 10px;
  }
  .portalNewsLayout > aside {
    position: static;
  }
  .portalMoreGrid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .portalMoreGrid .portalSideMedia {
    height: 125px;
  }
  .portalEmpty {
    margin: 25px auto;
    padding: 28px 18px;
  }
  .portalEmpty h1 {
    font-size: 34px;
  }
  .searchResultsHead {
    align-items: flex-start;
    padding: 17px 18px;
    margin-bottom: 10px;
  }
  .searchResultsHead h1 {
    font-size: 32px;
  }
  .searchRankList {
    gap: 10px;
  }
  .searchRankList .categoryRankTop {
    grid-template-columns: 118px minmax(0, 1fr);
    min-height: 132px;
  }
  .searchRankList .categoryRankTitle h2 {
    font-size: 22px;
    -webkit-line-clamp: 3;
  }
  .categoryLandingHead {
    padding: 18px;
    margin-bottom: 10px;
  }
  .categoryLandingHead h1 {
    font-size: 43px;
  }
  .localCatalogHead h1 {
    font-size: 38px;
  }
  .categoryLandingHead p {
    font-size: 11px;
  }
  .categoryLandingCount {
    min-width: 76px;
    padding-left: 14px;
  }
  .categoryLandingCount strong {
    font-size: 30px;
  }
  .categoryRankGrid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .categoryRankTop {
    grid-template-columns: 118px minmax(0, 1fr);
    min-height: 132px;
  }
  .categoryRankTitle h2 {
    font-size: 22px;
  }
}
@media (max-width: 420px) {
  .homePage .voteMeter {
    font-size: 9px;
  }
  .portalHeroLink {
    min-height: 315px;
  }
  .portalHeroCopy {
    width: 86%;
    padding: 11px 12px;
  }
  .portalHeroCopy h1 {
    font-size: 27px;
    letter-spacing: -0.9px;
  }
  .portalQuickOption {
    grid-template-columns: 18px minmax(0, 1fr) auto auto;
  }
  .rankingShareRow {
    margin: 6px 0 14px;
  }
  .portalQuickScore {
    display: none;
  }
  .portalSideMedia {
    height: 108px;
  }
  .portalSideCopy h2 {
    font-size: 18px;
  }
  .portalSectionHead {
    display: block;
  }
  .portalShuffle {
    margin-top: 12px;
  }
  .portalStory.feature,
  .portalStory.row {
    grid-template-columns: 104px minmax(0, 1fr);
  }
  .portalStory.feature .portalStoryMedia,
  .portalStory.row .portalStoryMedia {
    min-height: 118px;
  }
  .portalStoryCopy {
    padding: 10px;
  }
  .portalStory.feature h2,
  .portalStoryCopy h2 {
    font-size: 19px;
  }
  .portalStoryFoot > a {
    display: none;
  }
  .categoryLandingHead {
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
  }
  .searchResultsHead {
    display: block;
    padding: 15px;
  }
  .searchResultsHead h1 {
    font-size: 28px;
    letter-spacing: -1px;
  }
  .searchResultsHead button {
    margin-top: 12px;
  }
  .searchRankList .categoryRankTop {
    grid-template-columns: 96px minmax(0, 1fr);
    min-height: 124px;
  }
  .searchRankList .categoryRankTitle h2 {
    font-size: 19px;
  }
  .categoryLandingHead h1 {
    font-size: 38px;
    letter-spacing: -1.5px;
  }
  .localCatalogHead h1 {
    font-size: 32px;
    letter-spacing: -1.1px;
  }
  .categoryLandingCount {
    min-width: 60px;
    padding-left: 10px;
  }
  .categoryLandingCount strong {
    font-size: 26px;
  }
  .categoryRankTop {
    grid-template-columns: 96px minmax(0, 1fr);
    min-height: 124px;
  }
  .categoryRankCopy {
    padding: 10px;
  }
  .categoryRankTitle h2 {
    font-size: 19px;
    -webkit-line-clamp: 3;
    margin: 7px 0 6px;
  }
  .categoryVoteList {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 560px) {
  .rankingResultHead {
    padding-top: 9px;
  }
  .allItemsExplorer {
    margin-top: 13px;
    padding-top: 10px;
  }
  .allItemsToggle {
    padding: 12px;
    border-radius: 11px;
  }
  .allItemsToggle strong {
    font-size: 17px;
  }
  .categoryRankLinks .categoryVoteCta {
    padding: 6px 8px;
    font-size: 8.5px;
  }
}

/* Continuação de votação */
.rankingContinuation {
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 5px solid var(--accent);
  border-radius: 16px;
  padding: 16px;
  margin: 0 0 13px;
}
.rankingContinuationHead {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}
.rankingContinuationHead h2 {
  font:
    900 28px/1 Georgia,
    serif;
  letter-spacing: -0.8px;
  margin: 4px 0 0;
}
.rankingContinuationHead span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.rankingContinuation .relatedGrid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.rankingContinuation .relatedCard {
  display: block;
  padding: 0;
  overflow: hidden;
}
.rankingContinuation .relatedThumb {
  width: 100%;
  height: 78px;
  border-radius: 0;
}
.rankingContinuation .relatedCard > div:last-child {
  padding: 9px;
}
.rankingContinuation .relatedTitle {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 14px;
  min-height: 30px;
}
.rankingFlowActions {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(150px, 0.8fr);
  gap: 8px;
  border-top: 1px solid var(--line);
  margin-top: 12px;
  padding-top: 12px;
}
.rankingFlowButton {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 55px;
  border: 1px solid var(--accent);
  border-radius: 12px;
  color: var(--accent);
  padding: 10px 12px;
  text-decoration: none;
}
.rankingFlowButton.primary {
  background: var(--accent);
  color: white;
}
.rankingFlowButton strong {
  display: block;
  font-size: 11px;
  font-weight: 950;
}
.rankingFlowButton small {
  display: block;
  font-size: 8.5px;
  line-height: 1.3;
  margin-top: 3px;
  opacity: 0.82;
}
.rankingFlowButton b {
  font:
    900 21px/1 Georgia,
    serif;
}
.relatedThumb .portalImageFallback {
  font-size: 15px;
  letter-spacing: -0.5px;
}
@media (max-width: 560px) {
  .rankingContinuation {
    padding: 13px;
    border-radius: 14px;
  }
  .rankingContinuationHead {
    align-items: start;
  }
  .rankingContinuationHead h2 {
    font-size: 23px;
  }
  .rankingContinuationHead > span {
    display: none;
  }
  .rankingContinuation .relatedGrid {
    grid-template-columns: 1fr;
  }
  .rankingContinuation .relatedCard {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
  }
  .rankingContinuation .relatedThumb {
    width: 78px;
    height: 72px;
  }
  .rankingContinuation .relatedCard > div:last-child {
    padding: 9px;
  }
  .rankingContinuation .relatedTitle {
    min-height: 0;
  }
  .rankingFlowActions {
    grid-template-columns: 1fr;
  }
  .rankingFlowButton {
    min-height: 52px;
  }
}

/* Clerk passwordless sign-in */
.clerkAuthCard {
  overflow: hidden;
}
.clerkAuthMount {
  display: grid;
  width: 100%;
  min-height: 300px;
  place-items: start center;
}
.clerkAuthMount > div {
  max-width: 100%;
}
.passwordlessAuth {
  width: min(380px, 100%);
  padding: 3px 0 5px;
}
.googleAuthButton {
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}
.googleAuthButton:disabled {
  cursor: wait;
  opacity: 0.62;
}
.googleAuthMark {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}
.clerkSocialError:empty {
  display: none;
}
.authChoiceDivider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0 16px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}
.authChoiceDivider::before,
.authChoiceDivider::after {
  height: 1px;
  flex: 1;
  background: var(--line);
  content: '';
}
.codeStepActions button:disabled {
  opacity: 0.55;
  cursor: wait;
}
.clerkFlowError {
  min-height: 16px;
  margin-top: -2px;
}
.authFine {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
  text-align: center;
  margin: 12px 8px 0;
}
#clerk-captcha {
  margin: 0 auto;
}
.clerkCodeStep {
  text-align: center;
}
.codeSentMark {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  margin: 1px auto 11px;
  border-radius: 50%;
  background: var(--upbg);
  color: var(--up);
  font-size: 22px;
  font-weight: 950;
}
.clerkCodeStep h2 {
  font:
    900 26px/1 Georgia,
    serif;
  margin: 0 0 8px;
}
.clerkCodeStep > p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
  margin: 0 0 16px;
}
.clerkCodeStep > p strong {
  color: var(--ink);
  overflow-wrap: anywhere;
}
.clerkCodeStep form {
  text-align: left;
}
.codeField input {
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.28em;
  padding-left: calc(12px + 0.28em);
}
.codeStepActions {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 14px;
}
.codeStepActions button {
  border: 0;
  background: transparent;
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  cursor: pointer;
  padding: 4px;
}
.clerkCallback {
  display: grid;
  width: 100%;
  min-height: 220px;
  place-items: center;
}
.clerkAuthError {
  width: 100%;
  padding: 28px 12px;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}
.clerkAuthError .retry {
  display: block;
  margin: 12px auto 0;
}
@media (max-width: 560px) {
  .clerkAuthMount {
    min-height: 285px;
  }
  .passwordlessAuth {
    width: 100%;
  }
  .codeField input {
    font-size: 22px;
  }
}

/* Descoberta, carregamento e rodapé editorial */
.categoryLoadMore {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 0 2px;
}
.categoryLoadMore button {
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--paper);
  color: var(--accent);
  padding: 10px 16px;
  font-size: 10px;
  font-weight: 950;
  cursor: pointer;
}
.categoryLoadMore button:hover,
.categoryLoadMore button:focus-visible {
  background: #edf1f2;
  outline: 0;
}
.categoryLoadMore span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}
.localCatalogFooter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px 24px;
  border: 1px solid var(--line);
  border-top: 4px solid #c9562f;
  margin-top: 28px;
  padding: 18px 20px;
  background: var(--paper);
}
.localCatalogFooterCopy h2 {
  margin: 4px 0 5px;
  font:
    900 24px/1 Georgia,
    serif;
  letter-spacing: -0.7px;
}
.localCatalogFooterCopy p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}
.localDataCredit {
  grid-column: 1/-1;
  margin: 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.45;
}
.localDataCredit a {
  color: inherit;
  font-weight: 850;
  text-decoration-color: #c9562f;
  text-underline-offset: 2px;
}
.localExploreButton {
  border: 1px solid #c9562f;
  border-radius: 999px;
  background: #c9562f;
  color: white;
  padding: 11px 16px;
  font-size: 10px;
  font-weight: 950;
  cursor: pointer;
}
.localExploreButton:hover,
.localExploreButton:focus-visible {
  background: #a94627;
  outline: 0;
}
.localCityOptions {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.localCityOptions[hidden] {
  display: none;
}
.localCityOptions :is(button, a) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
  border: 1px solid var(--line);
  background: #f7f4ee;
  color: var(--ink);
  padding: 11px 12px;
  text-align: left;
  cursor: pointer;
  text-decoration: none;
}
.localCityOptions :is(button, a):hover,
.localCityOptions :is(button, a):focus-visible {
  border-color: #c9562f;
  outline: 0;
}
.localCityOptions strong {
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.localCityOptions span {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
}
@media (max-width: 700px) {
  .localCatalogFooter {
    grid-template-columns: 1fr;
    align-items: flex-start;
    padding: 16px;
  }
  .localExploreButton {
    justify-self: start;
  }
  .localCityOptions {
    width: 100%;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 420px) {
  .localExploreButton {
    width: 100%;
  }
}
.authPreload {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 74px 18px;
  text-align: center;
  color: var(--muted);
}
.authPreload strong {
  color: var(--ink);
  font:
    900 20px/1.05 Georgia,
    serif;
}
.authPreload > span:last-child {
  font-size: 11px;
}
.loadingSpinner {
  width: 30px;
  height: 30px;
  border: 3px solid var(--line);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: topoSpin 0.8s linear infinite;
}
@keyframes topoSpin {
  to {
    transform: rotate(360deg);
  }
}
.siteFooter {
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.siteFooterGrid {
  display: grid;
  grid-template-columns: minmax(180px, 1.35fr) repeat(3, minmax(130px, 1fr));
  gap: 34px;
  padding: 36px 0 30px;
}
.siteFooterIntro p {
  max-width: 190px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
  margin: 9px 0 0;
}
.siteFooterBrand {
  color: #465e6d;
  font:
    900 24px/1 Georgia,
    serif;
  letter-spacing: -0.9px;
}
.siteFooterBrand::after {
  content: '';
  display: inline-block;
  width: 0.22em;
  height: 0.22em;
  margin-left: 0.08em;
  border-radius: 50%;
  background: #c9562f;
  transform: translateY(0.05em);
}
.siteFooterColumn {
  display: grid;
  align-content: start;
  gap: 9px;
}
.siteFooterColumn strong {
  color: var(--ink);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.siteFooter a {
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  line-height: 1.35;
  text-decoration: none;
}
.siteFooter a:hover,
.siteFooter a:focus-visible {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  outline: 0;
}
.siteFooterBottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: 16px 0 20px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
}

/* Páginas de confiança */
.legalShell {
  min-height: 100vh;
  background: var(--bg);
}
.legalTop {
  position: static;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.legalTop .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}
.legalBack {
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
}
.legalPage {
  padding: 42px 0 74px;
}
.legalKicker {
  color: var(--accent);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.legalPage h1 {
  max-width: 760px;
  font:
    900 52px/0.94 Georgia,
    serif;
  letter-spacing: -2px;
  margin: 9px 0 14px;
}
.legalLead {
  max-width: 720px;
  color: var(--muted);
  font:
    700 15px/1.55 Inter,
    system-ui,
    sans-serif;
  margin: 0 0 28px;
}
.legalUpdated {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--muted);
  padding: 7px 10px;
  font-size: 9px;
  font-weight: 900;
  margin-bottom: 24px;
}
.legalGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.legalSection {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 18px;
}
.legalSection.wide {
  grid-column: 1/-1;
}
.legalSection h2 {
  font-size: 24px;
  letter-spacing: -0.7px;
  margin-bottom: 10px;
}
.legalSection p,
.legalSection li {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.58;
}
.legalSection p {
  margin: 0 0 9px;
}
.legalSection p:last-child {
  margin-bottom: 0;
}
.legalSection ul {
  margin: 0;
  padding-left: 18px;
}
.legalSection li + li {
  margin-top: 5px;
}
.legalSection a {
  color: var(--accent);
  font-weight: 900;
}
.methodStep {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  align-items: start;
}
.methodStep + .methodStep {
  border-top: 1px solid var(--line);
  margin-top: 12px;
  padding-top: 12px;
}
.methodStep b {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: #edf1f2;
  color: var(--accent);
  font:
    900 16px/1 Georgia,
    serif;
}
.methodStep strong {
  display: block;
  font-size: 12px;
  margin-bottom: 3px;
}
.methodStep p {
  margin: 0;
}
.legalAction {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent) !important;
  padding: 9px 13px;
  margin-top: 8px;
  font-size: 10px !important;
  font-weight: 950 !important;
  text-decoration: none !important;
}
.legalAction:hover,
.legalAction:focus-visible {
  background: #edf1f2;
  outline: 0;
}
.legalCallout {
  border-top: 4px solid var(--accent);
}
.contactPanel {
  background: #edf1f2;
}
.legalFine {
  font-size: 10px !important;
  border-top: 1px solid var(--line);
  padding-top: 10px;
  margin-top: 12px !important;
}
.legalReviewNote {
  max-width: 680px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
  margin: 22px 0 0;
}
@media (max-width: 800px) {
  .siteFooterGrid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .siteFooterIntro {
    grid-column: 1/-1;
  }
  .siteFooterIntro p {
    max-width: none;
  }
}
@media (max-width: 620px) {
  .siteFooterGrid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 0 24px;
  }
  .siteFooterIntro {
    grid-column: auto;
  }
  .siteFooterColumn {
    gap: 11px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
  }
  .siteFooterColumn strong {
    margin-bottom: 2px;
  }
  .siteFooterBottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }
  .legalPage {
    padding: 28px 0 54px;
  }
  .legalPage h1 {
    font-size: 39px;
    letter-spacing: -1.4px;
  }
  .legalGrid {
    grid-template-columns: 1fr;
  }
  .legalSection.wide {
    grid-column: auto;
  }
  .legalSection {
    padding: 15px;
  }
  .categoryLoadMore {
    flex-direction: column;
    gap: 7px;
  }
}

/* Perfil gamificado */
.profilePage {
  --bg: #fff;
  --paper: #fff;
  background: #fff;
}
.profilePage .top {
  background: rgba(255, 255, 255, 0.97);
}
.profilePage .groupsWrap {
  display: none;
}
.profilePage .feed {
  padding-top: 18px;
}
.profileGameHero {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 22px;
}
.profileAvatarProgress {
  position: relative;
  width: 144px;
  height: 144px;
  display: grid;
  place-items: center;
}
.profileAvatarRing {
  width: 144px;
  height: 144px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(from -90deg, var(--accent) var(--profile-progress), var(--line) 0);
}
.profileAvatar {
  width: 112px;
  height: 112px;
  overflow: hidden;
  border: 7px solid #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #edf1f2;
  color: #465e6d;
}
.profileAvatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.profileAvatar [hidden] {
  display: none;
}
.profileAvatar > span {
  font:
    900 42px/1 Georgia,
    serif;
}
.profileProgressCount {
  position: absolute;
  right: -1px;
  bottom: 11px;
  min-width: 39px;
  height: 29px;
  padding: 0 8px;
  border: 3px solid #fff;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #465e6d;
  color: #fff;
  font-size: 11px;
  font-weight: 950;
}
.profileHeroCopy {
  min-width: 0;
  display: grid;
  gap: 11px;
}
.profileHeroCopy .profileName {
  margin-top: 3px;
}
.profileBadges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.profileBadges span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(101, 121, 134, 0.3);
  border-radius: 999px;
  background: #edf1f2;
  color: #465e6d;
  padding: 5px 8px;
  font-size: 9px;
  font-weight: 950;
}
.profileProgressText {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
.profileProgressText strong {
  color: var(--ink);
}
.profileMetrics {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 2px;
}
.profileMetrics > span {
  display: grid;
  gap: 2px;
}
.profileMetrics strong {
  font:
    900 19px/1 Georgia,
    serif;
}
.profileMetrics small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.profileDashboard {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}
.profileDashboard .profileSection {
  height: 100%;
}
.profileSectionHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 7px;
}
.profileSectionHead .sectionLabel {
  margin: 0;
}
.profileSectionHead > span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 850;
}
.profilePowerList {
  display: grid;
}
.profilePowerRow {
  display: grid;
  grid-template-columns: 35px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}
.profilePowerRow:last-child {
  border-bottom: 0;
}
.profilePowerIcon {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--bg);
  color: var(--muted);
  font-size: 15px;
  font-weight: 900;
}
.profilePowerIcon.unlocked {
  border-color: #465e6d;
  background: #465e6d;
  color: #fff;
}
.profilePowerIcon.next {
  border-color: #c9562f;
  background: #f8eee9;
  color: #c9562f;
}
.profilePowerCopy {
  min-width: 0;
  display: grid;
  gap: 3px;
}
.profilePowerCopy strong {
  font-size: 12px;
}
.profilePowerCopy small {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.3;
}
.profilePowerStatus {
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  white-space: nowrap;
}
.profileComingSoon {
  border-left: 3px solid var(--accent);
  background: #edf1f2;
  color: #465e6d;
  border-radius: 0 9px 9px 0;
  padding: 9px 10px;
  margin: 8px 0 0;
  font-size: 10px;
  line-height: 1.45;
  font-weight: 800;
}
.profileIdentityPanel {
  display: grid;
  gap: 8px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin: 0;
  padding: 12px;
  background: #f7f8f6;
  text-align: left;
}
.profileNameForm {
  display: grid;
  gap: 6px;
}
.profileNameForm > label {
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
}
.profileNameForm > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 7px;
}
.profileNameForm input {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  padding: 9px 10px;
  font: inherit;
  font-size: 12px;
  outline: none;
}
.profileNameForm input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(101, 121, 134, 0.12);
}
.profileNameForm button {
  border: 0;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  padding: 9px 12px;
  font-size: 10px;
  font-weight: 950;
  cursor: pointer;
}
.profileNameForm button:disabled {
  opacity: 0.55;
  cursor: wait;
}
.profileIdentityCurrent {
  font:
    900 18px/1.1 Georgia,
    serif;
}
.profileNameCooldown {
  margin: 0;
  color: #465e6d;
  font-size: 9px;
  line-height: 1.4;
  font-weight: 850;
}
.profileNameStatus {
  min-height: 13px;
  color: var(--down);
  font-size: 9px;
  font-weight: 900;
}
.profilePhotoPanel {
  display: grid;
  gap: 9px;
  border-top: 1px solid var(--line);
  margin-top: 14px;
  padding-top: 14px;
}
.profilePhotoTitle {
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.profilePhotoActions {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}
.profilePhotoActions button {
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: #fff;
  color: var(--accent);
  padding: 8px 11px;
  font-size: 10px;
  font-weight: 950;
  cursor: pointer;
}
.profilePhotoActions button:first-of-type {
  background: var(--accent);
  color: #fff;
}
.profilePhotoActions button:disabled {
  opacity: 0.55;
  cursor: wait;
}
.profilePhotoCheck {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--ink);
  font-size: 10px;
  line-height: 1.4;
  font-weight: 800;
  cursor: pointer;
}
.profilePhotoCheck input {
  width: 15px;
  height: 15px;
  margin: 0;
  accent-color: var(--accent);
  flex: 0 0 auto;
}
.profilePhotoNote {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.45;
}
.profilePhotoStatus {
  min-height: 13px;
  color: var(--accent);
  font-size: 9px;
  font-weight: 900;
}
.profileVoteSplit {
  width: 100%;
  height: 12px;
  display: flex;
  overflow: hidden;
  border-radius: 999px;
  background: var(--line);
  margin: 14px 0 8px;
}
.profileVoteSplit span {
  display: block;
  height: 100%;
}
.profileVoteSplit .up {
  background: var(--up);
}
.profileVoteSplit .down {
  background: var(--down);
}
.profileVoteLegend {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 10px;
}
.profileVoteLegend > span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.profileVoteLegend i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--up);
}
.profileVoteLegend i.down {
  background: var(--down);
}
.profileVoteLegend strong {
  color: var(--ink);
}
.profileSubhead {
  border-top: 1px solid var(--line);
  margin-top: 17px;
  padding-top: 14px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.profileCategoryList {
  display: grid;
  gap: 10px;
  margin-top: 11px;
}
.profileCategoryLabel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 5px;
  font-size: 11px;
  font-weight: 850;
}
.profileCategoryLabel strong {
  font-size: 10px;
}
.profileCategoryTrack {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #edf1f2;
}
.profileCategoryTrack span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
}
.profileRecentSection {
  margin-top: 0;
}
.profileRecentSection .recentVote {
  padding: 11px 0;
}
.profileRecentSection .recentOption,
.profileRecentSection .recentQuestion {
  display: block;
}
.doubleVoteBadge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 14px;
  margin-left: 3px;
  padding: 0 4px;
  border-radius: 999px;
  background: #465e6d;
  color: #fff;
  font-size: 8px;
  font-style: normal;
  font-weight: 950;
  line-height: 1;
  vertical-align: 1px;
  white-space: nowrap;
}
.doubleVoteAction {
  width: 29px;
  height: 29px;
  border: 1px solid #718692;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #edf1f2;
  color: #465e6d;
  font-size: 9px;
  font-weight: 950;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 0.08s ease,
    background 0.15s ease,
    color 0.15s ease;
}
.doubleVoteAction.active {
  border-color: #465e6d;
  background: #465e6d;
  color: #fff;
  box-shadow: 0 0 0 3px rgba(70, 94, 109, 0.16);
}
.doubleVoteAction:active {
  transform: scale(0.92);
}
.doubleVoteAction:disabled {
  opacity: 0.55;
}
@media (max-width: 560px) {
  .doubleVoteAction {
    width: 27px;
    height: 27px;
  }
}
.howIcon.double {
  background: #465e6d;
  color: #fff;
  font-size: 12px;
}
.profilePowerStatus.available {
  color: var(--up);
}
.profilePowerStatus.inUse {
  color: #c9562f;
}
.recentDoubleVote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 3px;
  padding: 2px 4px;
  border-radius: 999px;
  background: #465e6d;
  color: #fff;
  font-size: 8px;
  font-style: normal;
  font-weight: 950;
  line-height: 1;
  vertical-align: 1px;
}
.profileLeaderboardSection {
  margin-top: 12px;
}
.profileLeaderboardList {
  display: grid;
}
.profileLeaderboardRow {
  display: grid;
  grid-template-columns: 31px 38px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px 8px;
  border-bottom: 1px solid var(--line);
  border-radius: 11px;
}
.profileLeaderboardRow:last-child {
  border-bottom: 0;
}
.profileLeaderboardRow.current {
  background: #edf1f2;
  box-shadow: inset 3px 0 0 #465e6d;
}
.profileLeaderboardPosition {
  width: 27px;
  height: 27px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--muted);
  font:
    900 11px/1 Georgia,
    serif;
}
.profileLeaderboardPosition.top1 {
  border-color: #c59a3d;
  background: #f3e1a7;
  color: #7c5913;
}
.profileLeaderboardPosition.top2 {
  border-color: #aeb6bd;
  background: #e8ecef;
  color: #5b6570;
}
.profileLeaderboardPosition.top3 {
  border-color: #bd795a;
  background: #efd2c3;
  color: #7f4024;
}
.profileLeaderboardAvatar {
  width: 36px;
  height: 36px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: #465e6d;
  font:
    900 15px/1 Georgia,
    serif;
}
.profileLeaderboardAvatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.profileLeaderboardPerson {
  min-width: 0;
  display: grid;
  gap: 3px;
}
.profileLeaderboardPerson strong {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.profileLeaderboardPerson em {
  flex: 0 0 auto;
  border-radius: 999px;
  background: #465e6d;
  color: #fff;
  padding: 3px 5px;
  font-size: 8px;
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.profileLeaderboardPerson small {
  overflow: hidden;
  color: var(--muted);
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.profileNameReport {
  width: max-content;
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 1px 0 0;
  font: inherit;
  font-size: 8px;
  text-decoration: underline;
  cursor: pointer;
}
.profileNameReport:hover {
  color: var(--down);
}
.profileNameReport.reported,
.profileNameReport:disabled {
  color: #8a989f;
  text-decoration: none;
  cursor: default;
}
.profileLeaderboardScore {
  display: grid;
  gap: 2px;
  text-align: right;
}
.profileLeaderboardScore strong {
  font:
    900 17px/1 Georgia,
    serif;
}
.profileLeaderboardScore small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.profileLeaderboardGap {
  padding: 5px 0;
  color: var(--muted);
  font-size: 10px;
  text-align: center;
  letter-spacing: 0.25em;
}
.profileLeaderboardNote {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.45;
}
@media (max-width: 650px) {
  .profilePage .feed {
    padding-top: 12px;
  }
  .profileGameHero {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 18px;
    text-align: center;
  }
  .profileAvatarProgress {
    justify-self: center;
  }
  .profileBadges,
  .profileMetrics {
    justify-content: center;
  }
  .profileDashboard {
    grid-template-columns: 1fr;
  }
  .profileDashboard .profileSection {
    height: auto;
  }
  .profileNameForm > div {
    grid-template-columns: 1fr;
  }
  .profileNameForm button {
    width: 100%;
  }
}
@media (max-width: 390px) {
  .profileMetrics {
    gap: 16px;
  }
  .profileSectionHead {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }
  .profilePowerRow {
    grid-template-columns: 33px minmax(0, 1fr);
  }
  .profilePowerStatus {
    grid-column: 2;
  }
  .profileVoteLegend {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
  .profileRecentSection .recentTime {
    display: none;
  }
  .profileLeaderboardRow {
    grid-template-columns: 28px 34px minmax(0, 1fr) auto;
    gap: 7px;
    padding: 9px 5px;
  }
  .profileLeaderboardAvatar {
    width: 32px;
    height: 32px;
  }
  .profileLeaderboardPerson small {
    font-size: 8px;
  }
}

/* Sugestões da comunidade e moderação */
.portalIdeaCallout {
  margin: 24px 0 10px;
  padding: 18px 20px;
  border-top: 4px solid var(--accent);
  border-radius: 0 0 16px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: #edf1f2;
}
.portalIdeaCallout h2 {
  margin: 4px 0 5px;
  font-size: 27px;
}
.portalIdeaCallout p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}
.portalIdeaCallout > a,
.rankingSuggestion > a {
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  padding: 10px 14px;
  text-decoration: none;
  font-size: 10px;
  font-weight: 950;
  white-space: nowrap;
}
.rankingSuggestion {
  margin-top: 18px;
  padding: 17px 0 2px;
  border-top: 1px solid var(--line);
}
.suggestionEyebrow {
  display: block;
  color: var(--accent);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.rankingSuggestion h3 {
  margin: 5px 0 6px;
  font:
    900 23px/1.05 Georgia,
    serif;
}
.rankingSuggestion > p,
.rankingSuggestionForm > p {
  max-width: 560px;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}
.rankingSuggestion form {
  display: grid;
  gap: 6px;
}
.rankingSuggestion form > label,
.suggestionField > span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.rankingSuggestion form > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 7px;
}
.rankingSuggestion input,
.suggestionField input,
.suggestionField select,
.suggestionField textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  padding: 10px 11px;
  font: inherit;
  font-size: 12px;
  outline: none;
}
.rankingSuggestion input:focus,
.suggestionField input:focus,
.suggestionField select:focus,
.suggestionField textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(101, 121, 134, 0.12);
}
.rankingSuggestion form button,
.suggestionSubmit {
  border: 0;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  padding: 10px 15px;
  font-size: 10px;
  font-weight: 950;
  cursor: pointer;
}
.rankingSuggestion form button:disabled,
.suggestionSubmit:disabled,
.moderationActions button:disabled {
  opacity: 0.55;
  cursor: wait;
}
.rankingSuggestion form > small,
.suggestionField small {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.4;
}
.suggestionFormStatus {
  min-height: 14px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
}
.suggestionFormStatus.success {
  color: var(--up);
}
.suggestionFormStatus.error {
  color: var(--down);
}
.profileSuggestionCenter {
  display: grid;
  gap: 12px;
  scroll-margin-top: 92px;
}
.suggestionCenterLoading {
  padding: 18px;
  text-align: center;
}
.rankingSuggestionForm {
  scroll-margin-top: 92px;
}
.rankingSuggestionForm .profileSectionHead > div {
  display: grid;
  gap: 5px;
}
.rankingSuggestionForm form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 0.45fr);
  gap: 11px 12px;
}
.suggestionField {
  display: grid;
  align-content: start;
  gap: 6px;
  margin: 0;
}
.suggestionField:has(textarea) {
  grid-column: 1/-1;
}
.suggestionField textarea {
  min-height: 122px;
  resize: vertical;
  line-height: 1.45;
}
.suggestionSubmit {
  justify-self: start;
  min-width: 170px;
}
.rankingSuggestionForm .suggestionFormStatus {
  align-self: center;
}
.suggestionHistoryList {
  display: grid;
}
.suggestionHistoryItem {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.suggestionHistoryItem:last-child {
  border-bottom: 0;
}
.suggestionHistoryItem > a,
.suggestionHistoryItem > div {
  min-width: 0;
  display: grid;
  gap: 3px;
  color: inherit;
  text-decoration: none;
}
.suggestionHistoryItem strong {
  font-size: 12px;
  line-height: 1.3;
}
.suggestionHistoryItem small {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.4;
}
.suggestionHistoryItem em {
  margin-top: 3px;
  color: #6e5045;
  font-size: 9px;
  font-style: normal;
  line-height: 1.4;
}
.suggestionHistoryType {
  color: var(--accent);
  font-size: 8px;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.suggestionHistoryEmpty {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}
.suggestionStatus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 8px;
  font-size: 8px;
  font-weight: 950;
  white-space: nowrap;
}
.suggestionStatus.pending {
  background: #f5f0df;
  border-color: #dfd09a;
  color: #806922;
}
.suggestionStatus.approved,
.suggestionStatus.published {
  background: var(--upbg);
  border-color: #b9d7cb;
  color: var(--up);
}
.suggestionStatus.rejected {
  background: var(--downbg);
  border-color: #e8c1bd;
  color: var(--down);
}
.suggestionStatus.duplicate {
  background: #edf1f2;
  border-color: #c8d2d7;
  color: #465e6d;
}
.moderationProfileLink {
  margin: -2px 0 12px;
  padding: 13px 15px;
  border: 1px solid #465e6d;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #465e6d;
  color: #fff;
  text-decoration: none;
  font-size: 10px;
}
.moderationProfileLink strong {
  font-size: 11px;
}
.suggestionRetry {
  border: 0;
  background: transparent;
  color: var(--accent);
  padding: 0;
  font: inherit;
  font-weight: 950;
  text-decoration: underline;
  cursor: pointer;
}
.moderationPage {
  background: #f5f3ee;
}
.moderationPage .groupsWrap {
  display: none;
}
.moderationHero {
  display: block;
  height: auto;
  min-height: 0;
  margin-bottom: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.moderationHero h1,
.moderationAccessDenied h1 {
  max-width: 660px;
  margin: 6px 0 8px;
  font:
    900 42px/0.98 Georgia,
    serif;
  letter-spacing: -1.4px;
}
.moderationHero > p,
.moderationAccessDenied p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}
.moderationCounts {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 17px;
}
.moderationCounts span {
  border-radius: 999px;
  background: #edf1f2;
  color: #465e6d;
  padding: 7px 10px;
  font-size: 9px;
  font-weight: 850;
}
.moderationCounts strong {
  font-size: 12px;
}
.moderationSection {
  margin-bottom: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.moderationSectionHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ink);
}
.moderationSectionHead h2 {
  margin: 0;
  font-size: 24px;
}
.moderationSectionHead > span {
  min-width: 25px;
  height: 25px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #edf1f2;
  color: #465e6d;
  font-size: 10px;
  font-weight: 950;
}
.moderationList {
  display: grid;
}
.moderationCard {
  padding: 15px 2px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 100px;
}
.moderationCard:last-child {
  border-bottom: 0;
}
.moderationCard.targeted {
  margin: 8px -8px;
  padding: 15px 10px;
  border: 1px solid var(--accent);
  border-radius: 13px;
  background: #f5f8f9;
  box-shadow: 0 0 0 3px rgba(101, 121, 134, 0.12);
}
.moderationCardHead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
}
.moderationKind {
  color: var(--accent);
  font-size: 8px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.moderationCard h3 {
  margin: 4px 0 4px;
  font:
    900 22px/1.08 Georgia,
    serif;
}
.moderationCardHead p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.4;
}
.moderationOptionReview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.55fr);
  gap: 11px 12px;
  margin: 13px 0;
  padding: 13px;
  border: 1px solid #c8d2d7;
  border-radius: 12px;
  background: #f7f9f9;
}
.moderationOptionReview > .suggestionField:first-child {
  grid-column: 1/-1;
}
.moderationRankingReview {
  display: grid;
  gap: 12px;
  margin: 13px 0;
  padding: 13px;
  border: 1px solid #c8d2d7;
  border-radius: 12px;
  background: #f7f9f9;
}
.moderationRankingReview > p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}
.moderationRankingReview > p strong {
  color: var(--ink);
}
.moderationRankingReview > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.45fr);
  gap: 11px 12px;
}
.moderationDuplicateHint {
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 10px 11px;
  border-left: 3px solid #b28a22;
  border-radius: 0 9px 9px 0;
  background: #f5f0df;
  color: #6f5a1e;
  font-size: 9px;
  line-height: 1.4;
}
.moderationDuplicateHint strong {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.moderationDuplicateClear {
  align-self: center;
  margin: 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.45;
}
.moderationDuplicateTarget {
  min-width: 0;
}
.moderationExamples {
  margin: 11px 0;
  padding: 10px 12px;
  border-radius: 10px;
  background: #f5f3ee;
}
.moderationExamples > strong {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.moderationExamples ol {
  columns: 2;
  margin: 0;
  padding-left: 20px;
  color: var(--ink);
  font-size: 10px;
  line-height: 1.65;
}
.moderationFlag {
  margin: 11px 0;
  padding: 9px 11px;
  border-left: 3px solid var(--down);
  border-radius: 0 9px 9px 0;
  display: grid;
  gap: 3px;
  background: var(--downbg);
  color: var(--down);
  font-size: 9px;
  line-height: 1.4;
}
.moderationMeta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 11px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.4;
}
.moderationMeta time {
  white-space: nowrap;
}
.moderationNote {
  margin-top: 9px;
  color: #6e5045;
  font-size: 9px;
  line-height: 1.45;
}
.moderationActions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(125px, 1fr));
  gap: 8px;
  margin-top: 13px;
}
.moderationActions button {
  border-radius: 10px;
  padding: 9px 13px;
  font-size: 10px;
  font-weight: 950;
  cursor: pointer;
}
.moderationActions .approve {
  border: 1px solid var(--up);
  background: var(--up);
  color: #fff;
}
.moderationActions .duplicate {
  border: 1px solid #718692;
  background: #edf1f2;
  color: #465e6d;
}
.moderationActions .reject {
  border: 1px solid #d4aaa5;
  background: #fff;
  color: var(--down);
}
.moderationCard.preparing {
  margin: 9px -3px;
  padding: 18px 14px;
  border: 1px solid #b9d7cb;
  border-radius: 14px;
  background: #fbfdfc;
}
.moderationCreationReady {
  display: grid;
  gap: 4px;
  margin-top: 15px;
  padding: 12px 13px;
  border-radius: 11px;
  background: #edf6f2;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}
.moderationCreationReady strong {
  color: var(--up);
  font-size: 11px;
}
.moderationPublished {
  margin-top: 12px;
}
.moderationPublished a {
  display: inline-flex;
  border-radius: 999px;
  background: #edf6f2;
  color: var(--up);
  padding: 8px 11px;
  text-decoration: none;
  font-size: 9px;
  font-weight: 950;
}
.moderationEmpty {
  padding: 24px 4px 12px;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}
.moderationAccessDenied {
  margin: 20px 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
@media (max-width: 620px) {
  .portalIdeaCallout {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px;
  }
  .portalIdeaCallout > a {
    width: 100%;
    text-align: center;
  }
  .rankingSuggestion form > div {
    grid-template-columns: 1fr;
  }
  .rankingSuggestion form button {
    width: 100%;
  }
  .rankingSuggestionForm form {
    grid-template-columns: 1fr;
  }
  .suggestionField:has(textarea) {
    grid-column: auto;
  }
  .suggestionSubmit {
    width: 100%;
    justify-self: stretch;
  }
  .suggestionHistoryItem {
    align-items: start;
  }
  .moderationHero {
    padding: 19px;
  }
  .moderationHero h1,
  .moderationAccessDenied h1 {
    font-size: 34px;
  }
  .moderationSection {
    padding: 13px;
  }
  .moderationCardHead {
    grid-template-columns: 1fr;
  }
  .moderationCardHead .suggestionStatus {
    justify-self: start;
  }
  .moderationOptionReview {
    grid-template-columns: 1fr;
    padding: 11px;
  }
  .moderationOptionReview > .suggestionField:first-child {
    grid-column: auto;
  }
  .moderationRankingReview {
    padding: 11px;
  }
  .moderationRankingReview > div {
    grid-template-columns: 1fr;
  }
  .moderationExamples ol {
    columns: 1;
  }
  .moderationMeta {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
  .moderationActions {
    grid-template-columns: 1fr;
  }
  .moderationCard.preparing {
    margin: 8px -4px;
    padding: 15px 11px;
  }
}
