@charset "UTF-8";

@font-face {
  font-family: "Pretendard";
  src: url("../fonts/Pretendard-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Pretendard";
  src: url("../fonts/Pretendard-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ONE Mobile POP";
  src:
    url("../fonts/ONE-Mobile-POP.woff") format("woff"),
    url("../fonts/ONE-Mobile-POP.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "KCC Ganpan";
  src: url("../fonts/KCC-Ganpan.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "KeinannMaruPOPjp";
  src: url("../fonts/KeinannMaruPOPjp.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "KeinanMugimaruJP";
  src: url("../fonts/Keinan Mugimaru JP.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Jalnan";
  src: url("../fonts/JalnanOTF00.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Jalnan Gothic";
  src: url("../fonts/JalnanGothic.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --hero-height: 768px;
  --hero-max-width: 1290px;
  --footer-height: 170px;
  --footer-bg: #1f1f1f;
  --text-white: #ffffff;
  --highlight: #fff183;
  --hero-key-bg: #17ba64;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #ffffff;
  color: var(--text-white);
  font-family: "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.landing {
  min-height: 100vh;
  background: #ffffff;
}

.hero {
  position: relative;
  min-height: max(var(--hero-height), calc(100vh - var(--footer-height)));
  background: var(--hero-key-bg);
  overflow: hidden;
}

.hero-key {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}

.hero-character {
  position: absolute;
  top: 50%;
  left: max(24px, calc(50% - (var(--hero-max-width) / 2) + 24px));
  width: clamp(320px, 25.52vw, 490px);
  height: auto;
  object-fit: contain;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, var(--hero-max-width));
  margin: 0 auto;
  min-height: max(var(--hero-height), calc(100vh - var(--footer-height)));
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 45px;
}

.headline-wrap {
  display: flex;
  flex-direction: column;
  width: min(100%, 497px);
  gap: 24px;
}

.headline {
  margin: 0;
  font-family: "ONE Mobile POP", "Pretendard", sans-serif;
  font-size: 42px;
  line-height: 42px;
  letter-spacing: -1.68px;
  text-shadow: 0 3px 8.1px #733617;
}

.highlight {
  color: var(--highlight);
}

.app-title {
  width: 404px;
  height: auto;
  filter: drop-shadow(0 4px 16.1px rgba(0, 0, 0, 0.56));
}

.subtext {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.53;
  letter-spacing: -0.81px;
  white-space: nowrap;
}

.store-links {
  display: flex;
  width: min(100%, 497px);
  justify-content: flex-start;
  align-items: center;
  gap: 13px;
}

.store-links a {
  display: inline-block;
  transition: transform 0.2s ease;
}

.store-links a:hover {
  transform: translateY(-1px);
}

.store-links img {
  width: 180px;
  height: 60px;
}

.footer {
  min-height: var(--footer-height);
  background: var(--footer-bg);
}

.footer-inner {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 30px 20px 20px;
  display: flex;
  align-items: flex-start;
  gap: 42px;
}

.footer-logo {
  width: 121px;
  opacity: 0.7;
  margin-top: 4px;
}

.footer-copy {
  margin: 0;
  opacity: 0.7;
  font-size: 12px;
  line-height: 1.53;
  letter-spacing: -0.54px;
  font-style: normal;
  white-space: nowrap;
}

.footer-copy a {
  color: inherit;
}

@media (max-width: 1200px) {
  .hero {
    min-height: 640px;
  }

  .hero-character {
    width: clamp(280px, 36vw, 400px);
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
  }

  .hero-content {
    min-height: 640px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
  }

  .hero-character {
    width: clamp(220px, 55vw, 320px);
    left: 20px;
    right: auto;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    opacity: 1;
  }

  .hero-key {
    object-position: 64% top;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.66) 0%, rgba(0, 0, 0, 0.24) 62%, rgba(0, 0, 0, 0.38) 100%);
  }

  .hero-content {
    min-height: auto;
    align-items: flex-start;
    padding: 96px 20px 72px;
    gap: 32px;
  }

  .headline {
    font-size: clamp(30px, 8vw, 42px);
    line-height: 1.06;
  }

  .app-title {
    width: min(404px, 92%);
  }

  .subtext {
    font-size: 16px;
    white-space: normal;
  }

  .store-links {
    flex-wrap: wrap;
    gap: 10px;
  }

  .store-links img {
    width: 164px;
    height: auto;
  }

  .footer {
    min-height: auto;
  }

  .footer-inner {
    padding: 34px 20px 28px;
    flex-direction: column;
    gap: 18px;
  }

  .footer-copy {
    white-space: normal;
  }
}

/* Page 5 / Japanese dollar landing */

.hero-jp-character {
  width: clamp(320px, 25.52vw, 490px);
}

.hero-jp-content {
  gap: 0;
}

.hero-jp-copy {
  width: min(100%, 497px);
  gap: 24px;
}

.page5-title {
  width: 484px;
  height: auto;
}

.page5-lower-copy {
  padding-left: 31px;
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.page5-subtext {
  font-weight: 500;
}

.page5-store-links {
  width: auto;
}

.page5-store-links img {
  width: 180px;
  height: 60px;
}

.footer-jp {
  min-height: var(--footer-height);
}

.footer-jp-inner {
  padding-top: 30px;
}

.footer-jp-copy {
  letter-spacing: 0;
}

@media (max-width: 768px) {
  .hero-jp {
    min-height: 830px;
  }

  .hero-jp-character {
    width: clamp(184px, 47vw, 230px);
    left: 104px;
    top: 530px;
  }

  .hero-jp-content {
    z-index: 2;
    min-height: 830px;
    padding-top: 64px;
    padding-bottom: 48px;
    justify-content: flex-start;
  }

  .hero-jp-copy {
    width: 100%;
  }

  .page5-title {
    width: min(484px, 96%);
  }

  .page5-lower-copy {
    padding-left: 0;
    gap: 305px;
  }

  .page5-store-links {
    gap: 10px;
  }

  .footer-jp {
    min-height: auto;
  }
}

/* Dollar mobile bridge */

.dollar-mobile-body {
  margin: 0;
  background: #ffffff;
  color: #ffffff;
  touch-action: pan-y;
  -webkit-text-size-adjust: 100%;
}

.dollar-mobile-body a {
  color: inherit;
  text-decoration: none;
}

.dollar-mobile-page {
  position: relative;
  width: 100%;
  max-width: 412px;
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background: #ffffff;
  color: #ffffff;
}

.dollar-mobile-hero {
  position: relative;
  width: 100%;
  height: min(213.333vw, 879px);
  overflow: hidden;
  background: #17ba64;
}

.dollar-mobile-hero-bg {
  position: absolute;
  top: 0;
  left: 50%;
  width: 554.13%;
  max-width: none;
  height: min(221.6vw, 913px);
  object-fit: cover;
  opacity: 0.2;
  transform: translateX(-50%);
  pointer-events: none;
}

.dollar-mobile-nav {
  position: relative;
  z-index: 2;
  height: min(20.267vw, 83px);
  padding: min(4.8vw, 20px) min(6.4vw, 26px) 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.dollar-mobile-logo-image {
  width: min(30.4vw, 125px);
  height: min(7.467vw, 31px);
  margin-top: min(1.6vw, 7px);
  object-fit: contain;
  filter: drop-shadow(0 2px 0 rgba(115, 54, 23, 0.5));
}

.dollar-mobile-logo-text {
  min-width: 114px;
  margin-top: 3px;
  color: #ffe958;
  font-size: 23px;
  font-weight: 700;
  line-height: 32px;
  text-shadow: 0 2px 0 rgba(115, 54, 23, 0.5);
  white-space: nowrap;
}

.dollar-mobile-cta {
  width: min(24.267vw, 100px);
  min-width: min(24.267vw, 100px);
  height: min(10.4vw, 43px);
  padding: 0 min(2.667vw, 11px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 52px;
  background: #2a2929;
  color: #ffffff;
  font-size: min(4vw, 16px);
  font-weight: 500;
  line-height: 15px;
  text-align: center;
  white-space: nowrap;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.dollar-mobile-cta:hover {
  background: #1f1f1f;
  transform: translateY(-1px);
}

.dollar-mobile-copy {
  position: relative;
  z-index: 1;
  width: 84.53%;
  margin: min(12vw, 49px) 0 0 7.73%;
}

.dollar-mobile-title {
  margin: 0;
  color: #ffffff;
  font-family: "ONE Mobile POP", "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  font-size: min(12.533vw, 52px);
  font-weight: 400;
  line-height: min(14.4vw, 59px);
  letter-spacing: 0;
  text-shadow: 0 3px 8.1px rgba(115, 54, 23, 0.1);
}

.dollar-mobile-title span {
  color: #ffea59;
}

.dollar-mobile-subtitle {
  margin: min(6.4vw, 26px) 0 0;
  color: #ffffff;
  font-size: min(4.267vw, 18px);
  font-weight: 400;
  line-height: 1.53;
  letter-spacing: 0;
}

.dollar-mobile-copy-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 84.53%;
  max-width: 317px;
  height: auto;
  margin: min(12vw, 49px) 0 0 7.73%;
}

.dollar-mobile-copy-title-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1590 / 1068;
  object-fit: cover;
}

.dollar-mobile-copy-rate {
  width: 83.596%;
  margin: min(6.4vw, 26px) 0 0 7.256%;
  color: #ffffff;
  font-size: min(4.267vw, 16px);
  font-weight: 400;
  line-height: 1.53;
  letter-spacing: 0;
  white-space: nowrap;
}

.dollar-mobile-key-object {
  position: absolute;
  z-index: 1;
  top: min(109.067vw, 449px);
  left: 3.2%;
  width: 81.6%;
  max-width: 336px;
  height: min(88.267vw, 364px);
  object-fit: contain;
  pointer-events: none;
}

.dollar-mobile-footer {
  width: 100%;
  min-height: min(71.467vw, 294px);
  padding: min(12.8vw, 53px) min(8vw, 33px) min(8.533vw, 35px);
  display: flex;
  flex-direction: column;
  gap: min(9.867vw, 41px);
  background: #1f1f1f;
}

.dollar-mobile-footer-logo {
  width: min(32.267vw, 133px);
  height: min(9.333vw, 38px);
  object-fit: contain;
  opacity: 0.7;
}

.dollar-mobile-footer address {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: min(3.2vw, 13px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.53;
  letter-spacing: 0;
}

.dollar-mobile-footer a {
  color: inherit;
}

/* Renewed Korean invite landing */

.index-renewal {
  background: #ffffff;
  color: #302f31;
}

.index-renewal p,
.index-renewal h1,
.index-renewal h2 {
  margin: 0;
}

.index-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 375 / 776;
  min-height: 776px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 32px 67px at 50% 68.7%, #f4f1de 0%, #f4e6a6 50%, #f4da6e 100%),
    #f4da6e;
}

.index-bg-pattern {
  position: absolute;
  top: -17.13%;
  left: -71.03%;
  width: 242.06%;
  max-width: none;
  height: 128.36%;
  object-fit: cover;
  opacity: 0.72;
  pointer-events: none;
}

.index-title-hero {
  position: absolute;
  z-index: 1;
  top: 48px;
  left: 50%;
  width: 90.4%;
  height: auto;
  aspect-ratio: 339 / 214;
  object-fit: contain;
  transform: translateX(-50%);
}

.index-hero-copy {
  position: absolute;
  z-index: 1;
  top: 274px;
  left: 50%;
  color: #96682d;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.8px;
  text-align: center;
  white-space: nowrap;
  transform: translateX(-50%);
}

.index-store-badges {
  position: absolute;
  z-index: 2;
  top: 346px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 8px;
  transform: translateX(-50%);
}

.index-store-badges a {
  display: block;
  transition: transform 0.2s ease;
}

.index-store-badges a:hover,
.index-footer-store a:hover {
  transform: translateY(-1px);
}

.index-badge-crop {
  position: relative;
  display: block;
  width: 143px;
  height: 42px;
  overflow: hidden;
}

.index-badge-crop img {
  position: absolute;
  left: 0;
  width: 100%;
  max-width: none;
  height: 227.18%;
  object-fit: cover;
}

.index-badge-crop.is-google img {
  top: -0.5%;
}

.index-badge-crop.is-apple img {
  top: -126.69%;
}

.index-key-hero {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 50%;
  width: 100%;
  max-width: none;
  height: auto;
  aspect-ratio: 375 / 351;
  object-fit: cover;
  object-position: top center;
  transform: translateX(-50%);
}

.index-invite-section,
.index-reward-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.index-invite-section {
  gap: 42px;
  padding: 42px 20px 24px;
  background: #f5f5f5;
}

.index-reward-section {
  gap: 42px;
  padding: 42px 20px;
  background: linear-gradient(180deg, #f4da6e 0%, #f4f1de 100%);
}

.index-section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.index-section-heading > p {
  color: #96682d;
  font-family: "KCC Ganpan", "Pretendard", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 25px;
}

.index-section-heading h1,
.index-section-heading h2 {
  margin: 0;
  display: block;
}

.index-heading-image {
  display: block;
  width: min(100%, 320px);
  height: auto;
  object-fit: contain;
}

.index-invite-heading-image {
  max-width: 330px;
  aspect-ratio: 872 / 394;
}

.index-gift-heading-image {
  max-width: 320px;
  aspect-ratio: 748 / 392;
}

.index-panda-gift {
  width: 305px;
  height: 149px;
  object-fit: cover;
}

.index-note {
  color: #656565;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.8px;
  text-align: center;
}

.index-steps {
  width: 100%;
  margin: 0;
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 7px 8px 4.95px rgba(0, 0, 0, 0.03);
  list-style: none;
}

.index-steps li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.index-step-icon {
  position: relative;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
}

.index-step-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.index-step-icon.is-app {
  overflow: hidden;
  border: 2px solid #232423;
  border-radius: 8px;
}

.index-step-icon.is-app img {
  border-radius: 8px;
}

.index-step-icon.is-invite {
  height: 70px;
  aspect-ratio: 27 / 35;
  overflow: hidden;
}

.index-step-icon.is-invite img {
  position: absolute;
  top: 0;
  left: -14.81%;
  width: 129.63%;
  max-width: none;
  height: 100%;
  object-fit: cover;
}

.index-step-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.index-step-copy em {
  color: #fdcd3f;
  font-family: "ONE Mobile POP", "Pretendard", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
}

.index-step-copy strong {
  color: #302f31;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  white-space: nowrap;
}

.index-rewards {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.index-hero-greeting {
  position: relative;
  z-index: 0;
  width: 244px;
  height: 180px;
  margin-bottom: -40px;
  object-fit: cover;
}

.index-reward-grid {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.index-reward-card {
  min-width: 0;
  min-height: 188px;
  padding: 12px 8px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 3px solid #dad1ca;
  border-radius: 12px;
  background: #ffffff;
}

.index-reward-card img {
  width: 102px;
  height: 102px;
  object-fit: cover;
}

.index-reward-card p {
  color: #656565;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: -0.7px;
  text-align: center;
  white-space: nowrap;
}

.index-reward-card strong {
  width: 100%;
  padding: 4px;
  border-radius: 6px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
}

.index-reward-card .is-cash {
  background: #28a69f;
}

.index-reward-card .is-store {
  background: #8860c5;
}

.index-reward-card .is-fnb {
  background: #e25797;
}

.index-reward-card .is-card {
  background: #3f93e9;
}

.index-note.is-reward {
  color: #96682d;
  white-space: nowrap;
}

.index-footer {
  width: 100%;
  padding: 48px 53px 48px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  background: #302f31;
  color: #ffffff;
}

.index-footer-logo {
  font-family: "ONE Mobile POP", "Pretendard", sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 28px;
  white-space: nowrap;
}

.index-footer-store,
.index-social-links,
.index-footer-links nav {
  display: flex;
  align-items: center;
}

.index-footer-store {
  gap: 12px;
}

.index-footer-store a {
  min-height: 40px;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 85px;
  background: #ffffff;
  color: #2a2929;
  transition: transform 0.2s ease;
}

.index-footer-store img {
  width: 21px;
  height: 24px;
  object-fit: cover;
}

.index-footer-store img.is-apple {
  width: 27px;
}

.index-footer-store span {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.64px;
  white-space: nowrap;
}

.index-social-links {
  gap: 16px;
}

.index-social-links a,
.index-social-links img {
  width: 48px;
  height: 48px;
}

.index-footer-links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: #ffffff;
  font-size: 12px;
  line-height: 20px;
}

.index-footer-links nav {
  gap: 8px;
  white-space: nowrap;
}

.index-footer-links a {
  font-weight: 700;
}

.index-footer-links span,
.index-footer-links p {
  font-weight: 400;
}

@media (max-width: 374px) {
  .index-hero {
    min-height: auto;
  }

  .index-title-hero {
    top: 12.8vw;
  }

  .index-hero-copy {
    top: 73.067vw;
    font-size: 4.267vw;
    line-height: 6.4vw;
  }

  .index-store-badges {
    top: 92.267vw;
  }

  .index-badge-crop {
    width: 38.133vw;
    height: 11.2vw;
  }

  .index-heading-image {
    width: min(100%, 88vw);
  }

  .index-panda-gift {
    width: 81.333vw;
    height: auto;
  }

  .index-reward-card p {
    font-size: 3.733vw;
  }

  .index-footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .index-footer-store {
    flex-wrap: wrap;
  }
}

.dollar-mobile-page-jp .dollar-mobile-nav {
  padding-right: min(5.867vw, 24px);
}

.dollar-mobile-hero-jp {
  height: min(219.733vw, 905px);
}

.dollar-mobile-page-jp .dollar-mobile-cta {
  width: min(30.133vw, 124px);
  min-width: min(30.133vw, 124px);
  font-size: min(4vw, 16px);
}

.dollar-mobile-logo-image-jp {
  width: min(21.867vw, 90px);
  height: min(6.4vw, 26px);
  margin-top: min(2.133vw, 9px);
  filter: none;
}

.dollar-mobile-copy-image-jp {
  width: min(84.533vw, 348px);
  max-width: 348px;
  height: auto;
  margin-top: min(12vw, 49px);
  margin-left: min(3.2vw, 13px);
}

.dollar-mobile-key-object-jp {
  top: min(126.133vw, 520px);
  left: min(3.2vw, 13px);
}

@media (max-width: 359px) {
  .dollar-mobile-nav {
    padding-left: 18px;
    padding-right: 18px;
  }

  .dollar-mobile-logo-image {
    width: 104px;
    height: auto;
  }

  .dollar-mobile-title {
    font-size: 42px;
    line-height: 49px;
  }

  .dollar-mobile-copy-image-jp {
    width: calc(100% - 24px);
    height: auto;
  }

  .dollar-mobile-footer {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.page5-renewal {
  background: #f5f5f5;
  color: #302f31;
}

.page5-renewal p,
.page5-renewal h1,
.page5-renewal h2 {
  margin: 0;
}

.page5-hero {
  position: relative;
  width: 100%;
  height: 754px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 18% 7% at 50% 69%, #f4f1de 0%, #f4e6a6 50%, #f4da6e 100%),
    #f4da6e;
}

.page5-hero-pattern {
  position: absolute;
  top: -17.13%;
  left: -71.03%;
  width: 242.06%;
  height: 128.36%;
  max-width: none;
  object-fit: cover;
  opacity: 0.72;
  pointer-events: none;
}

.page5-hero-copy {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, 318px);
  margin: 69px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page5-title-image {
  width: min(74.133vw, 305px);
  height: auto;
  aspect-ratio: 278 / 139;
  object-fit: contain;
}

.page5-hero-lead {
  margin-top: 15px;
  color: #96682d;
  font-family: "KeinanMugimaruJP", "Pretendard", "Apple SD Gothic Neo", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  text-align: center;
}

.page5-store-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.page5-hero-copy .page5-store-buttons {
  width: 100%;
  margin-top: 15px;
  margin-bottom: 45px;
}

.page5-store-button {
  min-width: 137px;
  height: 40px;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 43px;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.64px;
  text-align: center;
  white-space: nowrap;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.page5-store-button:hover {
  transform: translateY(-1px);
}

.page5-store-button.is-dark {
  background: rgba(54, 53, 53, 0.98);
  color: #ffffff;
  backdrop-filter: blur(4.2px);
}

.page5-store-button.is-light {
  background: #ffffff;
  color: #2a2929;
}

.page5-store-button img {
  width: 21px;
  height: 24px;
  object-fit: contain;
}

.page5-store-button img.is-apple {
  width: 27px;
}

.page5-hero-key {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 375 / 351;
  max-width: none;
  object-fit: cover;
  transform: translateX(-50%);
  pointer-events: none;
}

.page5-invite-section,
.page5-gift-section {
  width: 100%;
  padding: 42px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.page5-invite-section {
  background: #f5f5f5;
}

.page5-gift-section {
  padding-bottom: 42px;
  gap: 42px;
  background: linear-gradient(180deg, #f4da6e 0%, #f4f1de 100%);
}

.page5-section-heading {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.page5-section-heading > p {
  color: #96682d;
  font-family: "KeinanMugimaruJP", "Pretendard", "Apple SD Gothic Neo", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
}

.page5-section-heading h1,
.page5-section-heading h2 {
  width: 100%;
  display: flex;
  justify-content: center;
}

.page5-heading-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.page5-invite-heading-image {
  max-width: 305px;
  aspect-ratio: 885 / 419;
}

.page5-gift-heading-image {
  max-width: 320px;
  aspect-ratio: 898 / 360;
}

.page5-panda-gift {
  width: 305px;
  height: 149px;
  object-fit: contain;
}

.page5-note {
  width: 100%;
  color: #3b3b3b;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
}

.page5-invite-steps {
  width: 100%;
  margin: 0;
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 7px 8px 4.95px rgba(0, 0, 0, 0.03);
  list-style: none;
}

.page5-invite-steps li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.page5-step-icon {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  object-fit: contain;
}

.page5-step-icon.is-invite {
  position: relative;
  width: 54px;
  height: 70px;
  flex-basis: 54px;
  aspect-ratio: 27 / 35;
  overflow: hidden;
}

.page5-step-icon.is-invite img {
  position: absolute;
  top: 0;
  left: -14.81%;
  width: 129.63%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.page5-step-icon.is-app {
  border: 2px solid #232423;
  border-radius: 8px;
}

.page5-invite-steps span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.page5-invite-steps em {
  color: #fdcd3f;
  font-family: "KeinannMaruPOPjp", "ONE Mobile POP", "Jalnan Gothic", "Pretendard", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.8px;
}

.page5-invite-steps strong {
  color: #302f31;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
}

.page5-gifts {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page5-greeting {
  position: relative;
  z-index: 0;
  width: 244px;
  height: 180px;
  margin-bottom: -40px;
  object-fit: contain;
}

.page5-gift-grid {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.page5-gift-card {
  min-width: 0;
  padding: 12px 8px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 3px solid #dad1ca;
  border-radius: 12px;
  background: #ffffff;
}

.page5-card-top {
  width: 33px;
  height: 10px;
  object-fit: contain;
}

.page5-gift-image {
  width: 100%;
  aspect-ratio: 129 / 105;
  object-fit: contain;
}

.page5-gift-card strong {
  width: 100%;
  min-height: 28px;
  padding: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  white-space: nowrap;
}

.page5-gift-card .is-amazon {
  background: #ffaa0b;
}

.page5-gift-card .is-aupay {
  background: #fe6a00;
}

.page5-gift-card .is-quopay {
  background: #0079c7;
}

.page5-footer {
  width: 100%;
  padding: 48px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  background: #302f31;
  color: #ffffff;
}

.page5-footer-logo {
  color: #ffffff;
  font-family: "KeinannMaruPOPjp", "ONE Mobile POP", "Jalnan Gothic", "Pretendard", sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 28px;
  white-space: nowrap;
}

.page5-footer .page5-store-buttons {
  justify-content: flex-start;
}

.page5-footer .page5-store-button {
  min-width: 137px;
}

.page5-social-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.page5-social-links a,
.page5-social-links img {
  width: 48px;
  height: 48px;
}

.page5-footer-links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: #ffffff;
  font-family: "Pretendard", "Apple SD Gothic Neo", sans-serif;
  font-size: 12px;
  line-height: 20px;
}

.page5-footer-links nav {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  white-space: nowrap;
}

.page5-footer-links a {
  font-weight: 700;
}

.page5-footer-links p {
  font-weight: 400;
}

@media (max-width: 359px) {
  .page5-hero {
    height: 700px;
  }

  .page5-hero-copy {
    margin-top: 52px;
  }

  .page5-title-image {
    width: 252px;
    height: auto;
  }

  .page5-store-buttons {
    gap: 6px;
  }

  .page5-store-button {
    min-width: 130px;
    padding-left: 12px;
    padding-right: 12px;
    gap: 8px;
    font-size: 15px;
  }

  .page5-section-heading h1 {
    font-size: 52px;
    line-height: 54px;
  }

  .page5-section-heading h2 {
    font-size: 47px;
    line-height: 49px;
  }

  .page5-invite-section,
  .page5-gift-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .page5-invite-steps {
    padding-left: 16px;
    padding-right: 16px;
  }

  .page5-gift-card strong {
    font-size: 12px;
  }

  .page5-footer {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* Page 2 */

.hero-two {
  position: relative;
  min-height: max(768px, calc(100vh - var(--footer-height)));
  background: linear-gradient(180deg, #19191c 15.385%, #1c232d 100%);
  overflow: hidden;
}

.hero-two-key {
  position: absolute;
  top: 50%;
  right: clamp(42px, calc(20.83vw - 58px), 320px);
  width: 552px;
  height: 529px;
  object-fit: contain;
  transform: translateY(-50%);
}

.hero-two-content {
  position: relative;
  z-index: 1;
  width: min(100%, 1280px);
  margin: 0 auto;
  min-height: max(768px, calc(100vh - var(--footer-height)));
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 45px;
}

.hero-two-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.hero-two-kicker {
  margin: 0;
  color: #78b3ff;
  font-family: "Jalnan Gothic", "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: -1.2px;
  line-height: 30px;
}

.hero-two-title {
  margin: 0;
  color: #ffffff;
  font-family: "Jalnan", "Jalnan Gothic", sans-serif;
  font-size: 96px;
  font-weight: 700;
  line-height: 100px;
  letter-spacing: 0;
}

.hero-two-sub {
  margin: 0;
  color: #ffffff;
  font-family: "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.53;
  letter-spacing: -0.81px;
  white-space: nowrap;
}

.footer-two {
  background: #19191c;
}

/* Page 3 */

.hero-three {
  position: relative;
  min-height: max(768px, calc(100vh - var(--footer-height)));
  background: #242431;
  background-image: url("../img/page3-bg.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  overflow: hidden;
}

.hero-three-overlay {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.08) 52%, rgba(0, 0, 0, 0.14) 100%);
}

.hero-three-content {
  position: relative;
  z-index: 1;
  width: min(100%, 1280px);
  margin: 0 auto;
  min-height: max(768px, calc(100vh - var(--footer-height)));
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 45px;
}

.hero-three-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.hero-three-kicker {
  margin: 0;
  color: #ffffff;
  font-family: "Jalnan Gothic", "Pretendard", sans-serif;
  font-size: 34px;
  letter-spacing: -1.36px;
  line-height: 30px;
}

.hero-three-title {
  margin: 0;
  font-family: "Jalnan Gothic", "Pretendard", sans-serif;
}

.gradient-line {
  display: block;
  font-size: 60px;
  letter-spacing: -2.4px;
  background: linear-gradient(180deg, #ffffff 0%, #fff3d8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gradient-line.big {
  margin-top: 16px;
  font-size: 77px;
  letter-spacing: -3.08px;
}

.hero-three-sub {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.53;
  letter-spacing: -0.81px;
}

.footer-three {
  background: #242431;
}

@media (max-width: 1400px) {
  .hero-two-key {
    right: clamp(18px, 8vw, 120px);
    width: clamp(380px, 35vw, 552px);
    height: auto;
    top: 50%;
    transform: translateY(-50%);
  }
}

@media (max-width: 1024px) {
  .hero-two,
  .hero-three,
  .hero-two-content,
  .hero-three-content {
    min-height: 680px;
  }

  .hero-two-content,
  .hero-three-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-two-title {
    font-size: 82px;
    line-height: 88px;
  }

  .gradient-line {
    font-size: 54px;
  }

  .gradient-line.big {
    font-size: 66px;
  }
}

@media (max-width: 768px) {
  .hero-two,
  .hero-three,
  .hero-two-content,
  .hero-three-content {
    min-height: auto;
  }

  .hero-two-content,
  .hero-three-content {
    padding: 96px 20px 72px;
    gap: 32px;
  }

  .hero-two {
    min-height: 620px;
  }

  .hero-two-content {
    min-height: 620px;
    padding-right: 34vw;
  }

  .hero-two-key {
    position: absolute;
    top: 50%;
    right: -10vw;
    bottom: auto;
    width: min(72vw, 360px);
    height: auto;
    margin: 0;
    transform: translateY(-50%);
  }

  .hero-two-title {
    font-size: clamp(58px, 18vw, 96px);
    line-height: 1.05;
  }

  .hero-two-kicker {
    font-size: clamp(24px, 6.2vw, 30px);
  }

  .hero-two-sub,
  .hero-three-sub {
    font-size: 16px;
    white-space: normal;
  }

  .hero-three {
    background-position: 63% top;
  }

  .hero-three-kicker {
    font-size: clamp(26px, 6.8vw, 34px);
  }

  .gradient-line {
    font-size: clamp(42px, 11.5vw, 60px);
  }

  .gradient-line.big {
    margin-top: 8px;
    font-size: clamp(52px, 13.5vw, 77px);
  }
}

/* Page 4 / Review mobile screens */

.gold-mobile-body {
  background: #ffffff;
  color: #2a2929;
  touch-action: pan-y;
  -webkit-text-size-adjust: 100%;
}

.gold-mobile-body a {
  color: inherit;
  text-decoration: none;
}

.gold-mobile-page {
  position: relative;
  width: 100%;
  max-width: 412px;
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background: #ffffff;
  color: #2a2929;
}

.gold-mobile-nav {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 69px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gold-back-button {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.gold-home-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 16px 20px 16px;
  background: linear-gradient(180deg, #e3f3ff 0%, #f4f9ff 47%, #ffffff 100%);
}

.gold-home-copy {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gold-section-kicker {
  margin: 0;
  color: #3b88ed;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
}

.gold-home-copy h1 {
  margin: 0;
  color: #2a2929;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0;
}

.gold-home-visual {
  width: 221px;
  height: 210px;
  object-fit: contain;
}

.gold-primary-button {
  width: 100%;
  height: 54px;
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #3b88ed;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 0;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.gold-mobile-body .gold-primary-button {
  color: #ffffff;
}

.gold-primary-button:hover {
  background: #2f7fe3;
  transform: translateY(-1px);
}

.gold-preview-section {
  width: 100%;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gold-section-heading {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gold-section-heading h2 {
  margin: 0;
  color: #2a2929;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0;
}

.gold-preview-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 8px;
}

.gold-more-reviews-button {
  width: auto;
  min-height: 20px;
  margin-top: 4px;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #666666;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0;
}

.gold-more-reviews-button::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 10px;
  border: solid currentColor;
  border-width: 0 1px 1px 0;
  transform: rotate(-45deg);
}

.gold-preview-card {
  width: 100%;
  min-height: 78px;
  padding: 12px 0 12px 12px;
  display: flex;
  align-items: center;
  gap: 13px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 4px 6.95px rgba(0, 0, 0, 0.04);
}

.gold-preview-main {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gold-review-profile {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gold-review-avatar {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 36px;
  background: #e4e6ee;
}

.gold-review-avatar img {
  width: 27px;
  height: 24px;
  object-fit: contain;
}

.gold-review-meta {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

.gold-review-meta strong {
  color: #2a2929;
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0;
}

.gold-review-meta span {
  max-width: 210px;
  overflow: hidden;
  color: #666666;
  font-size: 11px;
  font-weight: 400;
  line-height: 12px;
  letter-spacing: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gold-preview-text {
  display: block;
  width: 100%;
  overflow: hidden;
  color: #2a2929;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gold-preview-side {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 4px;
}

.gold-preview-thumb {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  object-fit: cover;
}

.gold-preview-arrow {
  position: relative;
  width: 24px;
  height: 24px;
  color: #2a2929;
}

.gold-preview-arrow::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 8px;
  width: 6px;
  height: 6px;
  border: solid currentColor;
  border-width: 0 1px 1px 0;
  transform: rotate(-45deg);
}

.gold-skeleton-card {
  pointer-events: none;
}

.gold-skeleton {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 999px;
  background: #edf1f6;
}

.gold-skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.72) 48%, rgba(255, 255, 255, 0) 100%);
  animation: gold-skeleton-shimmer 1.2s ease-in-out infinite;
}

.gold-skeleton-avatar {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
}

.gold-skeleton-line {
  width: 100%;
  height: 12px;
}

.gold-skeleton-line.is-short {
  width: 64px;
}

.gold-skeleton-line.is-medium {
  width: 128px;
}

.gold-skeleton-line.is-wide {
  width: 82%;
}

.gold-skeleton-line.is-date {
  width: 72px;
}

.gold-skeleton-thumb {
  width: 54px;
  height: 54px;
  border-radius: 8px;
}

.gold-skeleton-photo {
  width: 169px;
  height: 169px;
  border-radius: 8px;
}

.gold-skeleton-pill {
  width: 74px;
  height: 30px;
}

@keyframes gold-skeleton-shimmer {
  100% {
    transform: translateX(100%);
  }
}

.gold-services-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding: 30px 16px 48px;
}

.gold-service-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gold-service-card {
  position: relative;
  width: 100%;
  height: 120px;
  padding: 24px 16px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 20px;
  background: #2a2929;
}

.gold-service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.gold-service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gold-service-card.is-crop-top img {
  height: 312%;
  top: -49%;
}

.gold-service-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  letter-spacing: 0;
}

.gold-mobile-footer {
  width: 100%;
  min-height: 288px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  background: #2a2929;
}

.gold-mobile-logo {
  width: 62px;
  height: 20px;
}

.gold-mobile-footer address {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.53;
  letter-spacing: 0;
}

.gold-review-page {
  background: #ffffff;
}

.gold-review-appbar {
  width: 100%;
  height: 54px;
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
}

.gold-review-appbar .gold-back-button {
  justify-content: center;
}

.gold-review-appbar h1 {
  margin: 0;
  color: #2a2929;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  text-align: left;
  letter-spacing: 0;
}

.gold-review-content {
  width: 100%;
  padding: 0px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gold-review-content h2 {
  margin: 0;
  color: #2a2929;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0;
}

.gold-review-note {
  width: 100%;
  min-height: 44px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px dashed #eae6e6;
  border-radius: 12px;
}

.gold-review-note img {
  width: 16px;
  height: 16px;
}

.gold-review-note p {
  margin: 0;
  color: #666666;
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0;
  white-space: nowrap;
}

.gold-review-list {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.gold-review-item {
  width: 100%;
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-bottom: 1px solid #eae6e6;
}

.gold-review-body {
  margin: 0;
  color: #2a2929;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0;
  white-space: pre-line;
}

.gold-review-photo {
  width: 169px;
  height: 169px;
  object-fit: cover;
}

.gold-review-foot {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gold-review-foot time {
  color: #666666;
  font-size: 11px;
  font-weight: 400;
  line-height: 12px;
  letter-spacing: 0;
}

.gold-like-button {
  min-height: 30px;
  padding: 4px 9px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #eae6e6;
  border-radius: 42px;
  background: #ffffff;
  color: #666666;
  font: inherit;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0;
  cursor: pointer;
}

.gold-like-button.is-active {
  border-color: #2a2929;
  background: #2a2929;
  color: #ffffff;
}

.gold-like-button img {
  width: 12px;
  height: 12px;
}

.gold-review-empty {
  margin: 0;
  padding: 16px 0;
  color: #666666;
  font-size: 14px;
  line-height: 22px;
}

@media (max-width: 359px) {
  .gold-home-copy h1 {
    font-size: 25px;
  }

  .gold-review-note p {
    white-space: normal;
  }

  .gold-service-card h3 {
    font-size: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gold-skeleton::after {
    animation: none;
  }
}
