/* =========================================================
   噂・リーク情報トップ
========================================================= */

:root {
  --reak-ink: #0f172a;
  --reak-muted: #64748b;
  --reak-border: #dbe3ec;
  --reak-surface: #fff;
  --reak-surface-soft: #f8fafc;
  --reak-teal: #0d9488;
  --reak-teal-dark: #0f766e;
  --reak-cyan: #06b6d4;
  --reak-purple: #7c3aed;
  --reak-shadow: 0 10px 30px rgba(15, 23, 42, .07);
}

.mm-body--reak {
  background: #f4f6f8;
}

/* 上部メニュー選択状態 */
.mm-subnav__item.is-active {
  border-bottom-color: var(--reak-teal);
  background: linear-gradient(180deg, #fff 0%, #f0fdfa 100%);
  color: var(--reak-teal-dark);
}

.mm-subnav__item.is-active i {
  color: var(--reak-teal);
}

.mm-navgrid__item.is-active {
  position: relative;
  border-color: #99f6e4;
  background: #f0fdfa;
  color: var(--reak-teal-dark);
}

.mm-navgrid__item.is-active::after {
  position: absolute;
  right: 8px;
  bottom: 5px;
  left: 8px;
  height: 2px;
  border-radius: 999px;
  background: var(--reak-teal);
  content: "";
}

/* 上部ヒーロー */
.mm-hero--reak {
  min-height: 118px;
  overflow: hidden;
  background: #07111f;
}

.mm-hero--reak .mm-hero__bg img {
  filter: saturate(.78) contrast(1.08);
  object-position: center 42%;
}

.mm-hero--reak .mm-hero__overlay {
  background:
    linear-gradient(90deg, rgba(3, 7, 18, .96) 0%, rgba(8, 18, 38, .88) 43%, rgba(7, 38, 47, .62) 100%),
    linear-gradient(180deg, rgba(13, 148, 136, .12), rgba(124, 58, 237, .12));
}

.mm-hero--reak .mm-hero__inner {
  position: relative;
  z-index: 2;
  min-height: 118px;
}

.mm-hero--reak .mm-hero__left {
  min-width: 0;
}

.mm-reak-hero__eyebrow {
  display: block;
  margin-bottom: 4px;
  color: #5eead4;
  font-family: "Lato", sans-serif;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .16em;
}

.mm-hero--reak .mm-hero__title {
  max-width: 780px;
  color: #fff;
  font-size: clamp(18px, 2.1vw, 27px);
  line-height: 1.42;
  white-space: normal;
}

.mm-hero--reak .mm-hero__sub {
  margin-top: 5px;
  color: #cbd5e1;
  font-size: 12px;
}

.mm-reak-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(72px, 1fr));
  gap: 7px;
  flex: 0 0 auto;
}

.mm-reak-hero__stats > div {
  min-width: 76px;
  padding: 10px 12px;
  border: 1px solid rgba(153, 246, 228, .2);
  border-radius: 10px;
  background: rgba(15, 23, 42, .58);
  text-align: center;
  backdrop-filter: blur(7px);
}

.mm-reak-hero__stats strong,
.mm-reak-hero__stats span {
  display: block;
}

.mm-reak-hero__stats strong {
  color: #fff;
  font-size: 19px;
  line-height: 1.1;
}

.mm-reak-hero__stats span {
  margin-top: 4px;
  color: #99f6e4;
  font-size: 9px;
  font-weight: 900;
}

/* 共通レイアウト */
.mm-main {
  padding-top: 24px;
  padding-bottom: 40px;
}

.mm-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
}

.mm-content,
.mm-article {
  min-width: 0;
}

.mm-article__h1 {
  margin: 0;
  color: var(--reak-ink);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.4;
  font-weight: 900;
}

.mm-reak-page {
  min-width: 0;
}

/* メイン導入 */
.mm-reak-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(240px, .58fr);
  gap: 22px;
  padding: 28px;
  border: 1px solid var(--reak-border);
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 0%, rgba(13, 148, 136, .14), transparent 36%),
    linear-gradient(145deg, #fff 0%, #f8fafc 100%);
  box-shadow: var(--reak-shadow);
}

.mm-reak-intro__copy {
  min-width: 0;
}

.mm-reak-intro__eyebrow,
.mm-reak-section-head__en,
.mm-reak-list-head__en,
.mm-reak-featured__head span {
  display: block;
  margin: 0 0 7px;
  color: var(--reak-teal-dark);
  font-family: "Lato", sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
}

.mm-reak-intro__copy > p {
  max-width: 720px;
  margin: 13px 0 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.9;
}

.mm-reak-intro__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.mm-reak-primary-button,
.mm-reak-secondary-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 15px;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.mm-reak-primary-button {
  background: linear-gradient(135deg, var(--reak-teal), var(--reak-teal-dark));
  color: #fff;
  box-shadow: 0 8px 18px rgba(13, 148, 136, .2);
}

.mm-reak-primary-button:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 11px 24px rgba(13, 148, 136, .26);
}

.mm-reak-secondary-button {
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #334155;
}

.mm-reak-secondary-button:hover {
  background: #f8fafc;
  color: var(--reak-teal-dark);
}

.mm-reak-intro__metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  align-content: stretch;
}

.mm-reak-metric {
  display: flex;
  min-height: 92px;
  flex-direction: column;
  justify-content: center;
  padding: 14px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: rgba(255, 255, 255, .86);
}

.mm-reak-metric span {
  color: var(--reak-muted);
  font-size: 10px;
  font-weight: 800;
}

.mm-reak-metric strong {
  margin-top: 5px;
  color: var(--reak-ink);
  font-size: 27px;
  line-height: 1;
}

.mm-reak-metric small {
  margin-top: 3px;
  color: #94a3b8;
  font-size: 9px;
}

.mm-reak-metric--accent {
  border-color: #99f6e4;
  background: #f0fdfa;
}

.mm-reak-metric--accent strong {
  color: var(--reak-teal-dark);
}

/* 最新1件 */
.mm-reak-featured {
  margin-top: 24px;
  padding: 20px;
  border: 1px solid var(--reak-border);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 6px 22px rgba(15, 23, 42, .05);
}

.mm-reak-featured__head,
.mm-reak-list-head,
.mm-reak-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.mm-reak-featured__head {
  margin-bottom: 13px;
}

.mm-reak-featured__head h2,
.mm-reak-section-title {
  margin: 0;
  color: var(--reak-ink);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.45;
}

.mm-reak-featured__head time {
  color: var(--reak-muted);
  font-size: 10px;
  font-weight: 800;
}

.mm-reak-featured__card {
  display: grid;
  grid-template-columns: minmax(230px, .82fr) minmax(0, 1.18fr);
  overflow: hidden;
  border: 1px solid #dbe3ec;
  border-radius: 13px;
  background: #f8fafc;
  color: inherit;
  text-decoration: none;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.mm-reak-featured__card:hover {
  border-color: #5eead4;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, .09);
}

.mm-reak-featured__visual {
  min-height: 244px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 30%, rgba(124, 58, 237, .4), transparent 30%),
    linear-gradient(135deg, #0f172a, #0f766e);
}

.mm-reak-featured__visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 244px;
  object-fit: cover;
  transition: transform .3s ease;
}

.mm-reak-featured__card:hover .mm-reak-featured__visual img {
  transform: scale(1.025);
}

.mm-reak-featured__placeholder {
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 244px;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .82);
  font-size: 54px;
}

.mm-reak-featured__body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 24px;
  background: #fff;
}

.mm-reak-featured__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.mm-reak-featured__body h2 {
  margin: 12px 0 0;
  color: var(--reak-ink);
  font-size: 21px;
  line-height: 1.55;
}

.mm-reak-featured__body > p {
  margin: 10px 0 0;
  color: #475569;
  font-size: 12px;
  line-height: 1.8;
}

.mm-reak-featured__body dl {
  display: grid;
  gap: 6px;
  margin: 14px 0 0;
}

.mm-reak-featured__body dl > div {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 8px;
  padding-top: 7px;
  border-top: 1px solid #edf2f7;
  font-size: 11px;
}

.mm-reak-featured__body dt {
  color: var(--reak-muted);
  font-weight: 900;
}

.mm-reak-featured__body dd {
  margin: 0;
  color: #334155;
  font-weight: 800;
}

.mm-reak-featured__more {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
  color: var(--reak-teal-dark);
  font-size: 12px;
  font-weight: 900;
}

/* 情報段階 */
.mm-reak-guide {
  margin-top: 24px;
  padding: 20px;
  border: 1px solid var(--reak-border);
  border-radius: 16px;
  background: #fff;
  scroll-margin-top: 96px;
}

.mm-reak-section-head {
  margin-bottom: 16px;
}

.mm-reak-section-head > p {
  max-width: 330px;
  margin: 0;
  color: var(--reak-muted);
  font-size: 10px;
  line-height: 1.7;
  text-align: right;
}

.mm-reak-steps {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 18px minmax(0, 1fr) 18px minmax(0, 1fr) 18px minmax(0, 1fr) 18px minmax(0, 1fr);
  gap: 7px;
  align-items: stretch;
}

.mm-reak-steps > i {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
}

.mm-reak-step {
  display: flex;
  min-width: 0;
  min-height: 126px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 13px;
  border: 1px solid #dbe3ec;
  border-radius: 11px;
  background: #f8fafc;
}

.mm-reak-step__icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 9px;
  border-radius: 10px;
  background: #e2e8f0;
  color: #475569;
  font-size: 14px;
}

.mm-reak-step strong {
  color: var(--reak-ink);
  font-size: 12px;
  line-height: 1.45;
}

.mm-reak-step small {
  margin-top: 5px;
  color: var(--reak-muted);
  font-size: 9px;
  line-height: 1.65;
}

.mm-reak-step--rumor .mm-reak-step__icon {
  background: #fff7ed;
  color: #c2410c;
}

.mm-reak-step--model .mm-reak-step__icon {
  background: #eff6ff;
  color: #1d4ed8;
}

.mm-reak-step--inspection .mm-reak-step__icon {
  background: #f5f3ff;
  color: #6d28d9;
}

.mm-reak-step--official .mm-reak-step__icon {
  background: #f0fdfa;
  color: var(--reak-teal-dark);
}

.mm-reak-step--release .mm-reak-step__icon {
  background: #f0fdf4;
  color: #15803d;
}

/* 一覧・絞り込み */
.mm-reak-list-section {
  margin-top: 30px;
  scroll-margin-top: 96px;
}

.mm-reak-list-head {
  margin-bottom: 13px;
  padding-bottom: 11px;
  border-bottom: 3px solid #1e293b;
}

.mm-reak-count {
  display: inline-flex;
  min-width: 54px;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e2e8f0;
  color: #334155;
  font-size: 10px;
  font-weight: 900;
}

.mm-reak-filter-panel {
  display: grid;
  grid-template-columns: minmax(200px, 280px) minmax(0, 1fr);
  gap: 10px;
  margin-bottom: 14px;
  padding: 10px;
  border: 1px solid var(--reak-border);
  border-radius: 12px;
  background: #fff;
}

.mm-reak-local-search {
  position: relative;
  display: flex;
  min-width: 0;
  align-items: center;
}

.mm-reak-local-search > i {
  position: absolute;
  left: 12px;
  color: #94a3b8;
  font-size: 12px;
  pointer-events: none;
}

.mm-reak-local-search input {
  width: 100%;
  height: 40px;
  padding: 8px 12px 8px 34px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #f8fafc;
  color: #1e293b;
  font: inherit;
  font-size: 11px;
}

.mm-reak-local-search input:focus {
  outline: 2px solid rgba(13, 148, 136, .18);
  border-color: var(--reak-teal);
  background: #fff;
}

.mm-reak-filters {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  justify-content: flex-end;
}

.mm-reak-filter {
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid #dbe3ec;
  border-radius: 8px;
  background: #fff;
  color: #475569;
  font-size: 10px;
  font-weight: 900;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}

.mm-reak-filter:hover {
  border-color: #94d7cf;
  color: var(--reak-teal-dark);
}

.mm-reak-filter.is-active {
  border-color: var(--reak-teal);
  background: var(--reak-teal);
  color: #fff;
}

/* カード */
.mm-reak-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

.mm-reak-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--reak-border);
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(15, 23, 42, .04);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.mm-reak-card:hover {
  transform: translateY(-2px);
  border-color: #7dd3c7;
  box-shadow: 0 11px 24px rgba(15, 23, 42, .08);
}

.mm-reak-card[hidden] {
  display: none !important;
}

.mm-reak-card__link {
  display: flex;
  height: 100%;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.mm-reak-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 8.8;
  background:
    radial-gradient(circle at 70% 20%, rgba(124, 58, 237, .45), transparent 30%),
    linear-gradient(135deg, #0f172a, #0f766e);
}

.mm-reak-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.mm-reak-card:hover .mm-reak-card__image img {
  transform: scale(1.035);
}

.mm-reak-card__placeholder {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: rgba(255, 255, 255, .78);
}

.mm-reak-card__placeholder i {
  font-size: 30px;
}

.mm-reak-card__placeholder span {
  font-family: "Lato", sans-serif;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .14em;
}

.mm-reak-stage,
.mm-reak-type {
  display: inline-flex;
  min-height: 23px;
  align-items: center;
  justify-content: center;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 900;
  line-height: 1.3;
}

.mm-reak-card__image > .mm-reak-stage {
  position: absolute;
  top: 10px;
  left: 10px;
  box-shadow: 0 3px 10px rgba(15, 23, 42, .14);
}

.mm-reak-stage--rumor,
.mm-reak-stage--stale {
  background: #fff7ed;
  color: #c2410c;
}

.mm-reak-stage--trademark,
.mm-reak-stage--model,
.mm-reak-stage--approved {
  background: #eff6ff;
  color: #1d4ed8;
}

.mm-reak-stage--inspection {
  background: #f5f3ff;
  color: #6d28d9;
}

.mm-reak-stage--sales,
.mm-reak-stage--preview,
.mm-reak-stage--official {
  background: #f0fdfa;
  color: var(--reak-teal-dark);
}

.mm-reak-stage--release,
.mm-reak-stage--released {
  background: #f0fdf4;
  color: #15803d;
}

.mm-reak-stage--postponed,
.mm-reak-stage--canceled,
.mm-reak-stage--denied {
  background: #fef2f2;
  color: #b91c1c;
}

.mm-reak-type {
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #475569;
}

.mm-reak-type--slot {
  border-color: #bfdbfe;
  background: #eff6ff;
  color: #1d4ed8;
}

.mm-reak-type--pachinko {
  border-color: #fecdd3;
  background: #fff1f2;
  color: #be123c;
}

.mm-reak-card__new {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 7px;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  font-family: "Lato", sans-serif;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .08em;
  box-shadow: 0 3px 10px rgba(127, 29, 29, .24);
}

.mm-reak-card__body {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  padding: 14px;
}

.mm-reak-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
  color: var(--reak-muted);
  font-size: 9px;
}

.mm-reak-card__title {
  margin: 10px 0 0;
  color: var(--reak-ink);
  font-size: 15px;
  line-height: 1.58;
}

.mm-reak-card__excerpt {
  display: -webkit-box;
  overflow: hidden;
  margin: 8px 0 0;
  color: #475569;
  font-size: 10px;
  line-height: 1.75;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.mm-reak-card__info {
  display: grid;
  gap: 0;
  margin: 12px 0 0;
}

.mm-reak-card__info > div {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 8px;
  padding: 6px 0;
  border-top: 1px solid #edf2f7;
  font-size: 10px;
}

.mm-reak-card__info dt {
  color: var(--reak-muted);
  font-weight: 900;
}

.mm-reak-card__info dd {
  margin: 0;
  color: #334155;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.mm-reak-card__more {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  margin-top: auto;
  padding-top: 15px;
  color: var(--reak-teal-dark);
  font-size: 10px;
  font-weight: 900;
}

.mm-reak-card__more i {
  transition: transform .18s ease;
}

.mm-reak-card:hover .mm-reak-card__more i {
  transform: translateX(3px);
}

.mm-reak-empty,
.mm-reak-no-result {
  padding: 26px 18px;
  border: 1px dashed #cbd5e1;
  border-radius: 12px;
  background: #fff;
  color: var(--reak-muted);
  text-align: center;
}

.mm-reak-empty i {
  display: block;
  margin-bottom: 10px;
  color: #94a3b8;
  font-size: 34px;
}

.mm-reak-empty strong {
  display: block;
  color: #334155;
  font-size: 15px;
}

.mm-reak-empty p,
.mm-reak-no-result {
  font-size: 11px;
  line-height: 1.75;
}

/* 注意 */
.mm-reak-notice {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  margin-top: 30px;
  padding: 18px;
  border: 1px solid #fde68a;
  border-radius: 12px;
  background: #fffbeb;
}

.mm-reak-notice__icon {
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #fef3c7;
  color: #b45309;
  font-size: 18px;
}

.mm-reak-notice .mm-reak-section-title {
  color: #92400e;
  font-size: 16px;
}

.mm-reak-notice ul {
  margin: 10px 0 0;
  padding-left: 19px;
  color: #78350f;
  font-size: 11px;
  line-height: 1.85;
}

/* SNSシェア */
.mm-share-panel {
  margin-top: 28px;
  padding: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, .05);
}

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

.mm-share-button {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 14px;
  border-radius: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
  transition: opacity .2s ease, transform .2s ease;
}

.mm-share-button:hover {
  color: #fff;
  opacity: .88;
  transform: translateY(-1px);
}

.mm-share-button--x {
  background: #111;
}

.mm-share-button--line {
  background: #06c755;
}

.mm-share-button--hatena {
  background: #00a4de;
}

.mm-share-button__hatena {
  font-family: Arial, sans-serif;
  font-weight: 900;
}

@media (max-width: 1100px) {
  .mm-layout {
    grid-template-columns: minmax(0, 1fr) 280px;
  }

  .mm-reak-intro {
    grid-template-columns: minmax(0, 1fr) 230px;
  }

  .mm-reak-steps {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .mm-reak-steps > i {
    display: none;
  }

  .mm-reak-filter-panel {
    grid-template-columns: 1fr;
  }

  .mm-reak-filters {
    justify-content: flex-start;
  }
}

@media (max-width: 980px) {
  .mm-layout {
    grid-template-columns: 1fr;
  }

  .mm-reak-hero__stats {
    display: none;
  }
}

@media (max-width: 767px) {
  .mm-main {
    padding-top: 16px;
    padding-bottom: 28px;
  }

  .mm-hero--reak {
    min-height: 96px;
  }

  .mm-hero--reak .mm-hero__inner {
    min-height: 96px;
  }

  .mm-reak-hero__eyebrow {
    display: none;
  }

  .mm-hero--reak .mm-hero__title {
    font-size: 16px;
  }

  .mm-hero--reak .mm-hero__sub {
    font-size: 10px;
  }

  .mm-reak-intro {
    display: block;
    padding: 20px 16px;
    border-radius: 13px;
  }

  .mm-article__h1 {
    font-size: 23px;
  }

  .mm-reak-intro__copy > p {
    font-size: 12px;
    line-height: 1.8;
  }

  .mm-reak-intro__metrics {
    margin-top: 18px;
  }

  .mm-reak-metric {
    min-height: 78px;
    padding: 12px;
  }

  .mm-reak-metric strong {
    font-size: 23px;
  }

  .mm-reak-featured {
    padding: 14px;
  }

  .mm-reak-featured__head,
  .mm-reak-list-head,
  .mm-reak-section-head {
    align-items: flex-start;
  }

  .mm-reak-featured__card {
    display: block;
  }

  .mm-reak-featured__visual,
  .mm-reak-featured__visual img,
  .mm-reak-featured__placeholder {
    min-height: 190px;
  }

  .mm-reak-featured__body {
    padding: 16px;
  }

  .mm-reak-featured__body h2 {
    font-size: 17px;
  }

  .mm-reak-guide {
    padding: 14px;
  }

  .mm-reak-section-head > p {
    display: none;
  }

  .mm-reak-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .mm-reak-step {
    min-height: 112px;
  }

  .mm-reak-step:last-of-type {
    grid-column: 1 / -1;
  }

  .mm-reak-filter-panel {
    padding: 8px;
  }

  .mm-reak-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .mm-reak-filters::-webkit-scrollbar {
    display: none;
  }

  .mm-reak-filter {
    flex: 0 0 auto;
  }

  .mm-reak-grid {
    grid-template-columns: 1fr;
  }

  .mm-reak-card__title {
    font-size: 14px;
  }

  .mm-reak-notice {
    grid-template-columns: 1fr;
  }

  .mm-reak-notice__icon {
    width: 36px;
    height: 36px;
  }

  .mm-share-panel {
    margin-top: 22px;
    padding: 12px;
  }

  .mm-share-buttons {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .mm-share-button {
    min-height: 42px;
    font-size: 12px;
  }
}

@media (max-width: 390px) {
  .mm-reak-intro__actions {
    display: grid;
  }

  .mm-reak-primary-button,
  .mm-reak-secondary-button {
    width: 100%;
  }
}