:root {
  color-scheme: light;
  --ink: #18202a;
  --muted: #66717f;
  --paper: #fffaf3;
  --surface: #ffffff;
  --line: #e8ded1;
  --coral: #e95f55;
  --teal: #147c7a;
  --mint: #8fd0bd;
  --gold: #f4b24d;
  --navy: #17263f;
  --rose: #f7c2bb;
  --shadow: 0 22px 70px rgba(24, 32, 42, 0.14);
  font-family:
    Pretendard,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 24%, rgba(244, 178, 77, 0.18), transparent 24rem),
    linear-gradient(180deg, #fffaf3 0%, #f8eee5 52%, #edf8f4 100%);
  color: var(--ink);
}

button,
a {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

main {
  min-height: 100vh;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: clamp(2rem, 6vw, 5rem);
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.02);
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(10, 21, 30, 0.82) 0%, rgba(10, 21, 30, 0.47) 46%, rgba(10, 21, 30, 0.12) 100%),
    linear-gradient(0deg, rgba(10, 21, 30, 0.68) 0%, rgba(10, 21, 30, 0.04) 42%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  color: #fffaf3;
}

.eyebrow,
.question-kicker {
  margin: 0 0 0.8rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--teal);
}

.hero .eyebrow {
  color: #9de0d2;
}

h1,
h2,
h3,
p {
  word-break: keep-all;
}

h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(2.8rem, 7vw, 6.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero__copy {
  max-width: 610px;
  margin: 1.4rem 0 0;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.72;
  color: rgba(255, 250, 243, 0.88);
}

.hero__actions,
.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 2rem;
}

.primary-button,
.secondary-button,
.ghost-link {
  min-height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 1.25rem;
  font-weight: 800;
  text-decoration: none;
}

.primary-button {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 16px 34px rgba(233, 95, 85, 0.28);
}

.secondary-button {
  background: var(--navy);
  color: #fff;
}

.ghost-link {
  color: #fffaf3;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(14px);
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2.1rem;
}

.hero__stats span {
  border-radius: 999px;
  padding: 0.55rem 0.82rem;
  background: rgba(255, 250, 243, 0.14);
  color: rgba(255, 250, 243, 0.86);
  border: 1px solid rgba(255, 250, 243, 0.18);
}

.type-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.type-strip article {
  min-height: 13rem;
  padding: 1.55rem;
  background: rgba(255, 255, 255, 0.72);
}

.type-strip h2,
.type-strip p {
  margin: 0;
}

.type-strip h2 {
  margin-top: 1.2rem;
  font-size: 1.3rem;
}

.type-strip p {
  margin-top: 0.55rem;
  color: var(--muted);
  line-height: 1.65;
}

.mini-orbit {
  display: inline-block;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 50%;
  background: conic-gradient(from 120deg, var(--teal), var(--mint), var(--gold), var(--teal));
  box-shadow: inset 0 0 0 0.58rem #fff;
}

.mini-orbit.anxious {
  background: conic-gradient(from 20deg, var(--coral), var(--gold), #f7c2bb, var(--coral));
}

.mini-orbit.avoidant {
  background: conic-gradient(from 40deg, var(--navy), #88a4ba, var(--mint), var(--navy));
}

.mini-orbit.fearful {
  background: conic-gradient(from 80deg, var(--coral), var(--navy), var(--teal), var(--gold), var(--coral));
}

.quiz,
.result {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 5rem) 0;
}

.ad-wrap {
  width: min(970px, calc(100% - 2rem));
  min-height: 7.5rem;
  display: grid;
  gap: 0.45rem;
  align-content: center;
  margin: 1.25rem auto;
  padding: 0.85rem;
  border: 1px dashed rgba(102, 113, 127, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.54);
}

.ad-wrap--intro {
  margin-top: 1.6rem;
  margin-bottom: 0;
}

.ad-wrap--result {
  margin-top: 1.35rem;
}

.ad-wrap p {
  margin: 0;
  color: rgba(102, 113, 127, 0.74);
  font-size: 0.68rem;
  font-weight: 800;
  text-align: center;
}

.ad-slot {
  display: block;
  min-height: 5.6rem;
  border-radius: 8px;
  overflow: hidden;
}

.ad-slot[data-placeholder="true"] {
  display: grid;
  place-items: center;
  background: repeating-linear-gradient(
    135deg,
    rgba(20, 124, 122, 0.06) 0 10px,
    rgba(233, 95, 85, 0.06) 10px 20px
  );
  color: rgba(102, 113, 127, 0.75);
  font-size: 0.88rem;
  font-weight: 750;
}

.hidden {
  display: none !important;
}

.quiz__top {
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  gap: 1rem;
  align-items: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.icon-button {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--surface);
  color: var(--ink);
  font-size: 2rem;
  box-shadow: 0 10px 30px rgba(24, 32, 42, 0.1);
}

.progress {
  height: 0.68rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(20, 124, 122, 0.13);
}

.progress span {
  display: block;
  width: 8%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--coral), var(--gold));
  transition: width 280ms ease;
}

#progressText {
  margin: 0;
  font-weight: 800;
  color: var(--muted);
}

.question-scene {
  position: relative;
  width: min(28rem, 100%);
  height: 11rem;
  margin: 0 auto 2rem;
}

.scene-dot {
  position: absolute;
  width: 6.4rem;
  height: 6.4rem;
  border-radius: 50%;
  top: 2.1rem;
  background: linear-gradient(135deg, #fff, #f7c2bb);
  box-shadow: var(--shadow);
}

.scene-dot.one {
  left: 16%;
}

.scene-dot.two {
  right: 16%;
  background: linear-gradient(135deg, #fff, #8fd0bd);
}

.scene-line {
  position: absolute;
  left: 29%;
  right: 29%;
  top: 5.2rem;
  height: 0.45rem;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, var(--coral) 0 1rem, transparent 1rem 1.55rem);
}

.scene-heart {
  position: absolute;
  left: calc(50% - 1.55rem);
  top: 3.8rem;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 999px 999px 999px 0;
  rotate: -45deg;
  background: var(--gold);
  box-shadow: 0 12px 34px rgba(244, 178, 77, 0.35);
}

.quiz h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(1.8rem, 4.8vw, 3.6rem);
  line-height: 1.17;
}

.answers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 2rem;
}

.answer-button {
  min-height: 7.8rem;
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem;
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  text-align: left;
  box-shadow: 0 14px 38px rgba(24, 32, 42, 0.08);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.answer-button:hover,
.answer-button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(24, 32, 42, 0.13);
  outline: 3px solid rgba(20, 124, 122, 0.18);
}

.answer-icon {
  width: 3.2rem;
  height: 3.2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  font-weight: 900;
}

.answer-button:nth-child(2) .answer-icon {
  background: var(--coral);
}

.answer-button:nth-child(3) .answer-icon {
  background: var(--navy);
}

.answer-button:nth-child(4) .answer-icon {
  background: var(--gold);
  color: var(--ink);
}

.answer-copy {
  display: block;
  line-height: 1.55;
  font-weight: 750;
}

.result-hero {
  display: grid;
  grid-template-columns: 6.6rem 1fr;
  gap: 1.1rem;
  align-items: center;
  margin-bottom: 1.1rem;
}

.result-badge {
  aspect-ratio: 1;
  border-radius: 50%;
  box-shadow: var(--shadow);
  background: conic-gradient(from 130deg, var(--teal), var(--mint), var(--gold), var(--teal));
}

.result h2 {
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 3.8rem);
  line-height: 1.05;
}

.result-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin: 0.2rem 0 0.75rem;
}

.result-labels span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  border-radius: 999px;
  padding: 0 0.82rem;
  font-size: 0.82rem;
  font-weight: 850;
}

#resultAttachment {
  background: var(--navy);
  color: #fffaf3;
}

#resultShareHint {
  background: rgba(20, 124, 122, 0.12);
  color: var(--teal);
}

#resultSubtitle {
  max-width: 620px;
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

.result-layout {
  display: grid;
  grid-template-columns: minmax(17rem, 0.78fr) minmax(22rem, 1.22fr);
  gap: 1rem;
}

.result-card,
.insights section,
.match-panel > div {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 44px rgba(24, 32, 42, 0.08);
}

.result-card {
  padding: 1rem;
}

.result-card__visual {
  position: relative;
  aspect-ratio: 1;
  height: auto;
  overflow: hidden;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #fff7ec;
}

.result-card__visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.result-card h3,
.match-panel h3 {
  margin: 0.85rem 0 0;
  font-size: 1.28rem;
  line-height: 1.28;
}

.result-card p,
.match-panel p,
.insights li {
  color: var(--muted);
  line-height: 1.5;
}

.score-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-top: 0.85rem;
}

.score-grid div {
  padding: 0.82rem;
  border-radius: 8px;
  background: #fff7ec;
}

.score-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 750;
}

.score-grid strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 1.28rem;
}

.insights {
  display: grid;
  gap: 0.75rem;
}

.insights section,
.match-panel > div {
  padding: 1rem;
}

.insights h3 {
  margin: 0;
  font-size: 1.12rem;
}

.insights ul {
  display: grid;
  gap: 0.5rem;
  margin: 0.7rem 0 0;
  padding: 0;
  list-style: none;
}

.insights li {
  position: relative;
  padding-left: 1.1rem;
}

.insights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.43rem;
  height: 0.43rem;
  border-radius: 50%;
  background: var(--coral);
}

.match-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.match-card {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 0.85rem;
  align-items: center;
}

.match-visual {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 255, 255, 0.8), rgba(143, 208, 189, 0.2) 56%),
    #edf8f4;
}

.match-visual--caution {
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 255, 255, 0.82), rgba(233, 95, 85, 0.14) 58%),
    #fff3ee;
}

.match-visual img {
  width: 96%;
  height: 96%;
  object-fit: contain;
  filter: drop-shadow(0 10px 16px rgba(24, 32, 42, 0.14));
}

.premium-panel {
  display: grid;
  grid-template-columns: minmax(18rem, 0.86fr) minmax(18rem, 1.14fr);
  gap: 1rem;
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 250, 243, 0.94), rgba(237, 248, 244, 0.86)),
    #fff;
  box-shadow: 0 14px 44px rgba(24, 32, 42, 0.08);
}

.premium-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.premium-panel h3 {
  margin: 0;
  font-size: 1.32rem;
}

.premium-panel h4 {
  margin: 0;
  font-size: 1.25rem;
}

.premium-panel p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.premium-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: auto;
  padding-top: 0.9rem;
}

.premium-grid {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.premium-grid article {
  min-height: 8rem;
  padding: 1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(20, 124, 122, 0.12);
}

.premium-grid strong,
.premium-grid span {
  display: block;
}

.premium-grid strong {
  font-size: 1rem;
}

.premium-grid span {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.55;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
}

.pricing-cards article {
  min-height: 7.4rem;
  padding: 0.9rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(24, 32, 42, 0.08);
}

.pricing-cards p {
  max-width: 22rem;
}

.pricing-cards .is-featured {
  border-color: rgba(233, 95, 85, 0.34);
  box-shadow: inset 0 0 0 2px rgba(233, 95, 85, 0.08);
}

.pricing-cards span {
  display: inline-flex;
  min-height: 1.8rem;
  align-items: center;
  border-radius: 999px;
  padding: 0 0.65rem;
  background: rgba(20, 124, 122, 0.11);
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
}

.pricing-cards strong {
  display: block;
  margin-top: 0.7rem;
  font-size: 1.55rem;
}

.report-preview {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(15rem, 0.6fr) minmax(20rem, 1.4fr);
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(20, 124, 122, 0.13);
}

.compare-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.compare-table div,
.premium-steps li {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(20, 124, 122, 0.12);
  padding: 1rem;
}

.compare-table span {
  display: block;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
}

.compare-table strong {
  display: block;
  margin-top: 0.35rem;
}

.premium-steps {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.premium-steps strong,
.premium-steps span {
  display: block;
}

.premium-steps span {
  margin-top: 0.45rem;
  color: var(--muted);
  line-height: 1.5;
}

.toast {
  margin: 0.9rem 0 0;
  color: var(--teal);
  font-weight: 800;
}

.share-url {
  display: grid;
  gap: 0.45rem;
  margin-top: 1rem;
  max-width: 760px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.share-url input {
  width: 100%;
  min-height: 3rem;
  border: 1px solid rgba(20, 124, 122, 0.2);
  border-radius: 8px;
  padding: 0 0.9rem;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  overflow: hidden;
  text-overflow: ellipsis;
}

.report-dialog {
  width: min(760px, calc(100% - 2rem));
  max-height: min(820px, calc(100% - 2rem));
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 28px 80px rgba(24, 32, 42, 0.24);
}

.report-dialog::backdrop {
  background: rgba(24, 32, 42, 0.44);
  backdrop-filter: blur(6px);
}

.report-dialog__shell {
  display: grid;
}

.report-dialog__header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: start;
  padding: 1.35rem;
  border-bottom: 1px solid rgba(20, 124, 122, 0.13);
}

.report-dialog__header h3 {
  margin: 0;
  font-size: 1.55rem;
}

.report-dialog__header p,
.report-profile p,
.report-modules p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.report-dialog__body {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
}

.report-profile {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1rem;
  align-items: center;
  border-radius: 8px;
  padding: 0.9rem;
  background: #fff7ec;
}

.report-profile img {
  width: 7rem;
  height: 7rem;
  object-fit: contain;
}

.report-profile span {
  display: block;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 850;
}

.report-profile strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 1.25rem;
}

.report-modules {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.report-modules article {
  min-height: 9rem;
  border: 1px solid rgba(20, 124, 122, 0.13);
  border-radius: 8px;
  padding: 0.9rem;
  background: rgba(237, 248, 244, 0.54);
}

.report-modules span {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 850;
}

.report-modules strong {
  display: block;
  margin-top: 0.35rem;
}

.report-field {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.report-field input,
.report-field select {
  width: 100%;
  min-height: 3rem;
  border: 1px solid rgba(20, 124, 122, 0.2);
  border-radius: 8px;
  padding: 0 0.9rem;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.report-dialog__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.report-confirm {
  margin: 0;
  border-radius: 8px;
  padding: 0.9rem 1rem;
  background: rgba(20, 124, 122, 0.11);
  color: var(--teal);
  font-weight: 800;
  line-height: 1.55;
}

.paid-report {
  display: grid;
  gap: 1rem;
  border-top: 1px solid rgba(20, 124, 122, 0.13);
  padding-top: 1rem;
}

.paid-report__header {
  border-radius: 8px;
  padding: 1rem;
  background: #fff7ec;
}

.paid-report__header span {
  display: block;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 850;
}

.paid-report__header h4 {
  margin: 0.25rem 0 0;
  font-size: 1.35rem;
}

.paid-report__header p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.paid-report__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.paid-report__grid article {
  border: 1px solid rgba(20, 124, 122, 0.13);
  border-radius: 8px;
  padding: 0.95rem;
  background: rgba(237, 248, 244, 0.52);
}

.paid-report__grid strong {
  display: block;
}

.paid-report__grid p,
.paid-report__grid ul {
  margin: 0.5rem 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.paid-report__grid ul {
  padding-left: 1.1rem;
}

@media (max-width: 860px) {
  .hero {
    min-height: 84vh;
    padding: 2rem 1rem;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(10, 21, 30, 0.32) 0%, rgba(10, 21, 30, 0.84) 58%, rgba(10, 21, 30, 0.9) 100%);
  }

  .type-strip,
  .answers,
  .result-layout,
  .match-panel,
  .premium-panel,
  .premium-grid,
  .pricing-cards,
  .report-preview,
  .compare-table,
  .premium-steps {
    grid-template-columns: 1fr;
  }

  .premium-actions {
    width: 100%;
  }

  .type-strip article {
    min-height: auto;
  }

  .quiz__top {
    grid-template-columns: 2.75rem 1fr auto;
  }

  .answer-button {
    min-height: 6.4rem;
  }

  .result-hero {
    grid-template-columns: 5.2rem 1fr;
  }

  .result-card__visual {
    height: auto;
  }

  .match-card,
  .report-profile,
  .report-modules,
  .paid-report__grid {
    grid-template-columns: 1fr;
  }

  .match-visual {
    width: 8.4rem;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 2.72rem;
  }

  .hero__actions,
  .result-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-button,
  .secondary-button,
  .ghost-link {
    width: 100%;
  }

  .question-scene {
    height: 8.8rem;
  }

  .scene-dot {
    width: 5rem;
    height: 5rem;
  }

  .scene-line {
    top: 4.6rem;
  }

  .scene-heart {
    top: 3.35rem;
    width: 2.5rem;
    height: 2.5rem;
    left: calc(50% - 1.25rem);
  }

  .answer-button {
    grid-template-columns: 2.8rem 1fr;
    padding: 0.9rem;
  }

  .answer-icon {
    width: 2.8rem;
    height: 2.8rem;
  }

  .score-grid {
    grid-template-columns: 1fr;
  }

  .report-dialog__actions {
    align-items: stretch;
    flex-direction: column;
  }
}
