/*
Theme Name: MoneyCharger
Theme URI: https://moneycharger.com
Description: マネーチャージャー公式サイト用カスタムテーマ
Author: MoneyCharger
Version: 1.0.0
Text Domain: monecharger
*/

/* ========================================
   CSS Variables & Reset
======================================== */
:root {
  --color-primary: #FF8C00;
  --color-primary-light: #FFB800;
  --color-primary-gradient: linear-gradient(135deg, #FF8C00, #FFB800);
  --color-cta-gradient: linear-gradient(135deg, #FF6B00, #FFB800);
  --color-red: #E53935;
  --color-red-tag: #E53935;
  --color-blue-tag: #1976D2;
  --color-green-tag: #43A047;
  --color-dark: #1B1B2F;
  --color-footer-bg: #1B1B2F;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-text-muted: #999999;
  --color-bg: #FFFFFF;
  --color-bg-light: #F8F8F8;
  --color-bg-yellow: #FFF8E1;
  --color-border: #E0E0E0;
  --color-highlight-orange: rgba(255, 140, 0, 0.08);
  --font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --header-height: 70px;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 4px 24px rgba(0, 0, 0, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

/* ========================================
   Layout
======================================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.container--narrow {
  max-width: 800px;
}

/* ========================================
   Header
======================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  height: var(--header-height);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.2rem;
}

.site-logo__icon {
  width: 36px;
  height: 36px;
  background: var(--color-primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
}

.site-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.site-logo__text small {
  font-size: 0.65rem;
  color: var(--color-text-muted);
  font-weight: 400;
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav__item a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 6px;
  transition: background 0.2s;
}

.main-nav__item a:hover {
  background: var(--color-bg-light);
}

.main-nav__item--gacha a {
  color: var(--color-primary);
}

.main-nav__item--mission a {
  color: var(--color-primary);
}

.main-nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 16px;
}

.btn-login {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
}

.btn-register {
  background: var(--color-red);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-register:hover {
  opacity: 0.9;
}

/* Mobile menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

/* ========================================
   Hero Slider (TOP)
======================================== */
.hero-slider {
  padding: 40px 0 30px;
}

.hero-slider__wrapper {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
}

.hero-slider__wrapper::-webkit-scrollbar {
  display: none;
}

.hero-slide {
  flex: 0 0 calc(33.333% - 14px);
  scroll-snap-align: start;
  border-radius: var(--radius);
  border: 2px dashed var(--color-primary-light);
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #fff;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.hero-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-border);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.hero-slider__dot.active {
  background: var(--color-primary);
}

/* ========================================
   NEWS Section
======================================== */
.news-section {
  padding: 40px 0;
}

.news-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.news-section__title {
  font-size: 1.4rem;
  font-weight: 700;
  padding-left: 16px;
  border-left: 4px solid var(--color-primary);
}

.news-section__more {
  color: var(--color-primary);
  font-size: 0.9rem;
  font-weight: 500;
}

.news-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.news-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  padding: 20px;
  transition: box-shadow 0.2s;
}

.news-card:hover {
  box-shadow: var(--shadow);
}

.news-card__tags {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  color: #fff;
}

.tag--news {
  background: var(--color-red-tag);
}

.tag--new {
  background: var(--color-red);
}

.tag--cb {
  background: var(--color-blue-tag);
}

.tag--campaign {
  background: var(--color-green-tag);
}

.tag--info {
  background: var(--color-text-muted);
}

.news-card__icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.news-card__title {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.6;
}

/* ========================================
   CTA Banner
======================================== */
.cta-banner {
  background: var(--color-cta-gradient);
  padding: 28px 40px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 40px auto;
  max-width: var(--max-width);
  color: #fff;
}

.cta-banner__text h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.cta-banner__text p {
  font-size: 0.85rem;
  opacity: 0.9;
}

.btn-cta-white {
  background: #fff;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: box-shadow 0.2s;
}

.btn-cta-white:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ========================================
   Features Section
======================================== */
.features-section {
  padding: 60px 0;
  text-align: center;
}

.section-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.section-title span {
  color: var(--color-primary);
}

.section-subtitle {
  color: var(--color-text-light);
  font-size: 0.9rem;
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.feature-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  padding: 28px 20px;
  text-align: center;
  transition: box-shadow 0.2s;
}

.feature-card:hover {
  box-shadow: var(--shadow);
}

.feature-card__image {
  width: 100px;
  height: 100px;
  margin: 0 auto 16px;
  background: var(--color-bg-yellow);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card__image img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}

.feature-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card__desc {
  font-size: 0.8rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 24px;
  border: 2px solid var(--color-primary);
  border-radius: 24px;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-more:hover {
  background: var(--color-primary);
  color: #fff;
}

/* ========================================
   Broker Table
======================================== */
.broker-section {
  padding: 60px 0;
  text-align: center;
}

.broker-table-wrapper {
  overflow-x: auto;
  margin: 30px 0;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.broker-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  min-width: 700px;
}

.broker-table thead {
  background: var(--color-bg-light);
}

.broker-table th {
  padding: 14px 12px;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--color-text-light);
  border-bottom: 1px solid var(--color-border);
  white-space: nowrap;
}

.broker-table td {
  padding: 16px 12px;
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
}

.broker-table tr:last-child td {
  border-bottom: none;
}

.broker-name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.broker-logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.broker-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.broker-detail-btn {
  background: var(--color-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 16px;
  border: none;
  cursor: pointer;
}

/* ========================================
   How It Works
======================================== */
.how-section {
  padding: 60px 0;
  text-align: center;
  background: var(--color-bg-light);
}

.how-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 32px;
}

.how-step {
  flex: 0 0 220px;
  text-align: center;
}

.how-step__icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 16px;
  background: var(--color-bg-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.how-step__icon img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}

.how-step__title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.how-step__desc {
  font-size: 0.8rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.how-arrow {
  display: flex;
  align-items: center;
  padding-top: 50px;
  color: var(--color-text-muted);
  font-size: 1.5rem;
}

.btn-cta-orange {
  display: inline-block;
  background: var(--color-cta-gradient);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 28px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-cta-orange:hover {
  opacity: 0.9;
}

/* ========================================
   Withdrawal Section
======================================== */
.withdrawal-section {
  padding: 60px 0;
  text-align: center;
}

.withdrawal-section h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.withdrawal-section h2 span {
  color: var(--color-primary);
}

.withdrawal-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  margin: 40px 0;
}

.withdrawal-image {
  width: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.withdrawal-steps {
  text-align: left;
}

.withdrawal-steps h3 {
  font-size: 1rem;
  margin-bottom: 20px;
}

.withdrawal-steps h3 span {
  color: var(--color-primary);
  font-weight: 700;
}

.withdrawal-step {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.withdrawal-step__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-primary-gradient);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.withdrawal-step__text {
  font-size: 0.95rem;
  font-weight: 500;
}

.payment-methods {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.payment-method {
  flex: 0 0 120px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
}

.payment-method__icon {
  height: 30px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========================================
   Bottom CTA
======================================== */
.bottom-cta {
  background: var(--color-cta-gradient);
  padding: 60px 0;
  text-align: center;
  color: #fff;
}

.bottom-cta h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.bottom-cta p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 24px;
}

.bottom-cta .btn-cta-white {
  font-size: 1rem;
  padding: 14px 36px;
}

.bottom-cta__links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 24px;
  font-size: 0.85rem;
}

/* ========================================
   Footer
======================================== */
.site-footer {
  background: var(--color-footer-bg);
  color: #fff;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .site-logo {
  margin-bottom: 16px;
}

.footer-brand .site-logo__icon {
  background: var(--color-primary-gradient);
}

.footer-brand__desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 16px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  transition: background 0.2s;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.footer-nav h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-nav ul li {
  margin-bottom: 10px;
}

.footer-nav ul li a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.footer-nav ul li a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ========================================
   Single Post (Image #2)
======================================== */
.breadcrumb {
  padding: 16px 0;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.breadcrumb a {
  color: var(--color-text-muted);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--color-text);
}

.breadcrumb span {
  margin: 0 8px;
}

/* Article */
.article-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

.article-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 40px;
}

.article-card__tags {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.article-card__title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.4;
}

.article-card__thumbnail {
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 0;
}

.article-card__thumbnail img {
  width: 100%;
  height: auto;
}

/* Post Content */
.post-content {
  padding: 0 32px 32px;
}

.post-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 40px 0 12px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--color-primary);
}

.post-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 32px 0 12px;
}

.post-content h4 {
  font-size: 1rem;
  font-weight: 700;
  margin: 28px 0 12px;
}

.post-content p {
  margin-bottom: 20px;
  line-height: 1.9;
  font-size: 0.95rem;
}

/* Yellow highlight box (blockquote) */
.post-content blockquote {
  background: var(--color-bg-yellow);
  border-left: 4px solid var(--color-primary-light);
  padding: 20px 24px;
  margin: 24px 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.95rem;
}

.post-content blockquote p {
  margin-bottom: 0;
}

/* CTA Button in content */
.post-content .wp-block-buttons {
  margin: 28px 0;
}

.post-content .wp-block-button__link,
.post-content .btn-post-cta {
  display: block;
  background: var(--color-dark);
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.post-content .wp-block-button__link:hover,
.post-content .btn-post-cta:hover {
  opacity: 0.85;
}

/* Orange highlight text */
.post-content .highlight-orange,
.post-content .has-orange-background-color {
  background: var(--color-highlight-orange);
  color: var(--color-primary);
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  margin: 24px 0;
  line-height: 1.9;
}

/* Red/Orange small CTA button */
.post-content .btn-post-small {
  display: inline-block;
  background: var(--color-red);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: 24px;
  text-align: center;
  margin: 24px auto;
  border: none;
  cursor: pointer;
}

/* Step list */
.post-content .step-list,
.post-content .wp-block-list.is-style-step-list {
  margin: 24px 0;
  padding: 0;
}

.step-item,
.post-content .step-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  padding: 0;
}

.step-item__num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-primary-gradient);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-item__content h4 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 4px;
}

.step-item__content p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 0;
  line-height: 1.7;
}

/* ========================================
   Related Posts
======================================== */
.related-posts {
  margin-top: 48px;
}

.related-posts__title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.related-posts__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.related-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px;
  transition: box-shadow 0.2s;
}

.related-card:hover {
  box-shadow: var(--shadow);
}

.related-card__tags {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.related-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.related-card__desc {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 12px;
  line-height: 1.6;
}

.related-card__link {
  color: var(--color-primary);
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Back to top button */
.back-to-top {
  text-align: center;
  margin: 40px 0;
}

.back-to-top a {
  display: inline-block;
  border: 1px solid var(--color-border);
  padding: 12px 28px;
  border-radius: 24px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
}

.back-to-top a:hover {
  background: var(--color-bg-light);
}

/* ========================================
   Gutenberg Block Styles
======================================== */
/* WP Block Cover/Group with orange bg */
.wp-block-group.has-orange-background {
  background: var(--color-highlight-orange);
  color: var(--color-primary);
  padding: 20px 24px;
  border-radius: var(--radius-sm);
}

/* WP Block Separator */
.post-content hr,
.wp-block-separator {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 32px 0;
}

/* WP Block Image */
.post-content .wp-block-image {
  margin: 24px 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

/* WP Block Table */
.post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.post-content table th,
.post-content table td {
  border: 1px solid var(--color-border);
  padding: 12px 16px;
  font-size: 0.9rem;
}

.post-content table th {
  background: var(--color-bg-light);
  font-weight: 600;
}

/* ========================================
   Custom Block Patterns for Post
======================================== */
/* Step block pattern */
.mc-steps {
  margin: 32px 0;
}

.mc-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.mc-step__number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-primary-gradient);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.mc-step__body h4 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 6px;
}

.mc-step__body p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin: 0;
  line-height: 1.7;
}

/* CTA Button Block */
.mc-cta-dark {
  display: block;
  background: var(--color-dark);
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  margin: 28px 0;
  text-decoration: none;
  transition: opacity 0.2s;
}

.mc-cta-dark:hover {
  opacity: 0.85;
  color: #fff;
}

.mc-cta-red {
  display: inline-block;
  background: var(--color-red);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: 24px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.mc-cta-red:hover {
  opacity: 0.85;
  color: #fff;
}

/* Orange highlight block */
.mc-highlight-orange {
  background: rgba(255, 140, 0, 0.06);
  color: var(--color-primary);
  padding: 24px;
  border-radius: var(--radius-sm);
  margin: 24px 0;
  line-height: 1.9;
}

/* ========================================
   Responsive
======================================== */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-slide {
    flex: 0 0 calc(50% - 10px);
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 60px;
  }

  .main-nav__list {
    display: none;
  }

  .main-nav__actions {
    margin-left: 0;
  }

  .btn-login {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero-slide {
    flex: 0 0 85%;
  }

  .news-cards {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 24px;
    margin: 24px 20px;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .how-steps {
    flex-direction: column;
    align-items: center;
  }

  .how-arrow {
    transform: rotate(90deg);
    padding: 0;
  }

  .withdrawal-content {
    flex-direction: column;
    gap: 30px;
  }

  .payment-methods {
    flex-wrap: wrap;
  }

  .payment-method {
    flex: 0 0 calc(33.333% - 12px);
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Single post mobile */
  .article-card {
    padding: 20px;
  }

  .post-content {
    padding: 0 20px 20px;
  }

  .article-card__title {
    font-size: 1.3rem;
  }

  .related-posts__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .payment-method {
    flex: 0 0 calc(50% - 8px);
  }

  .broker-section .section-title {
    font-size: 1.3rem;
  }
}
