:root {
  --yhic-navy: #081a2c;
  --yhic-panel: #10263b;
  --yhic-panel-2: #162f47;
  --yhic-blue: #1769ff;
  --yhic-blue-soft: #72a6ff;
  --yhic-text: #f5f8fc;
  --yhic-muted: #b9c8d6;
  --yhic-line: rgba(148, 177, 204, .22);
}

.yhic-reader-progress {
  position: fixed;
  z-index: 9998;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  overflow: hidden;
  pointer-events: none;
  background: rgba(4, 13, 22, .45);
}

body:has(.yh-reading-progress) .yhic-reader-progress {
  display: none;
}

.yhic-reader-progress > span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--yhic-blue), var(--yhic-blue-soft));
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.yhic-insider-actions {
  position: fixed;
  z-index: 9990;
  right: 18px;
  bottom: 18px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity .22s ease, transform .22s ease;
}

.yhic-insider-actions.is-deferred,
.yhic-insider-actions.is-context-hidden {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

.yhic-points-pill {
  display: flex !important;
  position: static;
  width: auto !important;
  min-width: 186px;
  max-width: min(280px, calc(100vw - 36px));
  gap: 9px;
  align-items: center;
  min-height: 48px;
  padding: 7px 13px 7px 7px;
  color: var(--yhic-text);
  font: inherit;
  text-align: left;
  cursor: pointer;
  background: rgba(8, 26, 44, .96);
  border: 1px solid rgba(105, 157, 255, .45);
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .28);
  backdrop-filter: blur(12px);
  appearance: none;
}

.yhic-points-pill[hidden],
.yhic-drawer[hidden],
.yhic-article-box[hidden],
.yhic-article-box .yhic-button[hidden] {
  display: none !important;
}

.yhic-points-pill__copy {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
}

.yhic-points-pill:hover,
.yhic-points-pill:focus-visible {
  border-color: var(--yhic-blue-soft);
  transform: translateY(-1px);
  outline: 3px solid rgba(114, 166, 255, .2);
  outline-offset: 2px;
}

.yhic-points-pill__mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .05em;
  background: var(--yhic-blue);
  border-radius: 50%;
}

.yhic-points-pill strong,
.yhic-points-pill small {
  display: block;
  line-height: 1.1;
}

.yhic-points-pill strong {
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
}

.yhic-points-pill small {
  margin-top: 3px;
  color: var(--yhic-muted);
  font-size: 10px;
}

.yhic-toast {
  position: fixed;
  z-index: 10001;
  right: 18px;
  bottom: 82px;
  width: min(360px, calc(100vw - 36px));
  box-sizing: border-box;
  padding: 17px 46px 17px 18px;
  color: var(--yhic-text);
  background: var(--yhic-panel);
  border: 1px solid var(--yhic-line);
  border-top: 3px solid var(--yhic-blue);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .34);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .2s ease, transform .2s ease;
}

.yhic-toast:not(.is-visible) {
  pointer-events: none;
}

.yhic-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.yhic-toast__copy {
  font-size: 14px;
  font-weight: 750;
  line-height: 1.4;
}

.yhic-toast__action {
  margin-top: 11px;
  padding: 8px 12px;
  color: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  background: var(--yhic-blue);
  border: 0;
  border-radius: 4px;
}

.yhic-turnstile {
  min-height: 65px;
  margin: 4px 0 12px;
}

.yhic-text-button {
  width: 100%;
  margin-top: 10px;
  padding: 8px;
  color: var(--yhic-blue-soft);
  font: inherit;
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
  background: transparent;
  border: 0;
}

.yhic-toast__close {
  position: absolute;
  top: 8px;
  right: 9px;
  width: 30px;
  height: 30px;
  color: var(--yhic-muted);
  font: inherit;
  font-size: 22px;
  cursor: pointer;
  background: transparent;
  border: 0;
}

.yhic-drawer {
  position: fixed;
  z-index: 100200;
  inset: 0;
  visibility: hidden;
  pointer-events: none;
  max-width: 100vw;
}

.yhic-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}

.yhic-drawer__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: rgba(2, 9, 16, .74);
  border: 0;
  opacity: 0;
  transition: opacity .22s ease;
}

.yhic-drawer.is-open .yhic-drawer__backdrop {
  opacity: 1;
}

.yhic-drawer__panel {
  box-sizing: border-box;
  position: absolute;
  top: 0;
  right: 0;
  width: min(460px, 100%);
  height: 100%;
  padding: 42px 30px 34px;
  overflow-y: auto;
  overscroll-behavior: contain;
  color: var(--yhic-text);
  background: var(--yhic-navy);
  border-left: 1px solid var(--yhic-line);
  box-shadow: -20px 0 60px rgba(0, 0, 0, .34);
  transform: translateX(100%);
  transition: transform .24s ease;
}

.yhic-drawer.is-open .yhic-drawer__panel {
  transform: translateX(0);
}

.yhic-drawer__panel h2 {
  margin: 7px 0 10px;
  color: var(--yhic-text);
  font-size: clamp(27px, 5vw, 38px);
  line-height: 1.04;
}

.yhic-drawer__intro {
  margin: 0 42px 22px 0;
  color: var(--yhic-muted);
  font-size: 14px;
  line-height: 1.5;
}

.yhic-drawer__close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 38px;
  height: 38px;
  color: var(--yhic-text);
  font: inherit;
  font-size: 28px;
  cursor: pointer;
  background: transparent;
  border: 1px solid var(--yhic-line);
  border-radius: 50%;
}

.yhic-drawer__close:hover,
.yhic-drawer__close:focus-visible {
  color: #fff;
  background: var(--yhic-blue);
  border-color: var(--yhic-blue-soft);
  outline: 3px solid rgba(114, 166, 255, .25);
  outline-offset: 2px;
}

body.yhic-drawer-open {
  overflow: hidden;
}

.yhic-eyebrow {
  margin: 0;
  color: var(--yhic-blue-soft);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  line-height: 1.2;
}

.yhic-account-notice {
  margin: 0 0 24px;
  padding: 14px 16px;
  color: var(--yhic-text);
  background: var(--yhic-panel);
  border-left: 4px solid var(--yhic-blue);
  border-radius: 5px;
}

.yhic-account-notice.is-error {
  border-left-color: #e05d68;
}

.yhic-auth__tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 20px;
  padding: 4px;
  background: rgba(255, 255, 255, .05);
  border-radius: 7px;
}

.yhic-auth__tabs button {
  padding: 10px;
  color: var(--yhic-muted);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  background: transparent;
  border: 0;
  border-radius: 5px;
}

.yhic-auth__tabs button.is-active {
  color: #fff;
  background: var(--yhic-blue);
}

.yhic-auth__tabs button:only-child {
  grid-column: 1 / -1;
}

.yhic-form {
  display: none;
}

.yhic-form.is-active {
  display: grid;
  gap: 14px;
}

.yhic-form label > span {
  display: block;
  margin-bottom: 6px;
  color: var(--yhic-text);
  font-size: 12px;
  font-weight: 800;
}

.yhic-form label em {
  color: var(--yhic-muted);
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
}

.yhic-form input[type="text"],
.yhic-form input[type="email"],
.yhic-form input[type="password"] {
  box-sizing: border-box;
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--yhic-text);
  font: inherit;
  font-size: 15px;
  background: rgba(255, 255, 255, .055);
  border: 1px solid var(--yhic-line);
  border-radius: 5px;
}

.yhic-form input:focus {
  border-color: var(--yhic-blue-soft);
  outline: 2px solid rgba(23, 105, 255, .25);
}

.yhic-password-field {
  position: relative;
  display: block;
}

.yhic-password-field input {
  padding-right: 68px !important;
}

.yhic-password-field button {
  position: absolute;
  top: 50%;
  right: 7px;
  min-width: 52px;
  padding: 7px 8px;
  color: var(--yhic-blue-soft);
  font: inherit;
  font-size: 11px;
  font-weight: 850;
  cursor: pointer;
  background: rgba(8, 26, 44, .92);
  border: 1px solid var(--yhic-line);
  border-radius: 4px;
  transform: translateY(-50%);
}

.yhic-password-field button:hover,
.yhic-password-field button:focus-visible {
  color: #fff;
  border-color: var(--yhic-blue-soft);
  outline: 2px solid rgba(23, 105, 255, .25);
}

.yhic-check {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 9px;
  align-items: start;
}

.yhic-check input {
  margin-top: 3px;
}

.yhic-check > span {
  color: var(--yhic-muted) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  line-height: 1.45;
}

.yhic-form__reward {
  margin: 0;
  padding: 11px 12px;
  color: #dce9ff;
  font-size: 13px;
  font-weight: 750;
  background: rgba(23, 105, 255, .13);
  border-left: 3px solid var(--yhic-blue);
}

.yhic-form__message {
  min-height: 18px;
  margin: 0;
  color: #ffb1b1;
  font-size: 12px;
  font-weight: 700;
}

.yhic-form__message.is-success {
  color: #8ee0b0;
}

.yhic-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.yhic-button {
  display: inline-flex;
  min-height: 44px;
  padding: 11px 17px;
  align-items: center;
  justify-content: center;
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  background: var(--yhic-blue);
  border: 0;
  border-radius: 5px;
}

.yhic-button:hover {
  color: #fff;
  background: #0c58df;
}

.yhic-button:disabled {
  cursor: wait;
  opacity: .65;
}

.yhic-newsletter-cta__title {
  margin: 5px 0 10px;
  color: #fff;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: 1.08;
}

.yhic-newsletter-cta__copy {
  margin: 0 0 18px !important;
  color: #d8e5f1;
  font-size: 14px;
  line-height: 1.5;
}

.yhic-newsletter-cta .yhic-button {
  width: 100%;
  min-height: 50px;
  background: #fff;
  color: var(--yhic-navy);
}

.yhic-newsletter-cta > [data-yhic-mailerlite-source][hidden] {
  display: none !important;
}

.yhic-newsletter-cta__content {
  display: contents;
}

.yhic-newsletter-cta .yhic-button:hover,
.yhic-newsletter-cta .yhic-button:focus-visible {
  color: var(--yhic-navy);
  background: #dce8ff;
}

.yhic-article-box {
  display: flex;
  gap: 28px;
  width: 100%;
  max-width: 100%;
  margin: 34px 0 10px;
  padding: 20px 22px;
  box-sizing: border-box;
  align-items: center;
  justify-content: space-between;
  color: var(--yhic-text);
  background: rgba(16, 37, 58, .58);
  border: 1px solid rgba(114, 166, 255, .25);
  border-radius: 5px;
}

.yhic-article-box.is-revealed {
  animation: yhic-prompt-reveal .28s ease both;
}

.yhic-article-box.is-saved {
  border-color: rgba(91, 211, 145, .58);
  box-shadow: inset 4px 0 0 rgba(91, 211, 145, .8);
}

@keyframes yhic-prompt-reveal {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.yhic-article-box h2 {
  margin: 5px 0 4px;
  color: var(--yhic-text);
  font-size: clamp(20px, 3vw, 25px);
  line-height: 1.12;
}

.yhic-article-box p:not(.yhic-eyebrow) {
  margin: 0;
  color: var(--yhic-muted);
  font-size: 14px;
  line-height: 1.5;
}

.yhic-article-box .yhic-button {
  flex: 0 0 auto;
}

.yhic-article-box__actions {
  display: grid;
  flex: 0 0 min(180px, 30%);
  gap: 11px;
}

.yhic-article-box__note {
  color: var(--yhic-muted);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.35;
  text-align: center;
}

.yhic-business-link {
  color: var(--yhic-blue-soft);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
}

.yhic-business-link:hover,
.yhic-business-link:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.yhic-member-card {
  padding: 22px;
  background: var(--yhic-panel);
  border: 1px solid var(--yhic-line);
  border-radius: 8px;
}

.yhic-member-card p {
  margin: 0 0 10px;
}

.yhic-member-card__hello {
  color: var(--yhic-muted);
  font-size: 13px;
  font-weight: 700;
}

.yhic-member-card__points {
  color: var(--yhic-text);
  font-size: 16px;
}

.yhic-member-card__points strong {
  display: block;
  font-size: 42px;
  line-height: 1;
}

.yhic-member-card__tier {
  margin-bottom: 3px !important;
  color: var(--yhic-blue-soft);
  font-size: 16px;
  font-weight: 900;
}

.yhic-member-card__recognition {
  color: var(--yhic-muted);
  font-size: 12px;
}

.yhic-tier-progress {
  height: 8px;
  margin: 14px 0 9px;
  overflow: hidden;
  background: rgba(255, 255, 255, .08);
  border-radius: 999px;
}

.yhic-tier-progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--yhic-blue), var(--yhic-blue-soft));
  border-radius: inherit;
}

.yhic-member-card__next,
.yhic-fine-print {
  color: var(--yhic-muted);
  font-size: 12px;
  line-height: 1.5;
}

.yhic-member-card__momentum {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0 12px;
}

.yhic-momentum-card {
  min-width: 0;
  padding: 15px;
  background: rgba(255, 255, 255, .045);
  border: 1px solid var(--yhic-line);
  border-radius: 7px;
}

.yhic-momentum-card.is-complete {
  background: rgba(43, 156, 102, .12);
  border-color: rgba(95, 214, 151, .35);
}

.yhic-momentum-card > span,
.yhic-momentum-card > strong {
  display: block;
}

.yhic-momentum-card > span {
  margin-bottom: 6px;
  color: var(--yhic-blue-soft);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.yhic-momentum-card > strong {
  color: var(--yhic-text);
  font-size: 13px;
  line-height: 1.35;
}

.yhic-weekly-progress {
  height: 5px;
  margin-top: 11px;
  overflow: hidden;
  background: rgba(255, 255, 255, .09);
  border-radius: 999px;
}

.yhic-weekly-progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--yhic-blue), var(--yhic-blue-soft));
  border-radius: inherit;
}

.yhic-member-card__action {
  margin: 0 0 18px !important;
  padding: 13px 14px;
  color: #dce9ff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  background: rgba(23, 105, 255, .11);
  border-left: 3px solid var(--yhic-blue);
  border-radius: 4px;
}

.yhic-member-card__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 18px 0;
}

.yhic-member-card__stats div {
  min-width: 0;
  padding: 11px;
  background: rgba(255, 255, 255, .045);
  border: 1px solid var(--yhic-line);
  border-radius: 6px;
}

.yhic-member-card__stats strong,
.yhic-member-card__stats span {
  display: block;
}

.yhic-member-card__stats strong {
  color: var(--yhic-text);
  font-size: 20px;
}

.yhic-member-card__stats span {
  margin-top: 3px;
  color: var(--yhic-muted);
  font-size: 10px;
  line-height: 1.3;
}

.yhic-text-link,
.yhic-auth a {
  color: var(--yhic-blue-soft);
}

.yhic-recent-activity {
  margin: 25px 0 20px;
  padding-top: 22px;
  border-top: 1px solid var(--yhic-line);
}

.yhic-recent-activity h3 {
  margin: 0 0 12px;
  color: var(--yhic-text);
  font-size: 17px;
}

.yhic-recent-activity ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.yhic-recent-activity li {
  display: flex;
  gap: 16px;
  padding: 11px 0;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(148, 177, 204, .13);
}

.yhic-recent-activity li > span,
.yhic-recent-activity li strong,
.yhic-recent-activity li small {
  display: block;
}

.yhic-recent-activity li strong {
  color: var(--yhic-text);
  font-size: 12px;
  line-height: 1.35;
}

.yhic-recent-activity li small {
  margin-top: 3px;
  color: var(--yhic-muted);
  font-size: 10px;
}

.yhic-recent-activity li b {
  flex: 0 0 auto;
  color: #8ee0b0;
  font-size: 13px;
}

.yhic-recent-activity li b.is-negative {
  color: #ffb1b1;
}

.yhic-account-page {
  box-sizing: border-box;
  width: min(900px, calc(100% - 32px));
  margin: 42px auto 70px;
  padding: clamp(24px, 5vw, 52px);
  color: var(--yhic-text);
  background:
    radial-gradient(circle at 92% 8%, rgba(23, 105, 255, .18), transparent 34%),
    linear-gradient(145deg, #0a2136, var(--yhic-navy) 64%);
  border: 1px solid var(--yhic-line);
  border-top: 4px solid var(--yhic-blue);
  border-radius: 8px;
}

.yhic-account-page h1 {
  margin: 9px 0 12px;
  color: var(--yhic-text);
  font-size: clamp(38px, 8vw, 68px);
  line-height: .98;
}

.yhic-account-page__intro {
  max-width: 680px;
  margin: 0 0 28px;
  color: var(--yhic-muted);
  font-size: 17px;
  line-height: 1.6;
}

body.yhic-account-route {
  background:
    radial-gradient(circle at 12% 18%, rgba(23, 105, 255, .16), transparent 28%),
    linear-gradient(180deg, #071521 0, #0a1f33 48%, #071521 100%) !important;
}

body.yhic-account-route main {
  min-height: calc(100vh - 220px);
  color: var(--yhic-text);
  background: transparent !important;
}

body.yhic-account-route .wp-block-post-title {
  display: none;
}

body.yhic-account-route .yhic-account-page {
  box-shadow: 0 28px 70px rgba(0, 0, 0, .34);
}

.yhic-points-guide,
.yhic-tiers {
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid var(--yhic-line);
}

.yhic-points-guide h2,
.yhic-tiers h2 {
  margin: 7px 0 17px;
  color: var(--yhic-text);
}

.yhic-points-guide__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.yhic-points-guide__grid div {
  padding: 18px;
  background: linear-gradient(145deg, rgba(23, 105, 255, .16), rgba(255, 255, 255, .035));
  border: 1px solid rgba(114, 166, 255, .28);
  border-radius: 7px;
}

.yhic-points-guide__grid strong,
.yhic-points-guide__grid span {
  display: block;
}

.yhic-points-guide__grid strong {
  color: #fff;
  font-size: 30px;
  line-height: 1;
}

.yhic-points-guide__grid span {
  margin-top: 8px;
  color: var(--yhic-muted);
  font-size: 12px;
  line-height: 1.4;
}

.yhic-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.yhic-tier-grid div {
  position: relative;
  padding: 16px;
  background: var(--yhic-panel);
  border: 1px solid var(--yhic-line);
  border-radius: 5px;
}

.yhic-tier-grid div.is-reached {
  border-color: rgba(95, 214, 151, .32);
}

.yhic-tier-grid div.is-current {
  background: linear-gradient(145deg, rgba(23, 105, 255, .22), rgba(255, 255, 255, .04));
  border-color: var(--yhic-blue-soft);
  box-shadow: inset 0 3px 0 var(--yhic-blue);
}

.yhic-tier-grid div.is-upcoming {
  opacity: .68;
}

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

.yhic-tier-grid strong {
  color: var(--yhic-text);
  font-size: 14px;
}

.yhic-tier-grid span {
  margin-top: 5px;
  color: var(--yhic-muted);
  font-size: 10px;
}

.yhic-tier-grid small {
  display: block;
  margin-top: 10px;
  color: var(--yhic-blue-soft);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.35;
}

.yhic-tier-grid em {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 7px;
  color: #dce9ff;
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(23, 105, 255, .18);
  border-radius: 3px;
}

@media (max-width: 700px) {
  .yhic-insider-actions {
    right: 12px;
    bottom: 12px;
    max-width: calc(100vw - 24px);
  }

  .yhic-points-pill {
    min-width: 172px;
    max-width: calc(100vw - 24px);
    min-height: 46px;
    padding-right: 11px;
  }

  .yhic-points-pill strong {
    max-width: 190px;
    overflow: hidden;
    font-size: 12px;
    text-overflow: ellipsis;
  }

  .yhic-toast {
    right: 12px;
    bottom: 73px;
    width: calc(100vw - 24px);
  }

  .yhic-drawer__panel {
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    width: auto;
    max-width: 100vw;
    height: min(92dvh, 760px);
    padding: 58px 16px calc(24px + env(safe-area-inset-bottom));
    border-left: 0;
    border-top: 1px solid var(--yhic-line);
    border-radius: 18px 18px 0 0;
    transform: translateY(100%);
  }

  .yhic-drawer.is-open .yhic-drawer__panel {
    transform: translateY(0);
  }

  .yhic-drawer__close {
    position: absolute;
    z-index: 2;
    top: 10px;
    right: 14px;
    width: 44px;
    height: 44px;
    font-size: 30px;
    background: var(--yhic-panel-2);
  }

  .yhic-drawer__panel h2 {
    max-width: calc(100% - 8px);
    font-size: clamp(28px, 9vw, 38px);
  }

  .yhic-drawer__intro {
    margin-right: 0;
    font-size: 13px;
  }

  .yhic-auth__tabs button {
    min-height: 44px;
  }

  .yhic-form.is-active {
    min-width: 0;
    gap: 16px;
  }

  .yhic-form input[type="text"],
  .yhic-form input[type="email"],
  .yhic-form input[type="password"] {
    min-height: 50px;
    padding: 12px 13px;
    font-size: 16px;
  }

  .yhic-check {
    grid-template-columns: 22px 1fr;
    gap: 10px;
  }

  .yhic-check input {
    width: 20px;
    height: 20px;
    margin-top: 1px;
  }

  .yhic-form .yhic-button {
    min-height: 50px;
    font-size: 14px;
  }

  .yhic-article-box {
    display: grid;
    gap: 18px;
    margin-top: 28px;
    padding: 18px;
  }

  .yhic-article-box .yhic-button {
    width: 100%;
  }

  .yhic-article-box__actions {
    width: 100%;
  }

  .yhic-tier-grid {
    grid-template-columns: 1fr 1fr;
  }

  .yhic-points-guide__grid {
    grid-template-columns: 1fr;
  }

  .yhic-member-card__stats {
    grid-template-columns: 1fr;
  }

  .yhic-member-card__momentum {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .yhic-toast,
  .yhic-drawer__panel,
  .yhic-drawer__backdrop,
  .yhic-points-pill,
  .yhic-insider-actions {
    transition: none;
  }

  .yhic-article-box.is-revealed {
    animation: none;
  }
}
