* {
  box-sizing: border-box;
}

:root {
  --accent: #0f766e;
  --ink: #171717;
  --text: #242424;
  --muted: #66716b;
  --soft: #8a948e;
  --line: #dde5df;
  --paper: #fbfcfa;
  --canvas: #f4f7f3;
  --surface: #ffffff;
  --reward: #df5537;
  color: var(--ink);
  background: var(--canvas);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", sans-serif;
}

html {
  background: var(--canvas);
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  touch-action: manipulation;
}

body {
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(244, 247, 243, 0.94) 360px),
    var(--canvas);
  color: var(--text);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  touch-action: manipulation;
}

body.has-sheet {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
  touch-action: manipulation;
}

a,
[role="button"],
.reward-button,
.pay-button,
.reward-image-button,
.article-footer__like-button,
.amount-list button,
.custom-amount-button,
.custom-amount-close,
.custom-amount-submit,
.sheet-close {
  touch-action: manipulation;
}

img,
video,
iframe {
  max-width: 100%;
}

.home-hero {
  position: relative;
  min-height: clamp(300px, 45svh, 460px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 42px 20px 38px;
  background:
    linear-gradient(130deg, rgba(15, 29, 27, 0.96), rgba(31, 50, 43, 0.9)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 72px);
  color: #fffdf7;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.24));
  pointer-events: none;
}

.home-hero__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  opacity: 0.66;
}

.home-hero h1 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(42px, 13vw, 74px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

.home-hero p:last-child {
  max-width: 580px;
  margin: 18px 0 0;
  color: rgba(255, 253, 247, 0.84);
  font-size: clamp(15px, 2.8vw, 18px);
  line-height: 1.7;
}

.feed {
  width: min(100%, 760px);
  margin: -22px auto 0;
  padding: 0 16px 56px;
}

.feed-item {
  position: relative;
  display: grid;
  grid-template-columns: 126px 1fr;
  gap: 18px;
  min-height: 126px;
  margin-bottom: 12px;
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgba(24, 35, 29, 0.09);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.92);
  box-shadow: 0 10px 26px rgba(24, 35, 29, 0.06);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.feed-item:hover {
  border-color: rgba(15, 118, 110, 0.28);
  box-shadow: 0 16px 34px rgba(24, 35, 29, 0.1);
  transform: translateY(-1px);
}

.feed-item:focus-visible {
  outline: 3px solid rgba(15, 118, 110, 0.24);
  outline-offset: 3px;
}

.feed-item img,
.feed-item__placeholder {
  width: 126px;
  height: 98px;
  object-fit: cover;
  border-radius: 6px;
  background: #e2e8e3;
}

.feed-item__placeholder {
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: 38px;
  font-weight: 900;
}

.feed-item h2 {
  margin: 2px 0 0;
  color: var(--ink);
  font-size: clamp(18px, 4.6vw, 22px);
  line-height: 1.28;
  letter-spacing: 0;
}

.feed-item p {
  display: -webkit-box;
  margin: 10px 0 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.feed-item span {
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  color: var(--soft);
  font-size: 12px;
  font-weight: 700;
}

.article-shell {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 34px 20px 74px;
}

.back-link,
.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
}

.text-link {
  margin: 18px 0 0;
}

.article-cover {
  display: block;
  width: 100%;
  max-height: 480px;
  margin-bottom: 32px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(24, 35, 29, 0.13);
}

.article {
  background: transparent;
  padding: 0;
}

.article__header {
  padding-bottom: 0;
}

.article__header h1 {
  margin: 0;
  color: var(--ink);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.36;
  letter-spacing: 0;
  text-align: left;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin-top: 14px;
  color: var(--soft);
  font-size: 15px;
  line-height: 1.5;
}

.article-meta span {
  display: inline-flex;
  align-items: center;
}

.article-summary {
  margin: 24px 0 0;
  padding-left: 16px;
  border-left: 3px solid var(--accent);
  color: #4c5750;
  font-size: clamp(16px, 3.9vw, 18px);
  line-height: 1.78;
}

.article-body {
  margin-top: 28px;
  color: #222;
  font-size: clamp(16px, 4.2vw, 18px);
  line-height: 1.92;
  word-break: break-word;
}

.article-body h2,
.article-body h3,
.article-body h4 {
  margin: 38px 0 14px;
  color: var(--ink);
  line-height: 1.34;
  letter-spacing: 0;
}

.article-body h2 {
  font-size: 24px;
}

.article-body h3 {
  font-size: 21px;
}

.article-body h4 {
  font-size: 18px;
}

.article-body p {
  margin: 0 0 22px;
}

.article-body a {
  color: var(--accent);
  font-weight: 700;
  border-bottom: 1px solid rgba(15, 118, 110, 0.28);
}

.article-body blockquote {
  margin: 30px 0;
  padding: 8px 0 8px 18px;
  border-left: 3px solid #cbd7cf;
  color: #58625c;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.72), transparent);
}

.article-body figure {
  margin: 30px 0;
}

.article-body img,
.article-body video,
.article-body iframe {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 8px;
  background: #edf1ed;
}

.article-body iframe {
  aspect-ratio: 16 / 9;
}

.article-reward {
  margin-top: 52px;
  padding: 34px 20px 6px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.article-reward__label {
  margin: 0 0 16px;
  color: #4c5750;
  font-size: 15px;
  font-weight: 800;
}

.article-reward__copy {
  margin: 14px 0 0;
  color: var(--soft);
  font-size: 13px;
}

.article-reward--inline {
  margin-top: 26px;
  padding: 26px 0 12px;
  border-top: 0;
}

.article-reward--inline .article-reward__label {
  margin-bottom: 8px;
  color: #1f1f1f;
  font-size: clamp(22px, 6vw, 30px);
  line-height: 1.24;
}

.article-reward--inline .article-reward__copy {
  margin: 0 0 22px;
  color: #1f1f1f;
  font-size: clamp(17px, 4.8vw, 23px);
  font-weight: 800;
  line-height: 1.45;
}

.article-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
  color: var(--soft);
  font-size: 16px;
  line-height: 1.5;
}

.article-footer__like-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--soft);
  font: inherit;
}

.article-footer__like-button.is-liked {
  color: #607d9a;
}

.article-footer__like-icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
  color: #607d9a;
}

.article-footer__like-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.article-template--romance {
  --canvas: #ffffff;
  --paper: #ffffff;
  background: #ffffff;
}

.article-template--romance .article-shell {
  padding: 26px 20px 74px;
}

.article-template--romance .article-body {
  margin-top: 24px;
}

.article-template--romance .article-body figure {
  margin: 0;
}

.article-template--romance .article-body iframe,
.article-template--romance .article-body video {
  border-radius: 0;
  background: #111;
}

.article-template--mpnews {
  --canvas: #ffffff;
  --paper: #ffffff;
  background: #ffffff;
}

.article-template--mpnews .article-shell {
  width: min(100%, 720px);
  padding: 28px 18px 50px;
}

.article-template--mpnews .article__header h1 {
  font-size: 42px;
  font-weight: 400;
  line-height: 1.25;
}

.article-template--mpnews .article-meta {
  margin-top: 18px;
  color: #8c8c8c;
  font-size: 17px;
}

.article-template--mpnews .article-body {
  margin-top: 34px;
  font-size: 17px;
  line-height: 1.75;
}

.article-template--mpnews .article-body figure {
  margin: 0 0 26px;
}

.article-template--mpnews .article-body img,
.article-template--mpnews .article-body video,
.article-template--mpnews .article-body iframe {
  border-radius: 0;
}

.article-reward--image {
  margin: 8px 0 0;
  padding: 0;
  border-top: 0;
  text-align: left;
}

.reward-image-button {
  display: block;
  width: 100%;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.reward-image-button img {
  display: block;
  width: 100%;
  border-radius: 0;
  background: #ffffff;
}

.reward-image-button:hover {
  filter: none;
  transform: none;
  box-shadow: none;
}

.article-template--mpnews .reward-sheet__shade {
  background: rgba(18, 18, 18, 0.38);
  backdrop-filter: blur(4px);
}

.article-template--mpnews .reward-sheet__panel--mpnews {
  max-height: 88vh;
  max-height: 88svh;
  padding: 0 18px calc(26px + env(safe-area-inset-bottom));
  background: #ffffff;
  border-radius: 16px 16px 0 0;
}

.article-template--mpnews .reward-sheet__panel--mpnews .sheet-close {
  top: 14px;
  right: auto;
  left: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  background: rgba(255, 255, 255, 0.78);
  color: #111111;
  font-size: 36px;
  font-weight: 300;
}

.mpnews-reward-hero {
  height: 138px;
  margin: 0 -18px;
  border-bottom-right-radius: 92px;
  border-bottom-left-radius: 92px;
  background: linear-gradient(112deg, #ff1659 0%, #ff4a21 54%, #ffbd17 100%);
}

.mpnews-reward-avatar {
  display: block;
  width: 104px;
  height: 104px;
  margin: -52px auto 26px;
  border-radius: 999px;
  object-fit: cover;
  background: #f1f1f1;
}

.article-template--mpnews .reward-sheet__panel--mpnews h2 {
  max-width: none;
  margin: 0 0 22px;
  color: #111111;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
}

.article-template--mpnews .reward-sheet__panel--mpnews p {
  margin: 0 0 26px;
  color: #111111;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.42;
  text-align: center;
}

.article-template--mpnews .reward-sheet--mpnews .amount-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px 18px;
  margin: 0 6px 18px;
}

.article-template--mpnews .reward-sheet--mpnews .amount-list button {
  min-height: 74px;
  border: 2px solid #d72b78;
  border-radius: 8px;
  color: #111111;
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
  background: #ffffff;
  box-shadow: none;
}

.article-template--mpnews .reward-sheet--mpnews .amount-list button.active {
  border-color: #d72b78;
  color: #d72b78;
  background: #fff4f8;
  box-shadow: inset 0 0 0 2px #d72b78;
}

.article-template--mpnews .custom-amount-button {
  display: block;
  margin: 0 auto 18px;
  padding: 8px 14px;
  border: 0;
  background: transparent;
  color: #8d94c7;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}

.article-template--mpnews .reward-sheet__panel--mpnews .pay-button {
  min-height: 54px;
  margin-top: 0;
  background: #18bf62;
  font-size: 20px;
  font-weight: 500;
  box-shadow: none;
}

.article-template--mpnews .custom-amount-button:disabled {
  opacity: 0.55;
}

.article-template--mpnews .reward-sheet__panel--mpnews .mpnews-reward-note {
  margin: 18px 0 0;
  color: #c6c6c6;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
}

.custom-amount-modal {
  position: fixed;
  inset: 0;
  z-index: 4;
  display: none;
}

.custom-amount-modal.is-open {
  display: block;
}

.custom-amount-modal__shade {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
}

.custom-amount-dialog {
  position: fixed;
  top: 48%;
  left: 50%;
  width: min(360px, calc(100vw - 48px));
  margin: 0;
  padding: 0 18px 18px;
  border: 0;
  border-radius: 5px;
  background: #f7f7f7;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
  transform: translate(-50%, -50%);
}

.custom-amount-dialog h3 {
  display: grid;
  min-height: 60px;
  margin: 0 -18px;
  place-items: center;
  border-bottom: 1px solid #e4e4e4;
  color: #111111;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}

.custom-amount-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: #a8a8a8;
  font-size: 42px;
  font-weight: 300;
  line-height: 1;
}

.custom-amount-field {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 58px;
  margin: 20px 0 10px;
  padding: 0 14px;
  border: 1px solid #dedede;
  border-radius: 4px;
  background: #ffffff;
}

.custom-amount-field span {
  flex: 0 0 auto;
  color: #111111;
  font-size: 22px;
  font-weight: 400;
}

.custom-amount-field input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: #111111;
  font-size: 22px;
  line-height: 1.2;
}

.custom-amount-field input::placeholder {
  color: #b7b7b7;
}

.custom-amount-error {
  min-height: 18px;
  margin: 0 0 8px;
  color: #c92f2f;
  font-size: 13px;
  line-height: 18px;
  text-align: left;
}

.custom-amount-submit {
  display: grid;
  width: 100%;
  min-height: 52px;
  place-items: center;
  border: 0;
  border-radius: 4px;
  background: #18bf62;
  color: #ffffff;
  font-size: 24px;
  font-weight: 400;
}

.custom-amount-submit:disabled {
  opacity: 0.68;
}

.reward-button,
.pay-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--reward);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(223, 85, 55, 0.2);
  transition:
    filter 140ms ease,
    transform 140ms ease,
    box-shadow 140ms ease;
}

.reward-button:hover,
.pay-button:hover {
  filter: brightness(0.98);
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(223, 85, 55, 0.24);
}

.reward-button:focus-visible,
.pay-button:focus-visible,
.sheet-close:focus-visible,
.amount-list button:focus-visible,
.reward-image-button:focus-visible,
.article-footer__like-button:focus-visible,
.custom-amount-button:focus-visible,
.custom-amount-close:focus-visible,
.custom-amount-submit:focus-visible {
  outline: 3px solid rgba(223, 85, 55, 0.22);
  outline-offset: 3px;
}

.reward-button {
  width: 124px;
}

.pay-button {
  width: 100%;
  margin-top: 4px;
  border-radius: 8px;
  background: var(--accent);
  box-shadow: 0 14px 26px rgba(15, 118, 110, 0.2);
}

.reward-sheet {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0;
  z-index: 30;
  display: none;
}

.reward-sheet.is-open {
  display: block;
}

.reward-sheet__shade {
  position: absolute;
  inset: 0;
  background: rgba(18, 18, 18, 0.46);
  backdrop-filter: blur(8px);
}

.reward-sheet__panel {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  max-height: 84vh;
  max-height: 84svh;
  overflow: auto;
  padding: 24px 18px calc(24px + env(safe-area-inset-bottom));
  background: var(--paper);
  border-radius: 8px 8px 0 0;
  box-shadow: 0 -18px 42px rgba(24, 20, 17, 0.2);
  transform: translateY(0);
  animation: sheetIn 220ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.reward-sheet__panel h2 {
  max-width: calc(100% - 44px);
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.25;
}

.reward-sheet__panel p {
  margin: 8px 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.sheet-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #56615b;
  font-size: 22px;
  line-height: 1;
}

.platform-list,
.amount-list {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.platform-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.platform-list button,
.amount-list button {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
}

.platform-list button {
  display: grid;
  gap: 2px;
  padding: 10px;
  text-align: left;
}

.platform-list small {
  color: var(--soft);
  font-weight: 500;
}

.amount-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.amount-list--inline button {
  min-height: clamp(70px, 18vw, 92px);
  border: 2px solid var(--reward);
  border-radius: 8px;
  color: #101010;
  font-size: clamp(24px, 7vw, 34px);
  line-height: 1;
  background: #fff;
  box-shadow: none;
}

.amount-list--inline button.active {
  border-color: var(--reward);
  color: var(--reward);
  box-shadow: inset 0 0 0 2px var(--reward);
}

.pay-button--inline {
  max-width: 360px;
  margin: 8px auto 0;
  background: var(--reward);
  box-shadow: 0 12px 24px rgba(24, 24, 24, 0.12);
}

.platform-list .active,
.amount-list .active {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: inset 0 0 0 1px var(--accent);
}

.amount-list--inline .active {
  border-color: var(--reward);
  color: var(--reward);
  box-shadow: inset 0 0 0 2px var(--reward);
}

.pay-button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
  box-shadow: none;
}

.qrcode-box {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 14px;
  background: #eef3ee;
  border-radius: 8px;
}

.qrcode-box img {
  width: min(240px, 72vw);
  border-radius: 8px;
}

.pay-message {
  margin: 12px 0;
  padding: 12px 14px;
  border-radius: 8px;
  background: #eef4ff;
  color: #22416f;
  font-size: 14px;
}

.pay-message--success {
  background: #ebf8f2;
  color: #116149;
}

.pay-message--error {
  background: #fff0ed;
  color: #9f2d20;
}

.empty-state {
  padding: 54px 12px;
  text-align: center;
  color: var(--muted);
}

.empty-state--page {
  min-height: 70svh;
  display: grid;
  align-content: center;
  justify-items: center;
}

.empty-state h1,
.empty-state h2 {
  margin: 0 0 8px;
  color: var(--ink);
}

.muted {
  color: var(--soft);
}

@keyframes sheetIn {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}

@media (min-width: 720px) {
  .reward-sheet__panel {
    right: calc((100vw - 540px) / 2);
    left: calc((100vw - 540px) / 2);
    bottom: 18px;
    border: 1px solid rgba(255, 255, 255, 0.56);
    border-radius: 8px;
  }

  .article-template--mpnews .reward-sheet__panel--mpnews {
    right: calc((100vw - 430px) / 2);
    left: calc((100vw - 430px) / 2);
    max-height: min(760px, 88svh);
    border: 0;
    border-radius: 16px;
  }
}

@media (max-width: 620px) {
  .home-hero {
    min-height: 310px;
    padding: 36px 18px 44px;
  }

  .feed {
    margin-top: -18px;
    padding-inline: 12px;
  }

  .feed-item {
    grid-template-columns: 98px 1fr;
    gap: 13px;
    min-height: 112px;
    padding: 12px;
  }

  .feed-item img,
  .feed-item__placeholder {
    width: 98px;
    height: 86px;
  }

  .feed-item p {
    margin-top: 7px;
    -webkit-line-clamp: 1;
  }

  .article-shell {
    padding: 28px 18px 64px;
  }

  .article__header {
    padding-bottom: 0;
  }

  .article__header h1 {
    font-size: 30px;
    line-height: 1.42;
  }

  .article-template--mpnews .article__header h1 {
    font-size: 31px;
    line-height: 1.25;
  }

  .article-meta {
    font-size: 16px;
    margin-top: 12px;
  }

  .article-summary {
    padding-left: 14px;
  }

  .amount-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .article-template--romance .amount-list--inline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .article-template--mpnews .reward-sheet__panel--mpnews h2 {
    margin-bottom: 16px;
    font-size: 28px;
  }

  .article-template--mpnews .reward-sheet__panel--mpnews p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.35;
  }

  .article-template--mpnews .mpnews-reward-hero {
    height: 112px;
    border-bottom-right-radius: 74px;
    border-bottom-left-radius: 74px;
  }

  .article-template--mpnews .mpnews-reward-avatar {
    width: 92px;
    height: 92px;
    margin: -46px auto 18px;
  }

  .article-template--mpnews .reward-sheet--mpnews .amount-list {
    gap: 10px 12px;
    margin-bottom: 28px;
    margin-right: 0;
    margin-left: 0;
  }

  .article-template--mpnews .reward-sheet--mpnews .amount-list button {
    min-height: 62px;
    font-size: 30px;
  }

  .article-template--mpnews .reward-sheet__panel--mpnews .mpnews-reward-note {
    margin-top: 14px;
    font-size: 12px;
    line-height: 1.45;
    white-space: nowrap;
  }

  .article-template--mpnews .custom-amount-button {
    font-size: 15px;
  }
}
