/*
Theme Name:   ReferralMars
Theme URI:    https://referralmars.com
Description:  Kripto borsa referans kodları için Mars/Cyberpunk temalı Kadence child theme.
Author:       ReferralMars
Author URI:   https://referralmars.com
Template:     kadence
Version:      2.3.0
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  referralmars-child
*/


/* ═══ variables.css ═══ */
/*
 * ReferralMars — CSS Variables & Global Base Styles
 * Part of the rm-critical bundle.
 */

/* ============================================================
   CSS DEĞİŞKENLERİ
   ============================================================ */
/* ── FONT AWESOME EVRENSEL HİZALAMA ── */
i[class*="fa-"] {
  line-height: 1;
  flex-shrink: 0;
  font-weight: 900; /* FA Solid için zorunlu */
}

/* Skip to content — Kadence erişilebilirlik butonu gizle */
.skip-link { display: none !important; }

:root {
  --rm-bg:        #060910;
  --rm-bg-2:      #0A0E1A;
  --rm-surface:   #111827;
  --rm-surface-2: #162035;
  --rm-surface-3: #1C2A45;
  --rm-border:    rgba(255,255,255,.06);
  --rm-border-2:  rgba(255,255,255,.11);

  --rm-red:       #E8334A;
  --rm-red-light: #FF4D65;
  --rm-red-glow:  rgba(232,51,74,.3);
  --rm-orange:    #FF6B35;
  --rm-amber:     #F59E0B;
  --rm-green:     #10B981;
  --rm-green-bg:  rgba(16,185,129,.08);
  --rm-blue:      #3B82F6;
  --rm-neon-glow: 0 0 20px rgba(232,51,74,.4), 0 0 60px rgba(232,51,74,.12);

  --rm-text:      #EDF2F7;
  --rm-text-2:    #94A3B8;
  --rm-text-3:    #64748B;
  --rm-text-muted:#2D3748;

  --rm-font-display: var(--global-heading-font-family, system-ui, sans-serif);
  --rm-font-body:    var(--global-body-font-family, system-ui, sans-serif);
  --rm-font-mono:    'JetBrains Mono', 'Fira Code', monospace;

  --rm-page-top:  24px; /* tüm sayfalarda container üst boşluğu */
  --rm-radius:    8px;    /* buton, input, küçük element */
  --rm-radius-md: 12px;   /* orta kart, panel */
  --rm-radius-lg: 14px;   /* büyük kart, kutu */
  --rm-radius-xl: 16px;   /* hero, section */
  --rm-shadow:     0 4px 24px rgba(0,0,0,.5);
  --rm-shadow-lg:  0 12px 48px rgba(0,0,0,.7);
  --rm-transition: all .2s ease;
}


/* ═══ global.css ═══ */
/* ============================================================
   GLOBAL
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

body {
  background: var(--rm-bg) !important;
  color: var(--rm-text) !important;
  font-family: var(--rm-font-body) !important;
  font-size: 0.875rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#wrapper.site, .content-bg, .site-main { background: var(--rm-bg) !important; }
a { color: var(--rm-red); transition: var(--rm-transition); text-decoration: none; }
a:hover { color: var(--rm-orange); text-decoration: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--rm-font-display) !important; color: var(--rm-text); line-height: 1.2; }
img, video { max-width: 100%; height: auto; }

/* Hero üstündeki Kadence boşluklarını kaldır */
.content-area { margin: 0 !important; }
.entry-hero-container-inner { display: none !important; }

/* ── ORTAK ARAMA INPUT BASE ── */
.rm-search-input-base,
.rm-404-search-input,
.rm-search-form-input,
.rm-header-search-input,
.rm-sidebar-search-input,
input[type="search"].rm-404-search-input,
input[type="search"].rm-search-form-input,
input[type="search"].rm-header-search-input,
input[type="search"].rm-sidebar-search-input {
  background: var(--rm-bg) !important;
  border: 1px solid var(--rm-border) !important;
  border-radius: var(--rm-radius);
  color: var(--rm-text) !important;
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color-scheme: dark;
  box-shadow: none !important;
}

.rm-404-search-input:focus,
.rm-search-form-input:focus,
.rm-header-search-input:focus,
.rm-sidebar-search-input:focus {
  border-color: var(--rm-red) !important;
}

.rm-404-search-input::placeholder,
.rm-search-form-input::placeholder,
.rm-header-search-input::placeholder,
.rm-sidebar-search-input::placeholder {
  color: var(--rm-text-2);
  opacity: .6;
}

/* Autofill — tüm inputlar */
.rm-404-search-input:-webkit-autofill,
.rm-search-form-input:-webkit-autofill,
.rm-header-search-input:-webkit-autofill,
.rm-sidebar-search-input:-webkit-autofill,
.rm-404-search-input:-webkit-autofill:hover,
.rm-search-form-input:-webkit-autofill:hover,
.rm-header-search-input:-webkit-autofill:hover,
.rm-sidebar-search-input:-webkit-autofill:hover,
.rm-404-search-input:-webkit-autofill:focus,
.rm-search-form-input:-webkit-autofill:focus,
.rm-header-search-input:-webkit-autofill:focus,
.rm-sidebar-search-input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px var(--rm-bg) inset !important;
  box-shadow: 0 0 0 1000px var(--rm-bg) inset !important;
  -webkit-text-fill-color: var(--rm-text) !important;
  caret-color: var(--rm-text);
}

/* ── GLOBAL SAYFA ARKA PLAN EFEKTİ ── */


/* ══════════════════════════════════════════════════════════
   GLOBAL GRID UTILITIES
   PC: 4 sütun → Tablet/Mobil: 2 sütun → Küçük: 1 sütun
   ══════════════════════════════════════════════════════════ */

.rm-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 900px) {
  .rm-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

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

/* 3 sütun → 2 → 1 */
.rm-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 900px) {
  .rm-grid-3 { grid-template-columns: repeat(2, 1fr); }
}

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

/* 2 sütun → 1 */
.rm-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

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

/* ══════════════════════════════════════════════════════════
   UTILITY — Kart temel stili
   Sık tekrar eden: surface bg + border + radius kombinasyonu
   ══════════════════════════════════════════════════════════ */
.rm-card-base,
.rm-sidebar-card,
.rm-pop-item,
.rm-comment-body,
.rm-lp-card,
.rm-related-card,
.rm-step-card,
.rm-feature-card,
.rm-faq-shortcode .rm-faq-item,
.rm-faq-item {
  background: var(--rm-surface);
  border: 1px solid var(--rm-border);
  border-radius: var(--rm-radius);
}

/* ── Scroll Reveal (CSS animasyon — JS yok) ── */
.rm-reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rm-reveal-in .55s cubic-bezier(.22,.68,0,1.1) both;
  animation-play-state: paused;
}
.rm-reveal.rm-revealed,
.rm-reveal:nth-child(1) { animation-play-state: running; animation-delay: 0ms; }
.rm-reveal:nth-child(2) { animation-play-state: running; animation-delay: 70ms; }
.rm-reveal:nth-child(3) { animation-play-state: running; animation-delay: 140ms; }
.rm-reveal:nth-child(4) { animation-play-state: running; animation-delay: 210ms; }
.rm-reveal:nth-child(n+5) { animation-play-state: running; animation-delay: 280ms; }
@keyframes rm-reveal-in {
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .rm-reveal { animation: none; opacity: 1; transform: none; }
}


/* ═══ layout.css ═══ */
/* ============================================================
   LAYOUT
   ============================================================ */
.rm-container { max-width: 1200px; margin: 0 auto; padding: var(--rm-page-top, 24px) 24px 30px; }
.rm-main-layout { display: grid; grid-template-columns: 1fr 295px; gap: 24px; align-items: start; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); height: 1px; overflow: hidden; position: absolute !important; width: 1px; }

/* ============================================================
   HERO
   ============================================================ */
.rm-homepage { overflow-x: hidden; }
.rm-hero {
  position: relative; display: flex; align-items: center;
  padding: 40px 0 70px; overflow: hidden; background: var(--rm-bg);
}
.rm-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(232,51,74,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,51,74,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 30%, transparent 90%);
  pointer-events: none;
  z-index: 1;
}
.rm-hero-glow { z-index: 1; }
.rm-hero-inner { z-index: 2; }
.rm-hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 65% 55% at 10% 50%, rgba(232,51,74,.18) 0%, transparent 60%),
    radial-gradient(ellipse 45% 35% at 90% 25%, rgba(255,107,53,.1) 0%, transparent 55%),
    radial-gradient(ellipse 30% 25% at 50% 90%, rgba(168,85,247,.06) 0%, transparent 50%);
}
.rm-hero-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}

.rm-hero-visual { display: flex; flex-direction: column; gap: 10px; }
.rm-hero-card-preview {
  background: var(--rm-surface); border: 1px solid var(--rm-border);
  border-radius: var(--rm-radius); padding: 16px;
  position: relative; overflow: hidden;
  animation: rm-float 4s ease-in-out infinite;
}
.rm-hero-card-preview::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--rm-red), var(--rm-orange));
}
@keyframes rm-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.rm-hero-card-preview:nth-child(2) { animation-delay: .6s; margin-left: 20px; }
.rm-hero-card-preview:nth-child(3) { animation-delay: 1.2s; margin-left: 10px; }

.rm-hcp-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.rm-hcp-logo  { width: 32px; height: 32px; border-radius: 7px; background: var(--rm-bg); border: 1px solid var(--rm-border); display: flex; align-items: center; justify-content: center; font-weight: 800; color: var(--rm-red); }
.rm-hcp-name  { font-weight: 700; color: var(--rm-text); }
.rm-hcp-score { margin-left: auto; color: var(--rm-amber); font-weight: 700; }
.rm-hcp-bonus { color: var(--rm-green); background: var(--rm-green-bg); padding: 5px 8px; border-radius: 5px; margin-bottom: 10px; }
.rm-hcp-code  { font-family: var(--rm-font-mono); color: var(--rm-text-2); background: var(--rm-bg); padding: 6px 10px; border-radius: 5px; border: 1px solid var(--rm-border); text-align: center; }

.rm-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,51,74,.08); border: 1px solid rgba(232,51,74,.2);
  border-radius: 4px; padding: 6px 14px 6px 10px;
  font-weight: 700; color: var(--rm-red);
  margin-bottom: 20px; letter-spacing: .08em; text-transform: uppercase;
}
.rm-hero-badge-dot { width: 6px; height: 6px; background: var(--rm-red); border-radius: 50%; box-shadow: 0 0 6px var(--rm-red); animation: rm-pulse 2s infinite; }
@keyframes rm-pulse { 0%,100% { opacity:1; } 50% { opacity:.5; } }

.rm-hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 4rem) !important;
  font-weight: 800 !important; letter-spacing: -.04em;
  line-height: 1.06 !important; margin-bottom: 18px; color: var(--rm-text) !important;
}
#rm-typewriter { color: var(--rm-red); border-right: 2px solid var(--rm-red); padding-right: 3px; animation: rm-blink .75s step-end infinite; text-shadow: 0 0 16px rgba(232,51,74,.4); }
@keyframes rm-blink { 0%,100% { border-color:var(--rm-red); } 50% { border-color:transparent; } }
.rm-hero-desc  { font-size: 1rem; color: var(--rm-text-2); line-height: 1.75; margin-bottom: 28px; }
.rm-hero-ctas  { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.rm-hero-stats { display: flex; border: 1px solid var(--rm-border); border-radius: var(--rm-radius); overflow: hidden; background: var(--rm-surface); }
.rm-hero-stat  { flex: 1; padding: 14px 16px; border-right: 1px solid var(--rm-border); transition: background .2s; }
.rm-hero-stat:last-child { border-right: none; }
.rm-hero-stat:hover { background: var(--rm-surface-2); }
.rm-hero-stat-num   { font-family: var(--rm-font-display); font-size: 1.5rem; font-weight: 800; color: var(--rm-text); line-height: 1; margin-bottom: 3px; }
.rm-hero-stat-label { font-size: 0.75rem; color: var(--rm-text-3); text-transform: uppercase; letter-spacing: .07em; font-weight: 600; }
@media (max-width: 480px) {
  .rm-hero-stats { flex-wrap: nowrap; overflow: hidden; }
  .rm-hero-stat  { flex: 1 1 0; min-width: 0; padding: 8px 4px; text-align: center; }
  .rm-hero-stat-num   { font-size: 1rem; }
  .rm-hero-stat-label { font-size: 0.6rem; letter-spacing: 0; }
}

/* ── rm-hero-visual responsive (burada merkezi yönetim) ── */
@media (max-width: 1100px) {
  .rm-hero-visual { display: none; }
}
@media (max-width: 900px) {
  .rm-hero-visual {
    display: flex !important;
    width: 100%; max-width: 100%;
    height: 420px; overflow: hidden;
    border-radius: var(--rm-radius-md);
  }
  .rm-hero-visual img { max-width: 100% !important; width: 100% !important; height: auto !important; }
}


/* ═══ typography.css ═══ */
/* ============================================================
   TİPOGRAFİ SİSTEMİ — Typography Scale
   0.75rem | 0.875rem | 1rem | 1.125rem | 1.5rem | 2.25rem | 3rem
   ============================================================ */

/* ── SINGLE SAYFA ── */
/* padding rm-container'dan geliyor */

/* Başlık kutusu */
.rm-single-header-box {
  background: var(--rm-surface);
  border: 1px solid var(--rm-border);
  border-radius: var(--rm-radius);
  padding: 16px 14px 16px;
  margin-bottom: 12px;
}
.rm-single-title {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 800; letter-spacing: -.025em;
  line-height: 1.2; margin-bottom: 16px; color: var(--rm-text);
}

/* Meta satırı */
.rm-single-meta {
  display: flex; flex-wrap: wrap; gap: 6px; align-items: center;
}

@media (max-width: 680px) {
  .rm-single-meta { gap: 4px; }
  .rm-meta-pill {
    font-size: .7rem !important;
    padding: 3px 8px !important;
  }
}
.rm-meta-pill {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--rm-surface-2);
  border: 1px solid var(--rm-border);
  border-radius: var(--rm-radius);
  padding: 5px 10px;
  font-size: 0.75rem; font-weight: 500;
  color: var(--rm-text-2);
  text-decoration: none;
  white-space: nowrap;
}
.rm-meta-pill svg { flex-shrink: 0; color: var(--rm-text-3); }
.rm-meta-pill-link:hover { border-color: var(--rm-border-2); color: var(--rm-text); }

/* Glossary pill — exchange gibi ama kitap ikonuyla */
.rm-meta-pill-glossary {
  color: #60a5fa;
  border-color: rgba(96,165,250,.2);
  background: rgba(96,165,250,.06);
}
.rm-meta-pill-glossary:hover {
  border-color: rgba(96,165,250,.45) !important;
  color: #93c5fd !important;
}
.rm-meta-pill-link .rm-meta-pill-icon {
  width: 16px; height: 16px;
  border-radius: 3px; background: var(--rm-bg);
  border: 1px solid var(--rm-border);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
}
.rm-meta-pill-btn {
  background: none; border: 1px solid var(--rm-border);
  cursor: pointer; font-family: var(--rm-font-body);
  margin-left: auto;
}
.rm-meta-pill-btn:hover, .rm-meta-pill-btn:focus, .rm-meta-pill-btn:active {
  background: var(--rm-surface-2) !important;
  color: var(--rm-text-2) !important;
  box-shadow: none !important;
}

/* İçerik kutusu */
.rm-entry-content-box {
  background: var(--rm-surface);
  border: 1px solid var(--rm-border);
  border-radius: var(--rm-radius);
  padding: 4px 16px;
}

/* Öne çıkan görsel */
.rm-single-thumb {
  border-radius: var(--rm-radius);
  overflow: hidden;
  margin-bottom: 20px;
  max-height: 440px;
}
.rm-single-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Meta metin */
.rm-meta-text { font-size: 0.875rem; color: var(--rm-text-2); font-weight: 500; }
.rm-meta-pill-text { font-size: 0.875rem; font-weight: 600; color: var(--rm-text-2); text-decoration: none; }

/* Etiketler */

/* Makale listesi (taxonomy) */
.rm-article-title { font-size: 0.875rem; font-weight: 700; margin-bottom: 4px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.rm-article-meta  { font-size: 0.75rem; color: var(--rm-text-3); }

/* Arşiv sayfası */
.rm-archive-exchange-name { font-size: 1.125rem; font-weight: 800; margin: 0; color: var(--rm-text); }
.rm-archive-score         { font-family: var(--rm-font-display); font-size: 1rem; font-weight: 700; color: var(--rm-amber); }
.rm-archive-short-desc    { font-size: 0.875rem; color: var(--rm-text-2); line-height: 1.6; margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.rm-archive-bonus-text    { background: var(--rm-green-bg); border: 1px solid rgba(16,185,129,.2); border-radius: var(--rm-radius); padding: 10px 12px; font-size: 1rem; color: var(--rm-green); font-weight: 600; margin-bottom: 14px; }
.rm-archive-rating-label  { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--rm-text-3); margin-bottom: 3px; }
.rm-archive-pro-item      { display: flex; align-items: center; gap: 6px; font-size: 1rem; color: var(--rm-text-2); padding: 3px 0; }
.rm-empty-title           { font-size: 1.125rem; margin-bottom: 8px; }

/* Front-page rehber bölümü */
.rm-guide-title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; flex: 1; }
.rm-guide-meta  { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; color: var(--rm-text-3); margin-top: auto; padding-top: 12px; border-top: 1px solid var(--rm-border); }

/* Arşiv başlık + açıklama */
.rm-archive-h1 { font-size: clamp(1.5rem, 4vw, 2.25rem); font-weight: 800; margin-bottom: 12px; }
.rm-archive-intro { font-size: 1rem; color: var(--rm-text-2); }


/* ═══ buttons.css ═══ */
/* ============================================================
   BUTONLAR
   ============================================================ */
.rm-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 7px; padding: 10px 22px; border-radius: var(--rm-radius);
  font-weight: 600; font-size: 0.875rem; cursor: pointer; border: none;
  transition: var(--rm-transition); text-decoration: none; white-space: nowrap;
  font-family: var(--rm-font-body);
}
.rm-btn-primary   { background: var(--rm-red); color: #fff !important; }
.rm-btn-primary:hover { background: var(--rm-red-light); color: #fff !important; transform: translateY(-1px); box-shadow: var(--rm-neon-glow); }
.rm-btn-secondary { background: var(--rm-surface-2); color: var(--rm-text) !important; border: 1px solid var(--rm-border-2); }
.rm-btn-secondary:hover { background: var(--rm-surface-3); color: var(--rm-text) !important; transform: translateY(-1px); }
.rm-btn-ghost     { background: transparent; color: var(--rm-text-2) !important; border: 1px solid var(--rm-border); }
.rm-btn-ghost:hover { color: var(--rm-text) !important; border-color: var(--rm-border-2); background: var(--rm-surface); }
.rm-btn-ghost:focus { outline: none; box-shadow: none; background: transparent; }
.rm-btn-ghost:focus-visible { outline: 2px solid var(--rm-border-2); outline-offset: 2px; }
.rm-btn-sm { padding: 7px 14px; font-size: 0.875rem; }
.rm-btn-lg { padding: 13px 30px; font-size: 1rem; }
.rm-btn-xl { padding: 15px 36px; font-size: 1rem; }

.rm-copy-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--rm-surface-2); border: 1px solid var(--rm-border);
  border-radius: var(--rm-radius); padding: 9px 14px;
  color: var(--rm-text-2); font-family: var(--rm-font-mono);
  font-size: 0.875rem; cursor: pointer; transition: var(--rm-transition);
}
.rm-copy-btn:hover { background: var(--rm-surface-3); border-color: var(--rm-border-2); color: var(--rm-text); }
.rm-copy-btn.copied { border-color: var(--rm-green); color: var(--rm-green); background: var(--rm-green-bg); }


/* ═══ components.css ═══ */
/* ============================================================
   COMPONENTS — cards, badges, breadcrumb, sidebar
   ============================================================ */

/* ── cards ── */
.rm-card {
  background: var(--rm-surface);
  border: 1px solid var(--rm-border);
  border-radius: var(--rm-radius);
  padding: 20px;
  transition: var(--rm-transition);
}
.rm-card:hover { border-color: var(--rm-border-2); }

/* Kart içi başlıklar */
.rm-card h2, .rm-card h3, .rm-card h4 {
  font-size: 1.125rem; font-weight: 800;
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 16px;
}

.rm-section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.875rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--rm-red); margin-bottom: 10px;
}
.rm-section-label::before { content: ''; width: 20px; height: 1px; background: var(--rm-red); }
.rm-section-label-center { justify-content: center; }

/* ── badges ── */
.rm-badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 10px; border-radius: var(--rm-radius);
  font-size: 0.875rem; font-weight: 600;
}
.rm-badge-red   { background: rgba(232,51,74,.1);  color: #FF758F; border: 1px solid rgba(232,51,74,.2); }
.rm-badge-green { background: var(--rm-green-bg);  color: var(--rm-green); border: 1px solid rgba(16,185,129,.18); }
.rm-badge-blue  { background: rgba(59,130,246,.1); color: #60A5FA; border: 1px solid rgba(59,130,246,.18); }
.rm-badge-amber { background: rgba(245,158,11,.1); color: var(--rm-amber); border: 1px solid rgba(245,158,11,.18); }
.rm-badge-gray  { background: var(--rm-surface-2); color: var(--rm-text-2); border: 1px solid var(--rm-border); }

.rm-exchange-pill {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 9px 3px 3px; border-radius: var(--rm-radius);
  font-size: 0.875rem; font-weight: 600;
  background: var(--rm-surface-2); border: 1px solid var(--rm-border);
  color: var(--rm-text-2) !important; transition: var(--rm-transition); text-decoration: none;
}
.rm-exchange-pill:hover { border-color: var(--rm-border-2); color: var(--rm-text) !important; }

/* ── breadcrumb ── */
.kadence-breadcrumbs, .site-breadcrumb { background: transparent !important; }
.rm-breadcrumb,
.rm-breadcrumb a,
.rm-breadcrumb span,
.kadence-breadcrumbs span,
.kadence-breadcrumbs a {
  color: var(--rm-text-2);
  font-size: 0.875rem;
  text-decoration: none;
  border-bottom: none;
}
.rm-breadcrumb a:hover, .kadence-breadcrumbs a:hover { color: var(--rm-text); }
.rm-breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; padding: 2px 0; }
.rm-breadcrumb-sep { opacity: .35; }
.rm-breadcrumb-current { color: var(--rm-text); font-weight: 700; }
.rm-breadcrumb-box {
  background: var(--rm-surface) !important;
  border: 1px solid var(--rm-border) !important;
  border-radius: var(--rm-radius) !important;
  padding: 10px 16px !important;
  margin-bottom: 20px !important;
  display: block !important;
}

/* ── sidebar ── */
.primary-sidebar .widget, .widget {
  background: var(--rm-surface) !important;
  border: 1px solid var(--rm-border) !important;
  border-radius: var(--rm-radius);
  padding: 20px !important;
  margin-bottom: 16px;
}
.widget-title, .widgettitle {
  color: var(--rm-text-3) !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  letter-spacing: .1em;
  text-transform: uppercase !important;
}
.pagination .page-numbers, .posts-pagination .page-numbers {
  background: var(--rm-surface) !important;
  border: 1px solid var(--rm-border) !important;
  color: var(--rm-text-2) !important;
  border-radius: var(--rm-radius) !important;
  padding: 5px 11px !important;
  transition: var(--rm-transition);
}
.pagination .page-numbers:hover { background: var(--rm-surface-2) !important; color: var(--rm-text) !important; }
.pagination .page-numbers.current { background: var(--rm-red) !important; border-color: var(--rm-red) !important; color: #fff !important; }

/* ── rm-badge-featured ── */
.rm-badge-featured {
  background: rgba(245,158,11,.12);
  color: var(--rm-amber);
  border: 1px solid rgba(245,158,11,.25);
}

/* ── rm-single-article ── */
.rm-single-article { display: block; }

/* ── rm-404-container / rm-404-main ── */
.rm-404-container { width: 100%; }
.rm-404-main { flex: 1; min-width: 0; }

/* ── rm-latest-section ── */
.rm-latest-section { background: var(--rm-bg); position: relative; overflow: hidden; }

/* ── rm-glossary-group ── */
.rm-glossary-group { margin-bottom: 32px; }

/* ── rm-mobile-cta-bar (fixed bottom CTA — single + exchange sayfaları) ──
   display:none ile başlar, @media 680px altında display:flex olur.
   components.css'te çünkü WP Rocket RUCSS display:none görünce siler. */
.rm-mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 500;
  background: rgba(6,9,16,.96);
  border-top: 1px solid var(--rm-border);
  padding: 10px 18px;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.rm-mobile-cta-logo {
  width: 30px; height: 30px;
  border-radius: var(--rm-radius);
  background: var(--rm-bg);
  border: 1px solid var(--rm-border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; overflow: hidden;
}
.rm-mobile-cta-name { font-weight: 700; flex: 1; color: var(--rm-text); }
@media (max-width: 680px) {
  .rm-mobile-cta-bar { display: flex; }
}


/* ═══ content.css ═══ */
/* ============================================================
   İÇERİK (entry-content)
   ============================================================ */
.entry-content {
  color: var(--rm-text-2);
  font-family: var(--rm-font-body);
  font-size: 1rem;
  line-height: 2;
}
.entry-content h1, .entry-content h2,
.entry-content h3, .entry-content h4 { color: var(--rm-text); }
.entry-content a { color: var(--rm-red); }
.entry-content a:hover { color: var(--rm-orange); }
.entry-content blockquote {
  border: 1px solid rgba(232,51,74,.25) !important;
  background: rgba(232,51,74,.06) !important;
  color: var(--rm-text-2) !important;
  padding: 14px 18px 14px 20px !important;
  border-radius: var(--rm-radius) !important;
  margin: 20px 0 !important;
  position: relative !important;
  font-style: normal !important;
}
.entry-content blockquote::before {
  content: '\f05a';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.85rem;
  color: var(--rm-red);
  position: absolute;
  top: 14px;
  right: 14px;
  opacity: .7;
}
.entry-content blockquote p {
  margin: 0 !important;
  font-size: 0.9rem !important;
  line-height: 1.7 !important;
}
.entry-content code {
  background: var(--rm-surface-2) !important;
  border: 1px solid var(--rm-border) !important;
  color: var(--rm-orange) !important;
  font-family: var(--rm-font-mono) !important;
  padding: 2px 6px; border-radius: 4px; font-size: .875em;
}
.entry-content pre {
  background: var(--rm-surface-2) !important;
  border: 1px solid var(--rm-border) !important;
  border-radius: var(--rm-radius) !important;
}
.entry-content table { border-collapse: collapse; width: 100%; }
.entry-content th, .entry-content td { border: 1px solid var(--rm-border) !important; padding: 10px 14px; color: var(--rm-text-2); }
.entry-content th { background: var(--rm-surface-2) !important; color: var(--rm-text) !important; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }

/* İçerik başlıkları — h1 hariç 1.3rem + sol kırmızı çizgi */
.entry-content h2, .rm-entry-content h2,
.entry-content h3, .rm-entry-content h3,
.entry-content h4, .rm-entry-content h4 {
  font-size: 1.125rem;
  font-weight: 800;
  padding-left: 12px;
  border-left: 3px solid var(--rm-red);
  margin-top: 1.75em;
  margin-bottom: .5em;
}

/* ── İÇERİK LİSTELERİ ── */
.entry-content ul:not(.rm-toc-list):not(.rm-comment-list),
.entry-content ol:not(.rm-toc-list),
.rm-entry-content ul:not(.rm-toc-list):not(.rm-comment-list),
.rm-entry-content ol:not(.rm-toc-list) {
  padding-left: 16px;
  margin: 8px 0;
}


/* ═══ header.css ═══ */
/* ============================================================
   KADENCE HEADER
   ============================================================ */
/* Kadence'in orijinal header'ını tamamen gizle */
#masthead { display: none !important; }

/* ── RM HEADER ── */
#rm-header-wrap {
  position: sticky; top: 0; z-index: 1000;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
#rm-header-wrap.rm-header-hidden { transform: translateY(-100%); }
.admin-bar #rm-header-wrap { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar #rm-header-wrap { top: 46px; } }

.rm-header {
  background: rgba(10,14,26,.97);
  border-bottom: 1px solid var(--rm-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: background .3s, box-shadow .3s;
}
.rm-header.scrolled {
  background: rgba(10,14,26,.99);
  box-shadow: 0 4px 32px rgba(0,0,0,.6);
}
.rm-header-inner {
  max-width: 1270px; margin: 0 auto;
  padding: 0;
  height: 100px;
  display: flex; align-items: center; gap: 28px;
}

/* Logo */
.rm-header-logo { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; padding: 4px 0; }
.rm-header-logo .rm-logo-img { height: 78px; width: auto; display: block; }
.rm-logo-text { font-family: var(--rm-font-display); font-size: 1.15rem; font-weight: 800; color: var(--rm-text) !important; letter-spacing: -.03em; text-decoration: none; }

/* Masaüstü nav */
.rm-desktop-nav .rm-nav-list li { position: relative; }

/* Nav link */
.rm-nav-link {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 7px 13px; border-radius: 7px;
  font-size: 0.85rem; font-weight: 500;
  color: var(--rm-text-2) !important;
  text-decoration: none !important;
  background: transparent !important;
  transition: color .18s, background .18s;
  white-space: nowrap;
}
.rm-nav-link:hover { color: var(--rm-text) !important; background: var(--rm-surface-2) !important; }
.rm-nav-link.rm-nav-current { color: var(--rm-text) !important; }
.rm-nav-link.rm-nav-current::before { content: ''; display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: var(--rm-red); margin-right: 2px; }
.rm-nav-arrow { opacity: .45; transition: transform .2s; flex-shrink: 0; }
.rm-has-sub:hover .rm-nav-arrow, .rm-has-mega:hover .rm-nav-arrow { transform: rotate(180deg); opacity: .8; }

/* Normal dropdown */
.rm-has-sub { position: relative; }
.rm-sub-menu {
  position: absolute; top: 100%; left: 0;
  min-width: 200px;
  background: var(--rm-surface);
  border: 1px solid var(--rm-border);
  border-radius: var(--rm-radius-md);
  box-shadow: 0 16px 48px rgba(0,0,0,.55);
  list-style: none; margin: 0; padding: 6px;
  z-index: 400; overflow: hidden;
  opacity: 0; visibility: hidden;
  transform: translateY(-4px);
  transition: opacity .2s, transform .2s, visibility .2s;
}

.rm-has-sub:hover .rm-sub-menu,
.rm-has-sub:focus-within .rm-sub-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.rm-sub-menu li { list-style: none; }
.rm-sub-link { display: block; padding: 8px 12px; border-radius: 7px; font-size: 0.83rem; font-weight: 500; color: var(--rm-text-2) !important; text-decoration: none !important; transition: color .15s, background .15s; }
.rm-sub-link:hover, .rm-sub-link.rm-nav-current { color: var(--rm-text) !important; background: var(--rm-surface-2) !important; }

/* Mega menu */
.rm-has-mega { position: relative !important; }
.rm-desktop-nav .rm-nav-list { position: relative; }
.rm-mega-menu { position: absolute; top: 100%; left: 0; transform: translateY(-4px); width: 480px; background: var(--rm-surface); border: 1px solid var(--rm-border); border-radius: var(--rm-radius-lg); box-shadow: 0 20px 60px rgba(0,0,0,.6); opacity: 0; visibility: hidden; transition: opacity .2s, transform .2s, visibility .2s; z-index: 500; overflow: hidden; }

/* Hover gap köprüsü — fare kayarken kapanmasın */
.rm-mega-menu::after { content: ''; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
.rm-nav-item.rm-has-mega:hover .rm-mega-menu, .rm-nav-item.rm-has-mega:focus-within .rm-mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.rm-mega-inner { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 2px; padding: 6px; }
.rm-mega-item { display: flex; align-items: center; gap: 8px; padding: 9px 10px; border-radius: 8px; text-decoration: none !important; transition: background .15s; min-width: 0; }
.rm-mega-item:hover { background: var(--rm-surface-2); }
.rm-mega-logo { width: 34px; height: 34px; flex-shrink: 0; border-radius: 8px; background: var(--rm-surface); border: 1px solid var(--rm-border); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.rm-mega-name { font-size: 0.78rem; font-weight: 600; color: var(--rm-text-2) !important; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rm-mega-item:hover .rm-mega-name { color: var(--rm-text) !important; }
.rm-mega-footer { border-top: 1px solid var(--rm-border); padding: 10px 16px; }
.rm-mega-all { font-size: 0.8rem; font-weight: 600; color: var(--rm-text-3); text-decoration: none; transition: color .18s; }
.rm-mega-all:hover { color: var(--rm-red); }

/* Sağ alan */
.rm-header-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; margin-left: auto; }

/* Masaüstü nav */
.rm-desktop-nav { flex: 1; }
.rm-desktop-nav .rm-nav-list { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }

/* Hamburger */
.rm-hamburger { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 38px; height: 38px; background: rgba(255,255,255,.04); border: 1px solid var(--rm-border); border-radius: 8px; cursor: pointer; padding: 0; transition: border-color .2s; }
.rm-hamburger:hover { border-color: var(--rm-border-2); }
.rm-hb-line { display: block; width: 18px; height: 1.5px; background: var(--rm-text-2); border-radius: 2px; transition: transform .25s, opacity .2s, width .25s; }
.rm-hamburger.active .rm-hb-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.rm-hamburger.active .rm-hb-line:nth-child(2) { opacity: 0; width: 0; }
.rm-hamburger.active .rm-hb-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Overlay */
.rm-mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.65); backdrop-filter: blur(3px); z-index: 1001; }
.rm-mobile-overlay.active { display: block; }

/* Mobil menü */
.rm-mobile-menu {
  position: fixed; top: 0; left: 0;
  width: min(300px,85vw); height: 100dvh;
  background: var(--rm-bg-2);
  border-right: 1px solid var(--rm-border);
  z-index: 1002;
  display: flex; flex-direction: column;
  transform: translateX(-100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.admin-bar .rm-mobile-menu { top: 32px; height: calc(100dvh - 32px); }
@media screen and (max-width: 782px) {
  .admin-bar .rm-mobile-menu { top: 46px; height: calc(100dvh - 46px); }
}
.rm-mobile-menu.active { transform: translateX(0); }
.rm-mobile-menu-header { display: flex; align-items: center; justify-content: space-between; padding: 18px 18px; border-bottom: 1px solid var(--rm-border); flex-shrink: 0; min-height: 72px; }
.rm-mobile-menu-header .rm-logo-img { height: 63px; width: auto; }
.rm-mobile-close { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.05); border: 1px solid var(--rm-border); border-radius: 7px; color: var(--rm-text-3); font-size: 0.9rem; cursor: pointer; transition: color .2s, border-color .2s; flex-shrink: 0; }
.rm-mobile-close:hover { color: var(--rm-text); border-color: var(--rm-border-2); }
.rm-mobile-nav { flex: 1; padding: 10px 12px; }
.rm-mobile-nav-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.rm-mobile-nav-link { display: flex; align-items: center; padding: 11px 14px; border-radius: 8px; font-size: 0.9rem; font-weight: 500; color: var(--rm-text-2) !important; text-decoration: none !important; transition: color .18s, background .18s; }
.rm-mobile-nav-link:hover, .rm-mobile-nav-link.rm-nav-current { color: var(--rm-text) !important; background: var(--rm-surface) !important; }
.rm-mobile-arrow { opacity: .4; margin-left: auto; transition: transform .2s; flex-shrink: 0; }
.rm-mobile-item.open .rm-mobile-arrow { transform: rotate(180deg); }
.rm-mobile-sub { list-style: none; margin: 2px 0 4px 14px; padding: 0; border-left: 2px solid var(--rm-border); display: none; flex-direction: column; gap: 1px; }
.rm-mobile-item.open .rm-mobile-sub { display: flex; }
.rm-mobile-sub-link { display: block; padding: 8px 12px; border-radius: 7px; font-size: 0.83rem; color: var(--rm-text-3) !important; text-decoration: none !important; transition: color .15s, background .15s; }
.rm-mobile-sub-link:hover { color: var(--rm-text-2) !important; background: var(--rm-surface) !important; }
body.menu-open { overflow: hidden; }

/* Responsive */
@media (max-width: 900px) {
  .rm-desktop-nav { display: none; }
  .rm-hamburger { display: flex; }
  .rm-header-contact { display: none; }
}
@media (max-width: 680px) {
  .rm-header-search-btn { display: flex !important; } /* arama butonunu koru */
}

@media (max-width: 480px) {
  .rm-header-inner { padding: 0 16px; gap: 12px; height: 80px; }
  .rm-header-logo .rm-logo-img { height: 63px !important; }
}

/* ── HEADER ARAMA ── */
.rm-header-search {
  position: relative;
}

.rm-header-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--rm-border);
  border-radius: 8px;
  color: var(--rm-text-2);
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
  flex-shrink: 0;
}

.rm-header-search-btn:hover,
.rm-header-search-btn.active {
  border-color: var(--rm-red);
  color: var(--rm-red);
  background: rgba(232,51,74,.08);
}

.rm-header-search-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 300px;
  background: var(--rm-surface);
  border: 1px solid var(--rm-border-2);
  border-radius: var(--rm-radius-lg);
  padding: 14px;
  box-shadow: var(--rm-shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 200;
}

/* Panel başlığı */
.rm-header-search-panel::before {
  content: 'Search';
  display: block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--rm-text-2);
  margin-bottom: 10px;
}

.rm-header-search-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.rm-header-search-form {
  display: flex;
  align-items: center;
  gap: 6px;
}

.rm-header-search-input {
  flex: 1;
  padding: 8px 12px;
  font-size: .875rem;
  min-width: 0;
}

.rm-header-search-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--rm-red);
  border: none;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .2s;
}

.rm-header-search-submit:hover { background: var(--rm-red-light); }

@media (max-width: 680px) {
  .rm-header-search-panel {
    right: -80px;
    width: 260px;
  }
}

/* ── LANG SWITCHER ─────────────────────────────────────── */
.rm-lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--rm-surface);
  border: 1px solid var(--rm-border-2);
  border-radius: 8px;
  padding: 3px;
}
.rm-lang-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 26px;
  padding: 0 8px;
  border-radius: 6px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-decoration: none;
  color: var(--rm-text-2);
  transition: background .15s, color .15s;
}
.rm-lang-item:hover {
  background: var(--rm-surface-2);
  color: var(--rm-text);
}
.rm-lang-item.rm-lang-active {
  background: var(--rm-red);
  color: #fff;
}
.rm-mobile-lang {
  display: flex;
  gap: 6px;
  padding: 12px 20px 20px;
  border-top: 1px solid var(--rm-border);
  margin-top: auto;
  flex-shrink: 0;
}
.rm-mobile-lang .rm-lang-item {
  flex: 1;
  height: 36px;
  border: 1px solid var(--rm-border-2);
  font-size: .8rem;
  justify-content: center;
}
/* Aktif dili gizle */
.rm-lang-switcher .rm-lang-active,
.rm-mobile-lang .rm-lang-active {
  display: none;
}


/* ═══ footer.css ═══ */
/* ============================================================
   FOOTER — Kompakt & Mobil Optimize
   ============================================================ */

.rm-footer {
  border-top: 1px solid var(--rm-border);
}

/* rm-container padding override — footer'da gerekmiyor */
.rm-footer .rm-container {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
}

/* ── ANA BÖLÜM ── */
.rm-footer-main {
  background: var(--rm-bg-2);
  padding: 28px 0;
}

.rm-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}

/* ── MARKA SÜTUNU ── */
.rm-footer-col--brand {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.rm-footer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 12px;
}

.rm-footer-logo-img {
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
}

.rm-footer-logo-text {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--rm-text);
  font-family: var(--rm-font-display);
}

.rm-footer-about {
  color: var(--rm-text-2);
  font-size: .875rem;
  line-height: 1.6;
  margin: 0 0 14px;
}

/* Sosyal butonlar */
.rm-footer-socials {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.rm-footer-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--rm-border);
  border-radius: 8px;
  color: var(--rm-text-2);
  font-size: .85rem;
  text-decoration: none;
  transition: background .2s, border-color .2s, color .2s;
}

.rm-footer-social-btn:hover {
  background: rgba(232,51,74,.1);
  border-color: var(--rm-red);
  color: var(--rm-red);
}

/* ── SÜTUN BAŞLIĞI ── */
.rm-footer-col-title {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--rm-text-2);
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--rm-border);
}

.rm-footer-col-title i { color: var(--rm-red); font-size: .7rem; }

/* ── LİNK LİSTELERİ ── */
.rm-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.rm-footer-links li a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--rm-text-2);
  text-decoration: none;
  font-size: .875rem;
  padding: 4px 0;
  transition: var(--rm-transition);
}

.rm-footer-links li a:hover { color: var(--rm-text); }
.rm-footer-links li a i { font-size: .75rem; opacity: .7; flex-shrink: 0; }

/* ── BORSALAR 2x2 (max 8 = 2x4) ── */
.rm-footer-exchanges-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 8px;
  margin-bottom: 6px;
}

.rm-footer-ex-item {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--rm-text-2);
  text-decoration: none;
  font-size: .875rem;
  padding: 3px 0;
  transition: var(--rm-transition);
  overflow: hidden;
}

.rm-footer-ex-item:hover { color: var(--rm-text); }
.rm-footer-ex-item span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.rm-footer-ex-icon { flex-shrink: 0; opacity: .8; }

.rm-footer-all-link {
  display: inline-block;
  color: var(--rm-red) !important;
  font-size: .8rem !important;
  font-weight: 600;
  text-decoration: none;
  margin-top: 6px;
  transition: var(--rm-transition);
}
.rm-footer-all-link:hover { opacity: .8; }

/* ── SON YAZILAR ── */
.rm-footer-posts li a {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
}

.rm-footer-posts li:last-child a { border-bottom: none; }

.rm-footer-post-title {
  color: var(--rm-text-2);
  font-size: .875rem;
  line-height: 1.35;
  transition: var(--rm-transition);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rm-footer-posts li a:hover .rm-footer-post-title { color: var(--rm-text); }

/* ── DISCLAIMER — iki satır ── */
.rm-footer-disclaimer {
  background: rgba(232,51,74,.03);
  border-top: 1px solid rgba(232,51,74,.08);
  border-bottom: 1px solid var(--rm-border);
  padding: 10px 0;
}

.rm-footer-disclaimer p {
  font-size: .8rem;
  color: var(--rm-text-2);
  line-height: 1.55;
  margin: 0;
}

.rm-footer-disclaimer p + p {
  margin-top: 4px;
}

.rm-footer-disclaimer i { flex-shrink: 0; opacity: .6; font-size: .75rem; }
.rm-footer-disclaimer strong { color: var(--rm-text); font-weight: 600; }

.rm-footer-risk {
  color: var(--rm-text-2) !important;
}

.rm-footer-risk-icon { color: var(--rm-red) !important; opacity: .85; margin-right: 2px; }
.rm-footer-risk-label { color: var(--rm-red) !important; }

.rm-footer-risk i { color: var(--rm-red) !important; opacity: .85 !important; }
.rm-footer-risk strong { color: var(--rm-red) !important; }

/* ── ALT ÇUBUK ── */
.rm-footer-bottom {
  background: var(--rm-bg);
  padding: 9px 0;
}

.rm-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.rm-footer-copy {
  font-size: .75rem;
  color: var(--rm-text-2);
  opacity: .85;
}
.rm-footer-copy .fa-copyright { color: #10b981; opacity: 1; }

.rm-footer-legal { display: flex; align-items: center; flex-wrap: wrap; }

.rm-footer-legal a {
  font-size: .72rem;
  color: var(--rm-text-2);
  text-decoration: none;
  padding: 2px 8px;
  opacity: .65;
  white-space: nowrap;
  transition: var(--rm-transition);
}

.rm-footer-legal a:first-child { padding-left: 0; }

.rm-footer-legal a:hover { opacity: 1; color: var(--rm-text); }

.rm-footer-legal a + a::before {
  content: '·';
  color: var(--rm-text-2);
  opacity: .3;
  pointer-events: none;
}

/* Kadence footer gizle */
#colophon, .site-footer, .footer-wrap { display: none !important; }

/* ── RESPONSIVE ── */

/* Tablet — 960px */
@media (max-width: 900px) {
  .rm-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .rm-footer-col--brand {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
  }

  .rm-footer-logo { margin-bottom: 0; }
  .rm-footer-about { margin-bottom: 0; }

  .rm-footer-col--brand > div {
    flex: 1;
    min-width: 0;
  }

  /* Borsalar 4 sütun tablet'te */
  .rm-footer-exchanges-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Mobil — 640px */
@media (max-width: 680px) {
  .rm-footer-main { padding: 20px 0; }

  .rm-footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .rm-footer-col--brand {
    flex-direction: column;
    gap: 12px;
  }


  /* Borsalar 2 sütun mobilde */
  .rm-footer-exchanges-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Hızlı linkler 2 sütun */
  .rm-footer-col:not(.rm-footer-col--brand) .rm-footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 12px;
  }

  /* Son yazılar tek sütun */
  .rm-footer-posts {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: unset !important;
  }

  .rm-footer-disclaimer p {
    font-size: .75rem;
  }

  .rm-footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .rm-footer-legal {
    gap: 0;
  }
}

/* Küçük mobil — 400px */
@media (max-width: 480px) {
  .rm-footer-col:not(.rm-footer-col--brand) .rm-footer-links {
    grid-template-columns: 1fr;
  }
}

/* Hızlı Linkler 2 sütun grid */
.rm-footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: column;
    grid-template-rows: repeat(5, auto);
    gap: 2px 16px;
}


/* ═══ page.css ═══ */
/* ============================================================
   PAGE.PHP — SAYFA ŞABLONU
   ============================================================ */
/* padding rm-container'dan geliyor */

.rm-page-header-box {
  background: var(--rm-surface);
  border: 1px solid var(--rm-border);
  border-radius: var(--rm-radius);
  padding: 24px 28px;
  margin-bottom: 12px;
}
.rm-page-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
  color: var(--rm-text);
}

.rm-page-content-box {
  background: var(--rm-surface);
  border: 1px solid var(--rm-border);
  border-radius: var(--rm-radius);
  padding: 32px 28px;
}

@media (max-width: 680px) {
  .rm-page-header-box { padding: 18px 18px; }
  .rm-page-content-box { padding: 22px 18px; }
}

/* ── SCROLL TO TOP ── */
#rm-scroll-top {
  position: fixed;
  bottom: 20px; right: 20px;
  transition:bottom .3s ease;
  width: 40px; height: 40px;
  background: var(--rm-surface-2);
  border: 1px solid var(--rm-border-2);
  border-radius: var(--rm-radius-md);
  color: var(--rm-red);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 8900;
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s, transform .25s, visibility .25s, background .2s, color .2s, border-color .2s;
}
#rm-scroll-top.visible {
  opacity: .75;
  visibility: visible;
  transform: translateY(0);
  box-shadow: 0 0 0 2px rgba(232,51,74,.25), 0 0 12px rgba(232,51,74,.15);
}
#rm-scroll-top.visible:hover {
  opacity: 1;
}
#rm-scroll-top:hover {
  background: var(--rm-surface-2);
  color: var(--rm-red);
  border-color: rgba(232,51,74,.3);
  box-shadow: 0 0 0 2px rgba(232,51,74,.5), 0 0 18px rgba(232,51,74,.3);
}

/* ── rm-page-layout / rm-page-main ── */
.rm-page-layout {
  display: block;
}
.rm-page-main { min-width: 0; }


/* ═══ cookie.css ═══ */
/* ============================================================
   ÇEREZ POPUP — rm-cookie
   ============================================================ */

#rm-cookie-bar {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 99999;
  width: calc(100% - 32px);
  max-width: 780px;

  background: var(--rm-surface-2);
  border: 1px solid var(--rm-border-2);
  border-bottom: 2px solid var(--rm-red);
  border-radius: var(--rm-radius-lg);
  box-shadow: var(--rm-shadow-lg), 0 0 40px rgba(232,51,74,.08);

  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 18px;

  opacity: 0;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), opacity .35s ease;
  pointer-events: none;
}

#rm-cookie-bar.rm-cookie-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* İkon */
.rm-cookie-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: rgba(232,51,74,.1);
  border: 1px solid rgba(232,51,74,.2);
  border-radius: var(--rm-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rm-red);
  font-size: 1rem;
}

/* Metin */
.rm-cookie-text {
  flex: 1;
  min-width: 0;
}

.rm-cookie-text p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--rm-text-2);
  line-height: 1.5;
}

.rm-cookie-text a {
  color: var(--rm-red);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.rm-cookie-text a:hover {
  color: var(--rm-red-light);
}

/* Butonlar */
.rm-cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.rm-cookie-accept {
  padding: 8px 18px;
  background: var(--rm-red);
  color: #fff;
  border: none;
  border-radius: var(--rm-radius);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--rm-transition);
  font-family: var(--rm-font-body);
}

.rm-cookie-accept:hover {
  background: var(--rm-red-light);
  box-shadow: 0 0 16px var(--rm-red-glow);
}

.rm-cookie-reject {
  padding: 8px 14px;
  background: transparent;
  color: var(--rm-text-2);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--rm-radius);
  font-size: 0.82rem;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--rm-transition);
  font-family: var(--rm-font-body);
}

.rm-cookie-reject:hover {
  color: var(--rm-text-2);
  border-color: rgba(255,255,255,.2);
}

/* Mobil */
@media (max-width: 600px) {
  #rm-cookie-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    bottom: 16px;
    padding: 16px;
  }

  .rm-cookie-icon { display: none; }

  .rm-cookie-actions {
    width: 100%;
  }

  .rm-cookie-accept {
    flex: 1;
    text-align: center;
  }

  .rm-cookie-reject {
    flex: 1;
    text-align: center;
  }
}


/* ═══ widgets.css ═══ */
/*! ReferralMars widgets — WP Rocket RUCSS: bu dosyayı koru */



/* ═══ trust-bar.css ═══ */
/* ============================================================
   GÜVEN ÇUBUĞU
   ============================================================ */
.rm-trust-bar {
  background: var(--rm-surface);
  border-top: 1px solid var(--rm-border);
  border-bottom: 1px solid var(--rm-border);
}
/* Masaüstü: 4 kolon grid */
.rm-trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.rm-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 18px;
  border-right: 1px solid var(--rm-border);
  transition: background .2s;
}
.rm-trust-item:hover { background: rgba(255,255,255,.02); }
.rm-trust-item:last-child { border-right: none; }
.rm-trust-icon-wrap {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: rgba(232,51,74,.08);
  border: 1px solid rgba(232,51,74,.14);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .2s, border-color .2s;
}
.rm-trust-item:hover .rm-trust-icon-wrap {
  background: rgba(232,51,74,.14);
  border-color: rgba(232,51,74,.28);
}
.rm-trust-icon { font-size: 1rem; line-height: 1; display: inline-flex; align-items: center; }
.rm-trust-content { min-width: 0; }
.rm-trust-title { font-size: 0.875rem; font-weight: 700; color: var(--rm-text); margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rm-trust-desc  { font-size: 0.75rem; color: var(--rm-text-2); line-height: 1.4; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ── Mobil responsive (burada merkezi yönetim) ── */
@media (max-width: 900px) {
  .rm-trust-bar {
    background: transparent;
    border: none;
    margin-top: -180px;
    position: relative;
    z-index: 2;
  }
  .rm-trust-inner {
    grid-template-columns: 1fr;
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 16px;
    gap: 8px;
  }
  .rm-trust-item {
    background: rgba(10,14,26,.72) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-right: none;
    border-bottom: none;
    border: 1px solid var(--rm-border);
    border-radius: var(--rm-radius);
    padding: 12px 14px;
  }
  .rm-trust-item:hover { background: rgba(22,32,53,.85) !important; }
}


/* ═══ hero-bar.css ═══ */
/* ============================================================
   KIRMIZI ÇUBUK — Hero borsa adı
   ============================================================ */
.rm-exchange-hero-name {
  display: flex;
  align-items: center;
  gap: 10px;
}
.rm-exchange-hero-name::before {
  content: '';
  display: inline-block;
  width: 3px;
  min-height: 1em;
  background: var(--rm-red);
  border-radius: 2px;
  flex-shrink: 0;
}
.rm-sc-name::before {
  content: '';
  display: inline-block;
  width: 3px;
  min-height: 1em;
  background: var(--rm-red);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ============================================================
   YENİ CSS SINIFLARI — inline style'dan taşınanlar
   ============================================================ */

/* Ref kutusu başlık ve açıklama */
.rm-ref-box-title { font-weight: 800; font-size: 1.125rem; color: var(--rm-text); margin-bottom: 3px; }
.rm-ref-box-desc  { font-size: 0.875rem; color: var(--rm-text-3); }

/* Özellikler listesi */
.rm-feature-item  { display: flex; align-items: center; gap: 8px; font-size: 1rem; color: var(--rm-text-2); line-height: 1.4; }
.rm-feature-check { color: var(--rm-green); font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* Bonus maddeleri (hero içi) */
.rm-bonus-item { display: flex; align-items: center; gap: 7px; font-size: 1rem; color: var(--rm-text-2); line-height: 1.4; }
.rm-bonus-icon { color: var(--rm-green); font-weight: 700; flex-shrink: 0; font-size: 0.875rem; margin-top: 2px; }

/* Pros-cons içeriği */
.rm-pros-cons li, .rm-pros-cons-title { font-size: 1rem; }

/* Tab kayma önleyici — sekmeler kaydırma tetiklemez */
.rm-article-tab:focus { outline: none; }
#rm-article-tabs { scroll-margin: 0; }
.rm-article-item { scroll-margin: 0; }

/* ── rm-typewriter-wrap ── */
.rm-typewriter-wrap {
  display: inline-block;
  min-width: 2px;
}


/* ═══ hero-signal.css ═══ */
/* ============================================================
   HERO — Canlı Sinyal Çubuğu
   ============================================================ */
.rm-hero-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--rm-text-3);
  letter-spacing: .04em;
  margin-bottom: 14px;
}

/* ============================================================
   ÖNE ÇIKAN ÖZELLİKLER — .rm-features-grid
   ============================================================ */
.rm-features-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 8px;
}

.rm-feature-pill {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: var(--rm-bg);
  border: 1px solid var(--rm-border);
  border-radius: var(--rm-radius);
  padding: 10px 12px;
  transition: border-color .15s;
}
.rm-feature-pill:hover {
  border-color: rgba(16,185,129,.25);
}

.rm-feature-pill-check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--rm-green-bg);
  border: 1px solid rgba(16,185,129,.2);
  color: var(--rm-green);
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.rm-feature-pill-text {
  font-size: 0.875rem;
  color: var(--rm-text-2);
  line-height: 1.5;
}

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

/* ============================================================
   EXCHANGE HERO — Sağa doğru kaybolan çizgi
   ============================================================ */
.rm-exchange-hero-divider {
  height: 1px;
  margin-left: 76px; /* logo (60px) + gap (16px) */
  margin-top: 0;
  margin-bottom: 16px;
  background: linear-gradient(
    to right,
    var(--rm-red) 0%,
    var(--rm-red) 12%,
    rgba(232,51,74,.25) 60%,
    transparent 100%
  );
  border-radius: 1px;
}

/* ============================================================
   MAKALE LİSTESİ — Sekme animasyonu
   ============================================================ */
.rm-article-item {
  transition: opacity .2s ease, transform .2s ease;
}
.rm-article-item.rm-art-hidden {
  display: none !important;
}
@keyframes rm-art-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.rm-article-item.rm-art-animate {
  animation: rm-art-in .25s ease forwards;
}


/* ═══ exchanges.css ═══ */
/* ============================================================
   EXCHANGE BÖLÜMÜ
   ============================================================ */
.rm-section { padding: 15px 0; }
.rm-section-head { text-align: center; margin-bottom: 28px; }
.rm-section-head h2 { font-size: clamp(1.5rem,3vw,2.4rem); font-weight: 800; margin-bottom: 10px; line-height: 1.15; }
.rm-section-head p  { font-size: 1rem; color: var(--rm-text-2); max-width: 500px; margin: 0 auto; }

/* Başlık + buton yan yana */
.rm-section-head--split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  margin-bottom: 20px;
}
.rm-section-head--split > div { flex: 1; }
.rm-section-head--split p { margin: 0; max-width: none; }
.rm-section-head--split .rm-btn { flex-shrink: 0; }

.rm-filter-tabs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px; justify-content: center; }
.rm-filter-tab {
  padding: 6px 14px; border-radius: 4px; font-weight: 600;
  font-size: 0.82rem;
  color: var(--rm-text-2); background: var(--rm-surface);
  border: 1px solid var(--rm-border); cursor: pointer;
  transition: var(--rm-transition); font-family: var(--rm-font-body);
}
.rm-filter-tab.active { background: rgba(232,51,74,.09); border-color: rgba(232,51,74,.28); color: var(--rm-red); }
.rm-filter-tab:hover:not(.active) { border-color: var(--rm-border-2); color: var(--rm-text); }

/* ── EXCHANGE GRID ── */
.rm-exchange-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  min-width: 0;
  overflow: hidden;
}

/* Kart */
.rm-exchange-card {
  background: var(--rm-surface);
  border: 1px solid var(--rm-border);
  border-radius: var(--rm-radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  position: relative;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  min-width: 0;
  max-width: 100%;
  word-break: break-word;
}
.rm-exchange-card:hover {
  border-color: color-mix(in srgb, var(--exc-color, var(--rm-red)) 40%, transparent);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
}

/* Üst renk şeridi */
.rm-exc-stripe {
  height: 3px;
  background: var(--exc-color, var(--rm-red));
  flex-shrink: 0;
}

/* Header */
.rm-exc-header {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 16px 10px;
}
.rm-exc-logo {
  width: 44px; height: 44px;
  border-radius: var(--rm-radius);
  background: var(--rm-bg);
  border: 1px solid var(--rm-border);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
}
.rm-exc-title { flex: 1; min-width: 0; }
.rm-exc-name {
  font-size: 0.95rem; font-weight: 800;
  color: var(--rm-text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.rm-exc-meta { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 4px; align-items: center; }
.rm-exc-badge {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: .04em;
}
.rm-exc-score-box {
  flex-shrink: 0;
  background: rgba(245,158,11,.1);
  border: 1px solid rgba(245,158,11,.25);
  border-radius: 6px;
  padding: 4px 9px;
  font-size: 0.85rem; font-weight: 800;
  color: var(--rm-amber);
  line-height: 1;
}

/* Score bar */
.rm-exc-bar-bg {
  height: 2px;
  background: rgba(255,255,255,.06);
  margin: 0 16px 12px;
  border-radius: 2px;
  overflow: hidden;
}
.rm-exc-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--exc-color, var(--rm-red)), rgba(168,85,247,.8));
  border-radius: 2px;
  transition: width .6s ease;
}

/* Bonus satırları */
.rm-exc-bonuses {
  flex: 1;
  padding: 0 16px 12px;
  display: flex; flex-direction: column; gap: 5px;
}
.rm-exc-bonus-row {
  display: flex; align-items: center; gap: 7px; line-height: 1.45;
  font-size: 0.8rem; color: var(--rm-text-2);
}
.rm-exc-check {
  color: var(--rm-green);
  font-weight: 700; font-size: 0.75rem;
  flex-shrink: 0; margin-top: 1px;
}

/* Footer */
.rm-exc-footer {
  display: flex; gap: 6px; flex-wrap: nowrap;
  padding: 10px 16px 14px;
  border-top: 1px solid var(--rm-border);
  margin-top: auto;
}
.rm-exc-cta { flex: 1; justify-content: center; }
.rm-exc-copy {
  font-size: 0.72rem !important;
  padding: 7px 9px !important;
  white-space: nowrap;
  flex-shrink: 0;
}

/* More butonu */
.rm-exc-more {
  text-align: center;
  margin-top: 36px;
}

/* ═══ Anasayfa section'ları (front-page.php) ═══ */
/* exchange-archive.css'ten taşındı — front-page.php kullanıyor */
/* .rm-cta-banner, .rm-faq-section, .rm-posts-section stilleri aşağıda exchanges.css bölümünde tanımlıdır */


/* ═══ exchange-hub.css ═══ */
/* ============================================================
   EXCHANGE HUB (taxonomy-exchange.php)
   ============================================================ */
.rm-exchange-hero { background: var(--rm-surface); border: 1px solid var(--rm-border); border-radius: var(--rm-radius); padding: 24px; margin-bottom: 24px; position: relative; overflow: hidden; }
.rm-exchange-hero-top  { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 16px; }
.rm-exchange-hero-logo { width: 60px; height: 60px; border-radius: var(--rm-radius-md); background: var(--rm-bg); border: 1px solid var(--rm-border); display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; }
.rm-exchange-hero-name { font-family: var(--rm-font-display) !important; font-size: 1.5rem !important; font-weight: 800; margin-bottom: 7px; line-height: 1; color: var(--rm-text) !important; }
.rm-exchange-hero-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.rm-exchange-hero-score { font-family: var(--rm-font-display); font-size: 2.25rem; font-weight: 800; color: var(--rm-amber); line-height: 1; }
.rm-exchange-hero-ctas { display: flex; flex-wrap: wrap; gap: 10px; }

.rm-rating-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.rm-rating-label { display: flex; justify-content: space-between; margin-bottom: 5px; color: var(--rm-text-2); }
.rm-rating-bar  { height: 5px; background: var(--rm-bg); border-radius: var(--rm-radius); overflow: hidden; }
.rm-rating-fill { height: 100%; border-radius: var(--rm-radius); background: linear-gradient(90deg,var(--rm-red),var(--rm-orange)); width: var(--bar-w, 0%); animation: rm-bar-grow 1.2s cubic-bezier(.22,.68,0,1.2) both; }
@keyframes rm-bar-grow { from { width: 0; } to { width: var(--bar-w, 0%); } }
.rm-rating-fill.green { background: var(--rm-green); }
.rm-rating-fill.blue  { background: var(--rm-blue); }
.rm-rating-fill.amber { background: var(--rm-amber); }

.rm-pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.rm-pros-list, .rm-cons-list { background: transparent; padding: 14px 0 0; }
.rm-pros-list { border-top: 2px solid var(--rm-green); }
.rm-cons-list { border-top: 2px solid var(--rm-red); }

.rm-pros-cons li { border-bottom: 1px solid var(--rm-border); }
.rm-pros-cons li:last-child { border-bottom: none; }
.rm-pros-cons-title { font-weight: 700; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .05em; }
.rm-pros-cons-title.pro { color: var(--rm-green); }
.rm-pros-cons-title.con { color: var(--rm-red); }
.rm-pros-cons ul  { list-style: none; padding: 0; margin: 0; }
.rm-pros-cons li  { display: flex; align-items: center; gap: 6px; padding: 5px 0; color: var(--rm-text-2); border-bottom: 1px solid var(--rm-border); line-height: 1.4; }

.rm-pros-list li::before { content: '✓'; color: var(--rm-green); font-weight: 700; flex-shrink: 0; }
.rm-cons-list li::before { content: '✗'; color: var(--rm-red);   font-weight: 700; flex-shrink: 0; }

.rm-security-note { background: rgba(16,185,129,.04); border: 1px solid rgba(16,185,129,.1); border-radius: var(--rm-radius); padding: 16px 18px; }
.rm-card-body-text { color: var(--rm-text-2); line-height: 1.75; margin: 0; font-size: 1rem; }

.rm-article-tabs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.rm-article-tab { padding: 6px 14px; border-radius: 4px; font-weight: 600; font-size: 0.82rem; color: var(--rm-text-2); background: var(--rm-surface); border: 1px solid var(--rm-border); cursor: pointer; transition: var(--rm-transition); font-family: var(--rm-font-body); display: inline-flex; align-items: center; gap: 6px; }
.rm-article-tab.active { background: rgba(232,51,74,.09); border-color: rgba(232,51,74,.28); color: var(--rm-red); }
.rm-article-tab:hover:not(.active) { border-color: var(--rm-border-2); color: var(--rm-text); }

.rm-video-wrap { position: relative; padding-bottom: 56.25%; height: 0; border-radius: var(--rm-radius); overflow: hidden; background: var(--rm-bg); }
.rm-video-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

/* ── rm-exchange-bonus-highlight ── */
.rm-exchange-bonus-highlight {
  display: flex; align-items: center; gap: 8px;
  background: var(--rm-green-bg);
  border: 1px solid rgba(16,185,129,.2);
  border-radius: var(--rm-radius);
  padding: 10px 14px;
  font-size: 0.875rem; color: var(--rm-green);
  margin-bottom: 14px;
}
.rm-exchange-bonus-highlight i { color: var(--rm-green); font-size: .85rem; }

/* ── rm-rating-item ── */
.rm-rating-item {
  display: flex; flex-direction: column;
  gap: 4px; margin-bottom: 8px;
}

/* ── rm-other-exchanges-title ── */
.rm-other-exchanges-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--rm-text-3);
  margin-bottom: 8px;
}


/* ═══ exchange-archive.css ═══ */
/* ============================================================
   BORSALAR ARŞİVİ — /exchange/
   ============================================================ */

/* Başlık */
.rm-archive-head {
  background: var(--rm-surface);
  border: 1px solid var(--rm-border);
  border-radius: var(--rm-radius);
  padding: 20px 24px;
  margin-bottom: 24px;
}
.rm-archive-head-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-top: 10px;
}
.rm-archive-count {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--rm-bg);
  border: 1px solid var(--rm-border);
  border-radius: var(--rm-radius);
  padding: 10px 20px;
  flex-shrink: 0;
  align-self: flex-start;
}
.rm-archive-count-num {
  font-family: var(--rm-font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--rm-text);
  line-height: 1;
}
.rm-archive-count-label {
  font-size: 0.75rem;
  color: var(--rm-text-3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 3px;
}

/* 2 kolonlu grid */
.rm-archive-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

/* Kart — dikey flex, 3 bölüm: header / body / footer */
.rm-archive-card {
  background: var(--rm-surface);
  border: 1px solid var(--rm-border);
  border-radius: var(--rm-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.rm-archive-card:hover {
  border-color: var(--rm-border-2);
  transform: translateY(-2px);
  box-shadow: var(--rm-shadow);
}

/* Renk şeridi */
.rm-archive-card-bar { height: 3px; flex-shrink: 0; }

/* ── HEADER ── */
.rm-archive-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px 12px;
  flex-shrink: 0;
}

/* Amblem — geniş logo görseli */
.rm-archive-card-emblem {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.rm-archive-card-emblem-img {
  width: 130px;
  height: auto;
  max-height: 48px;
  object-fit: contain;
  display: block;
}

/* Amblem yoksa küçük ikon */
.rm-archive-card-logo {
  width: 44px; height: 44px;
  border-radius: var(--rm-radius);
  background: var(--rm-bg);
  border: 1px solid var(--rm-border);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
}

/* Sağ: badge + puan */
.rm-archive-card-header-right {
  margin-left: auto;
  flex-shrink: 0;
  align-self: flex-start;
}
.rm-archive-card-badges { display: flex; flex-wrap: wrap; gap: 4px; }

/* Puan kutusu */
.rm-archive-card-score {
  flex-shrink: 0;
  display: flex; align-items: baseline; gap: 2px;
  background: rgba(245,158,11,.08);
  border: 1px solid rgba(245,158,11,.18);
  border-radius: var(--rm-radius);
  padding: 4px 9px;
}
.rm-archive-score-num {
  font-family: var(--rm-font-display);
  font-size: 0.875rem; font-weight: 800;
  color: var(--rm-amber);
}

/* ── BODY: açıklama + bonuslar ── */
.rm-archive-card-body {
  flex: 1;
  padding: 10px 16px 11px;
  display: flex; flex-direction: column; gap: 8px;
}
.rm-archive-card-desc {
  font-size: 0.875rem; font-weight: 700; color: var(--rm-text-2);
  line-height: 1.6; margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.rm-archive-card-bonuses { display: flex; flex-direction: column; gap: 3px; flex: 1; min-width: 0; }
.rm-archive-bonus-row {
  display: flex; align-items: flex-start; gap: 6px;
  font-size: 0.875rem; color: var(--rm-text-2);
}
/* Bonus sol + kopyala sağ */
.rm-archive-bonus-area { display: flex; justify-content: space-between; gap: 12px; }
.rm-sc-archive {
  width: auto;
  margin-left: auto;
}

/* ── FOOTER: butonlar — her zaman yatay ── */
.rm-archive-card-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 6px;
  padding: 10px 16px 14px;
  border-top: 1px solid var(--rm-border);
  flex-shrink: 0;
}
.rm-archive-card-actions .rm-btn {
  flex: 1;
  justify-content: center;
}

/* Responsive */
@media (max-width: 900px) {
  .rm-archive-grid { grid-template-columns: 1fr; }
  .rm-archive-head-row { flex-direction: column; gap: 12px; }
  .rm-archive-count { align-self: stretch; flex-direction: row; justify-content: center; gap: 8px; padding: 10px 16px; }
}

/* Archive badge */
.rm-archive-badge {
  display: inline-flex;
  align-items: center;
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: .06em;
  flex-shrink: 0;
}
.rm-archive-badge-hot {
  background: rgba(232,51,74,.1);
  border: 1px solid rgba(232,51,74,.25);
  color: var(--rm-red);
}
.rm-archive-badge-new {
  background: rgba(16,185,129,.08);
  border: 1px solid rgba(16,185,129,.2);
  color: var(--rm-green);
}
.rm-archive-badge-top {
  background: rgba(245,158,11,.08);
  border: 1px solid rgba(245,158,11,.2);
  color: var(--rm-amber);
}

/* Honeypot */
.rm-hp { display: none !important; }

/* ── CTA BANNER ── */
.rm-cta-banner {
  background: var(--rm-bg-2);
  border-top: 1px solid var(--rm-border);
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  text-align: center;
}
.rm-cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(232,51,74,.12) 0%, transparent 70%);
  pointer-events: none;
}
.rm-cta-inner {
  max-width: 620px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative; z-index: 1;
}
.rm-cta-inner h2 { font-size: clamp(1.6rem,3.5vw,2.6rem); font-weight: 800; margin-bottom: 14px; }
.rm-cta-inner p  { font-size: 1rem; color: var(--rm-text-2); margin-bottom: 28px; line-height: 1.65; }
.rm-cta-buttons  { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
/* Mobil — FAQ ve HIW */
@media (max-width: 680px) {
  .rm-cta-buttons { flex-direction: column; align-items: center; }
  .rm-cta-buttons .rm-btn { width: 100%; max-width: 300px; justify-content: center; }
}

@keyframes slow-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes rmHF {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
/* ── SON YAZILAR ── */
.rm-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.rm-post-card {
  background: var(--rm-surface);
  border: 1px solid var(--rm-border);
  border-radius: var(--rm-radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: var(--rm-transition);
}
.rm-post-card:hover {
  border-color: rgba(232,51,74,.2);
  transform: translateY(-2px);
}
.rm-post-thumb {
  height: 180px;
  overflow: hidden;
}
.rm-post-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
  display: block;
}
.rm-post-card:hover .rm-post-thumb img { transform: scale(1.04); }
.rm-post-body {
  padding: 16px 18px;
  display: flex; flex-direction: column;
  flex: 1;
}
.rm-post-title {
  font-size: 0.95rem; font-weight: 700;
  line-height: 1.45; margin-bottom: 12px;
}
.rm-post-title a { color: var(--rm-text); text-decoration: none; }
.rm-post-title a:hover { color: var(--rm-red); }
.rm-post-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto;
  border-top: 1px solid var(--rm-border);
  font-size: 0.75rem;
}
.rm-post-date { color: var(--rm-text-3); }
.rm-post-read { color: var(--rm-red); font-weight: 600; text-decoration: none; }
.rm-post-read:hover { color: var(--rm-orange); }
/* ── SECTION GLOW'LARI ── */
.rm-exchange-section { position: relative; overflow: hidden; }
.rm-exchange-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 50% 60% at 90% 50%, rgba(232,51,74,.06) 0%, transparent 60%);
}

.rm-why-section { position: relative; overflow: hidden; }
.rm-why-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 55% 50% at 10% 60%, rgba(168,85,247,.07) 0%, transparent 60%);
}

.rm-faq-section { position: relative; overflow: hidden; }
.rm-faq-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 45% 55% at 85% 20%, rgba(232,51,74,.05) 0%, transparent 55%);
}

.rm-posts-section { background: var(--rm-bg); position: relative; overflow: hidden; }
.rm-posts-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 50% 60% at 15% 80%, rgba(255,107,53,.06) 0%, transparent 55%);
}
/* ============================================================
   MAKALE REF KUTUSU — rm-article-ref-box
   ============================================================ */
.rm-article-ref-box {
  background: var(--rm-surface);
  border: 1px solid var(--rm-border);
  border-top: 2px solid var(--rm-red);
  border-radius: var(--rm-radius);
  overflow: hidden;
  margin-bottom: 24px;
}

/* Header: logo | isim+açıklama | Kayıt Ol butonu */
.rm-arb-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--rm-surface-2);
  border-bottom: 1px solid var(--rm-border);
}
.rm-arb-logo {
  width: 40px; height: 40px;
  border-radius: var(--rm-radius);
  background: var(--rm-bg);
  border: 1px solid var(--rm-border);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
}
.rm-arb-meta { flex: 1; min-width: 0; }
.rm-arb-title {
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--rm-text);
  margin-bottom: 2px;
  display: flex; align-items: center; gap: 8px;
}
.rm-arb-title::before {
  content: '';
  display: inline-block; width: 3px; min-height: 1em;
  background: var(--rm-red); border-radius: 2px; flex-shrink: 0;
}
.rm-arb-desc { font-size: 0.875rem; color: var(--rm-text-2); }

/* Alt satır: 📋 Kopyala butonu + kod kutusu */
.rm-arb-copy-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
}
.rm-arb-copy-btn {
  flex-shrink: 0;
  white-space: nowrap;
}
.rm-arb-code-box {
  flex: 1;
  background: var(--rm-bg);
  border: 1px solid var(--rm-border);
  border-radius: var(--rm-radius);
  padding: 8px 14px;
  font-family: var(--rm-font-mono);
  font-size: 0.875rem;
  color: var(--rm-text-2);
  font-weight: 600;
  letter-spacing: .05em;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Mobil */
@media (max-width: 480px) {
  .rm-arb-header { flex-wrap: wrap; }
  .rm-arb-header .rm-btn { width: 100%; justify-content: center; margin-top: 8px; }
  .rm-arb-copy-row { flex-direction: row; flex-wrap: nowrap; }
  .rm-arb-copy-btn { flex-shrink: 0; }
  .rm-arb-code-box { flex: 1; min-width: 0; }
}


/* ═══ sidebar-card.css ═══ */
/* ============================================================
   SIDEBAR KARTI (inc/sidebar-card.php)
   ============================================================ */
.rm-sidebar-card {
  background: var(--rm-surface);
  border: 1px solid var(--rm-border);
  border-radius: var(--rm-radius);
  overflow: hidden;
}
.rm-trust-card-wrap { border-top: 2px solid var(--rm-green); }

.rm-sc-header {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--rm-border);
  background: var(--rm-surface-2);
}
.rm-sc-logo {
  width: 36px; height: 36px; border-radius: var(--rm-radius);
  background: var(--rm-bg); border: 1px solid var(--rm-border);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
}
.rm-sc-meta     { flex: 1; min-width: 0; }
.rm-sc-name     { font-weight: 800; font-size: 1.125rem; color: var(--rm-text); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; display: flex; align-items: center; gap: 10px; }
.rm-sc-location { font-size: 0.75rem; color: var(--rm-text-3); margin-top: 1px; }

.rm-sc-score-box {
  flex-shrink: 0;
  background: rgba(245,158,11,.1);
  border: 1px solid rgba(245,158,11,.25);
  border-radius: var(--rm-radius);
  padding: 5px 9px; text-align: center; white-space: nowrap;
}
.rm-sc-score-num { display: inline; font-family: var(--rm-font-display); font-size: 1.5rem; font-weight: 800; color: var(--rm-amber); line-height: 1; }
.rm-sc-score-sub { display: inline; font-size: 0.75rem; color: var(--rm-text-2); margin-left: 1px; }

.rm-sc-bonus-list { border-bottom: 1px solid var(--rm-border); padding: 10px 14px; display: flex; flex-direction: column; gap: 5px; }
.rm-sc-bonus-item { display: flex; align-items: center; gap: 8px; color: var(--rm-text-2); font-size: 0.875rem; }
.rm-sc-bonus-icon { flex-shrink: 0; font-size: 0.78rem; color: var(--rm-amber); line-height: 1; }

.rm-sc-section  { padding: 8px 14px; border-bottom: 1px solid var(--rm-border); }
.rm-sc-copy     { width: 100%; justify-content: center; }
.rm-sc-buttons  { padding: 10px 14px; display: flex; gap: 7px; }
.rm-sc-btn      { flex: 1; justify-content: center; }
.rm-sc-disclaimer { font-size: 0.75rem; text-align: center; padding: 0 14px 9px; color: var(--rm-text-2); }

.rm-sc-trust-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid var(--rm-border);
  background: var(--rm-surface-2);
  font-weight: 800; font-size: 1.125rem; color: var(--rm-text);
}

.rm-sc-ratings  { padding: 10px 14px; display: grid; gap: 6px; border-bottom: 1px solid var(--rm-border); }
.rm-sc-rating-row { display: flex; align-items: center; gap: 25px; }
.rm-sc-rating-lbl { color: var(--rm-text-3); width: 50px; flex-shrink: 0; font-size: 0.875rem; }
.rm-sc-rating-bar-wrap { flex: 1; height: 4px; background: var(--rm-bg); border-radius: var(--rm-radius); overflow: hidden; }
.rm-sc-rating-val { font-weight: 700; color: var(--rm-text-2); width: 18px; text-align: right; font-size: 0.875rem; }

.rm-sc-pros     { padding: 8px 14px; border-bottom: 1px solid var(--rm-border); display: flex; flex-direction: column; gap: 4px; }
.rm-sc-pro-item { display: flex; align-items: center; gap: 7px; color: var(--rm-text-2); font-size: 0.875rem; line-height: 1.4; }
.rm-sc-pro-icon { color: var(--rm-green); font-weight: 700; flex-shrink: 0; }

.rm-sc-sec-note {
  font-size: 0.875rem;
  color: var(--rm-text-2); line-height: 1.5;
  background: var(--rm-green-bg); border-radius: 5px;
  padding: 6px 8px; margin: 8px 14px;
  border: 1px solid rgba(16,185,129,.1);
}
.rm-sc-full-review {
  display: flex; align-items: center; justify-content: center; gap: 5px;
  font-size: 0.875rem; font-weight: 700; color: var(--rm-red) !important; text-decoration: none !important;
  margin: 6px 14px 10px; padding: 8px;
  background: rgba(232,51,74,.06); border: 1px solid rgba(232,51,74,.15);
  border-radius: var(--rm-radius); transition: var(--rm-transition);
}
.rm-sc-full-review:hover { background: rgba(232,51,74,.1); color: var(--rm-red) !important; }

/* ── ORTAK SIDEBAR: ARAMA ── */
.rm-sidebar-search-box {
  padding: 0; /* rm-sidebar-card zaten border+radius veriyor */
}

.rm-sidebar-search-box .rm-sc-trust-header {
  padding: 12px 14px;
  border-bottom: 1px solid var(--rm-border);
}

.rm-sidebar-search-form {
  display: flex;
  gap: 8px;
  padding: 12px 14px;
  background: var(--rm-surface); /* form arka planı da koyu olsun */
}

.rm-sidebar-search-input {
  flex: 1;
  padding: 8px 12px;
  font-size: .85rem;
  min-width: 0;
  background: var(--rm-bg);
  border: 1px solid var(--rm-border);
  border-radius: var(--rm-radius);
  color: var(--rm-text);
  outline: none;
  transition: border-color .2s;
}

.rm-sidebar-search-input::placeholder { color: var(--rm-text-2); opacity: .6; }
.rm-sidebar-search-input:focus { border-color: var(--rm-red); }

.rm-sidebar-search-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--rm-red);
  border: none;
  border-radius: var(--rm-radius);
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .2s;
}

.rm-sidebar-search-submit:hover { background: var(--rm-red-light); }

.rm-sidebar-recent-posts {
  padding-bottom: 4px;
}

.rm-sidebar-recent-posts .rm-cat-sidebar-post {
  padding: 10px 14px;
}

/* ── rm-sidebar-exchanges ── */
.rm-sidebar-exchanges {
  display: flex;
  flex-direction: column;
  gap: 6px;
}


/* ═══ toc.css ═══ */
/* ============================================================
   TABLE OF CONTENTS — rm-toc
   ============================================================ */
.rm-toc {
  background: var(--rm-surface-2);
  border: 1px solid var(--rm-border);
  border-radius: var(--rm-radius);
  margin-bottom: 28px;
  overflow: hidden;
}
.rm-toc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  cursor: pointer;
  user-select: none;
  transition: background .2s;
}
.rm-toc-header:hover { background: var(--rm-surface-3); }
.rm-toc-title { font-weight: 700; font-size: 0.875rem; color: var(--rm-text); }

.rm-toc-body { border-top: 1px solid var(--rm-border); padding: 8px 12px; }

.rm-toc-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 1px;
}

/* Her satır: numara + link yan yana hizalı */
.rm-toc-list li {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.rm-toc-num {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--rm-text-3);
  font-family: var(--rm-font-mono);
  flex-shrink: 0;
  min-width: 20px;
  text-align: right;
  transition: color .15s;
}

.rm-toc-list a {
  flex: 1;
  font-size: 0.875rem;
  color: var(--rm-text-2);
  text-decoration: none;
  padding: 1px 8px;
  border-radius: 6px;
  transition: color .15s, background .15s;
}
.rm-toc-list li:hover .rm-toc-num { color: var(--rm-text-2); }
.rm-toc-list a:hover { color: var(--rm-text); background: var(--rm-surface-3); }
.rm-toc-list a.active { color: var(--rm-red); font-weight: 600; background: rgba(232,51,74,.07); }
.rm-toc-list li:has(a.active) .rm-toc-num { color: var(--rm-red); }

/* H3 — sadece girinti, boyut eşit */
.rm-toc-list li:has(a.rm-toc-h3) { padding-left: 14px; }


/* ============================================================
   ETİKETLER
   ============================================================ */
.rm-tags-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 14px 16px;
  background: var(--rm-surface);
  border: 1px solid var(--rm-border);
  border-radius: var(--rm-radius);
}
.rm-tags-label {
  font-size: 0.875rem;
  color: var(--rm-text-3);
  font-weight: 700;
  align-self: center;
}
.rm-tag-link {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  background: var(--rm-surface-2);
  border: 1px solid var(--rm-border);
  border-radius: var(--rm-radius);
  font-size: 0.875rem;
  color: var(--rm-text-2);
  text-decoration: none;
  transition: var(--rm-transition);
  font-weight: 500;
}
.rm-tag-link:hover {
  border-color: var(--rm-red);
  color: var(--rm-red);
  background: rgba(232,51,74,.06);
}


/* ═══ comments.css ═══ */
/* ============================================================
   YORUMLAR
   ============================================================ */
.rm-comments-wrap {
  max-width: 900px;
}

.rm-comments-header { margin-bottom: 24px; }
.rm-comments-title {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--rm-text);
  margin-bottom: 14px;
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--rm-surface);
  border: 1px solid var(--rm-border);
  border-radius: var(--rm-radius);
  padding: 16px;
  transition: var(--rm-transition);
  position: relative;
}

/* Yorum listesi */
.rm-comment-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 16px;
}
.rm-comment-list .children {
  list-style: none;
  padding: 0; margin: 16px 0 0 40px;
  display: flex; flex-direction: column; gap: 12px;
}

/* Tek yorum */
.rm-comment-body {
  display: flex;
  gap: 14px;
  background: var(--rm-surface);
  border: 1px solid var(--rm-border);
  border-radius: var(--rm-radius);
  padding: 16px;
  transition: border-color .2s;
  position: relative;
}
.rm-comment-body:hover { border-color: var(--rm-border-2); }

.rm-comment-avatar { flex-shrink: 0; }
.rm-avatar {
  width: 44px !important; height: 44px !important;
  border-radius: var(--rm-radius) !important;
  border: 1px solid var(--rm-border) !important;
  background: var(--rm-bg) !important;
}

.rm-comment-content { flex: 1; min-width: 0; }
.rm-comment-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}
.rm-comment-author {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--rm-text);
}
.rm-comment-date {
  font-size: 0.75rem;
  color: var(--rm-text-3);
}
.rm-comment-pending {
  font-size: 0.75rem;
  color: var(--rm-amber);
  background: rgba(245,158,11,.08);
  border: 1px solid rgba(245,158,11,.2);
  border-radius: var(--rm-radius);
  padding: 2px 8px;
}

.rm-comment-text {
  font-size: 0.875rem;
  color: var(--rm-text-2);
  line-height: 1.7;
}
.rm-comment-text p { margin: 0 0 8px; }
.rm-comment-text p:last-child { margin-bottom: 0; }

.rm-comment-actions {
  position: absolute;
  top: 10px; right: 10px;
  display: flex;
  gap: 4px;
}
.rm-comment-actions a {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--rm-text-2);
  text-decoration: none;
  transition: color .15s, background .15s;
  padding: 3px 8px;
  border-radius: 5px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--rm-border);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.rm-comment-actions a:hover {
  color: var(--rm-red);
  border-color: rgba(232,51,74,.3);
  background: rgba(232,51,74,.06);
}

/* Yorum sayfalama */
.rm-comment-pagination {
  display: flex;
  gap: 6px;
  margin-top: 24px;
}

/* ── YORUM FORMU ── */
#respond {
  background: var(--rm-surface);
  border: 1px solid var(--rm-border);
  border-radius: var(--rm-radius-lg);
  padding: 16px;
  margin-top: 32px;
}

.rm-comment-form-title,
#respond #reply-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--rm-text);
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rm-border);
}



.rm-comment-fields {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.rm-comment-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.rm-comment-field-full { margin-bottom: 16px; }

.rm-comment-field label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--rm-text-2);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.rm-comment-field label .required { color: var(--rm-red); margin-left: 2px; }

.rm-comment-field input,
.rm-comment-field textarea {
  background: var(--rm-bg) !important;
  border: 1px solid var(--rm-border) !important;
  border-radius: 8px !important;
  padding: 9px 12px !important;
  color: var(--rm-text) !important;
  font-family: var(--rm-font-body) !important;
  font-size: 0.875rem !important;
  transition: border-color .2s, box-shadow .2s !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.rm-comment-field input:focus,
.rm-comment-field textarea:focus {
  border-color: var(--rm-red) !important;
  outline: none !important;
  box-shadow: 0 0 0 2px rgba(232,51,74,.1) !important;
}

.rm-comment-field textarea { resize: vertical; min-height: 110px; }

/* Giriş yapmış kullanıcı notu */
#respond .logged-in-as {
  font-size: .8rem;
  color: var(--rm-text-2);
  margin-bottom: 14px;
  padding: 8px 12px;
  background: rgba(255,255,255,.03);
  border-radius: 6px;
  border: 1px solid var(--rm-border);
}

#respond .logged-in-as a {
  color: var(--rm-red);
  font-weight: 700;
}

/* Çerezleri kaydet checkbox */
#respond .comment-form-cookies-consent {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: var(--rm-text-2);
  margin-bottom: 14px;
}

/* Submit */
#respond .form-submit { margin: 0; }

/* Submit buton — ana tema override (Kadence'i ezer) */
#respond input[type="submit"],
#respond input.rm-btn-primary,
body #respond input[type="submit"],
body #comments #respond input[type="submit"] {
  -webkit-appearance: none !important;
  appearance: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: var(--rm-red) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--rm-radius) !important;
  padding: 8px 20px !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  font-family: var(--rm-font-body) !important;
  cursor: pointer !important;
  text-decoration: none !important;
  transition: var(--rm-transition) !important;
  box-shadow: none !important;
  line-height: 1.5 !important;
  letter-spacing: normal !important;
  text-transform: none !important;
}
#respond input[type="submit"]:hover,
#respond input.rm-btn-primary:hover,
body #respond input[type="submit"]:hover,
body #comments #respond input[type="submit"]:hover {
  background: var(--rm-red-light) !important;
  color: #fff !important;
  transform: translateY(-1px) !important;
  box-shadow: var(--rm-neon-glow) !important;
}

/* İptal linki */
#respond #cancel-comment-reply-link {
  font-size: .8rem;
  color: var(--rm-text-2);
  margin-left: 12px;
  text-decoration: none;
}
#respond #cancel-comment-reply-link:hover { color: var(--rm-red); }

/* Mobil */
@media (max-width: 680px) {
  .rm-comment-fields { grid-template-columns: 1fr; }
  .rm-comment-list .children { margin-left: 20px; }
}

/* ── rm-comments (yorum section sarmalayıcı) ── */
.rm-comments { display: block; }


/* ═══ related.css ═══ */
/* ============================================================
   BENZERKonular
   ============================================================ */
.rm-related { margin-top: 24px; }
.rm-related-title {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--rm-text);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--rm-surface);
  border: 1px solid var(--rm-border);
  border-radius: var(--rm-radius);
  padding: 16px;
  transition: var(--rm-transition);
  position: relative;
}
.rm-related-grid { gap: 14px; }
.rm-related-card {
  background: var(--rm-surface);
  border: 1px solid var(--rm-border);
  border-radius: var(--rm-radius);
  overflow: hidden;
  text-decoration: none;
  transition: var(--rm-transition);
  display: flex;
  flex-direction: column;
}
.rm-related-card:hover {
  border-color: rgba(232,51,74,.2);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,.4);
}
.rm-related-thumb {
  height: 110px;
  overflow: hidden;
  flex-shrink: 0;
}
.rm-related-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}
.rm-related-card:hover .rm-related-thumb img { transform: scale(1.04); }
.rm-related-body {
  padding: 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.rm-related-post-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--rm-text);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.rm-related-meta {
  font-size: 0.75rem;
  color: var(--rm-text-3);
  margin-top: auto;
}

@media (max-width: 680px) {
  .rm-related-thumb { height: 140px; }
}


/* ═══ popular.css ═══ */
/* ============================================================
   POPÜLER BORSALAR — rm-pop-item
   Her satır: [Logo + İsim] / [Bonus] / [Copy + Keşfet]
   ============================================================ */
.rm-pop-item {
  padding: 12px 14px;
  border-bottom: 1px solid var(--rm-border);
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.rm-pop-item:last-of-type { border-bottom: none; }

/* Üst satır: logo + borsa adı yan yana */
.rm-pop-item-top {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: space-between;
}
.rm-pop-item-logo {
  width: 32px !important;
  height: 32px !important;
  flex-shrink: 0;
}
.rm-pop-item-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--rm-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
}

.rm-pop-item-score {
  flex-shrink: 0;
  font-family: var(--rm-font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--rm-amber);
  background: rgba(245,158,11,.08);
  border: 1px solid rgba(245,158,11,.2);
  border-radius: var(--rm-radius);
  padding: 2px 6px;
  white-space: nowrap;
}

/* Komisyon İndirimi metni */
.rm-pop-item-bonus {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.8rem; color: var(--rm-green); font-weight: 500;
}

/* Alt satır: Copy Code butonu + Keşfet butonu */
.rm-pop-item-actions {
  display: flex;
  align-items: center;
  gap: 7px;
}
.rm-pop-item-copy {
  flex: 1;
  justify-content: center;
  font-size: 0.75rem !important;
  padding: 5px 8px !important;
  gap: 4px !important;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.rm-pop-item-cta {
  flex-shrink: 0;
  font-size: 0.75rem !important;
  padding: 5px 10px !important;
  white-space: nowrap;
}


/* ═══ faq.css ═══ */
/* ============================================================
   SSS (FAQ)
   ============================================================ */
.rm-faq-item { border: 1px solid var(--rm-border) !important; border-radius: var(--rm-radius); overflow: hidden; margin-bottom: 5px; background: var(--rm-surface) !important; transition: background .2s; }
.rm-faq-item:hover { background: var(--rm-surface-3) !important; }
.rm-faq-item.open { background: var(--rm-surface) !important; }

/* SSS 2 kolonlu layout */
.rm-faq-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
}
.rm-faq-head { position: sticky; top: 100px; }
.rm-faq-head h2 { font-size: clamp(1.5rem,3vw,2.4rem); font-weight: 800; margin-bottom: 10px; line-height: 1.15; }
.rm-faq-head p  { font-size: 1rem; color: var(--rm-text-2); line-height: 1.65; }
.rm-faq-head .rm-btn { margin-top: 20px; }
.rm-faq-list-main { display: flex; flex-direction: column; gap: 6px; }
.rm-faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; background: none !important; border: none; cursor: pointer; font-weight: 600; color: var(--rm-text) !important; font-family: var(--rm-font-body); text-align: left; gap: 12px; transition: none; box-shadow: none !important; }
.rm-faq-q:hover, .rm-faq-q:focus, .rm-faq-q:active { background: none !important; color: var(--rm-text) !important; box-shadow: none !important; }
.rm-faq-icon { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--rm-border); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; line-height: 1; color: var(--rm-text-3); transition: var(--rm-transition); }
.rm-faq-item.open .rm-faq-icon { background: rgba(232,51,74,.1); border-color: rgba(232,51,74,.25); color: var(--rm-red); }
.rm-faq-a { display: none; padding: 12px 16px 14px; color: var(--rm-text-2); line-height: 1.7; border-top: 1px solid var(--rm-border); }

/* ── rm-faq-layout mobil: tek kolon ── */
@media (max-width: 768px) {
  .rm-faq-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .rm-faq-head {
    position: static;
    text-align: center;
  }
  .rm-faq-head h2 { font-size: 1.4rem; }
  .rm-faq-head .rm-btn { display: inline-flex; }
}


/* ═══ faq-shortcode.css ═══ */
/* ============================================================
   FAQ SHORTCODE — [rm_faq]
   Stiller faq.css'ten miras alınır, burada sadece wrapper var
   ============================================================ */
.rm-faq-shortcode { margin: 1.5em 0; }

.rm-faq-sc-title {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--rm-text);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}

.rm-faq-shortcode .rm-faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 33px;
}

.rm-faq-shortcode .rm-faq-q {
  font-size: .875rem !important;
}

.rm-faq-shortcode .rm-faq-a { padding: 2px 16px 2px !important; }

/* Yazı sayfası SSS — sadece arka plan farklı */
.rm-faq-shortcode .rm-faq-item {
  background: var(--rm-surface-2) !important;
}
.rm-faq-shortcode .rm-faq-item:hover {
  background: var(--rm-surface-3) !important;
}
.rm-faq-shortcode .rm-faq-item.open {
  background: var(--rm-surface-2) !important;
}

/* ============================================================
   SIDEBAR STICKY
   — aside'ın kendisi sticky, ekstra wrapper yok
   — position:sticky için üst zincirde overflow:visible şart
   ============================================================ */
.rm-single-sidebar {
  align-self: start;          /* grid satırını aşmasın */
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: visible !important;
}

/* Kadence layout override */
.rm-main-layout > aside,
.rm-main-layout {
  overflow: visible !important;
}

@media (max-width: 1100px) {
  .rm-sidebar-sticky { position: static; }
}

/* ============================================================
   KADENCE #wrapper OVERFLOW FİX
   Kadence global.min.css'te #wrapper { overflow:hidden; overflow:clip }
   tanımlı — bu position:sticky'yi tamamen öldürüyor.
   Kadence'in kendi has-sticky-sidebar yöntemiyle aynı mantık:
   sidebar olan sayfalarda #wrapper overflow'unu sıfırla.
   ============================================================ */
body.has-rm-sticky #wrapper,
body.is-exchange #wrapper,
body.has-exchange #wrapper {
    overflow: visible !important;
}

/* Mobilde sticky kapatılınca #wrapper'ı geri al */
@media (max-width: 1100px) {
    body.has-rm-sticky #wrapper,
    body.is-exchange #wrapper,
    body.has-exchange #wrapper {
        overflow: clip !important;
    }
}

/* ── rm-faq-q-text / rm-faq-row ── */
.rm-faq-q-text {
  flex: 1;
  text-align: left;
  font-size: 0.875rem;
}
.rm-faq-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}


/* ═══ latest-posts.css ═══ */
/* ============================================================
   SON YAZILAR — rm-latest (Anasayfa)
   Tamamen bağımsız, yeni tasarım
   ============================================================ */

/* ── BÖLÜM BAŞLIĞI ── */
.rm-latest-head {
  text-align: center;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.rm-latest-title {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--rm-text);
  margin: 6px 0 0;
  line-height: 1.15;
  font-family: var(--rm-font-display);
}

.rm-latest-title span { color: var(--rm-red); }



/* ── GRID — 4 sütun masaüstü ── */
.rm-latest-grid { gap: 16px; }

/* ── KART ── */
.rm-lp-card {
  background: var(--rm-surface);
  border: 1px solid var(--rm-border);
  border-radius: var(--rm-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}

.rm-lp-card:hover {
  border-color: rgba(232,51,74,.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.3);
}

/* ── GÖRSEL ── */
.rm-lp-thumb {
  display: block;
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  text-decoration: none;
}

.rm-lp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.rm-lp-card:hover .rm-lp-thumb img {
  transform: scale(1.06);
}

/* Görsel yok — gradient placeholder */
.rm-lp-nothumb {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--rm-surface-2), var(--rm-surface-3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(255,255,255,.08);
  font-family: var(--rm-font-display);
}

/* Görsel üzeri gradient overlay */
.rm-lp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(6,9,16,.6) 100%);
  pointer-events: none;
}

/* ── İÇERİK ── */
.rm-lp-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.rm-lp-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--rm-red);
  background: rgba(232,51,74,.1);
  border: 1px solid rgba(232,51,74,.2);
  border-radius: 20px;
  padding: 2px 8px;
  align-self: flex-start;
}

.rm-lp-title {
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  font-family: var(--rm-font-display);
}

.rm-lp-title a {
  color: var(--rm-text);
  text-decoration: none;
  transition: var(--rm-transition);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rm-lp-title a:hover { color: var(--rm-red); }

.rm-lp-excerpt {
  font-size: .8rem;
  color: var(--rm-text-2);
  line-height: 1.55;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── META — alt çubuk ── */
.rm-lp-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: auto;
}

.rm-lp-meta > span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .75rem;
  color: var(--rm-text-2);
}

.rm-lp-meta > span i { opacity: .6; font-size: .7rem; }

.rm-lp-read {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--rm-red);
  text-decoration: none;
  transition: color .2s;
  white-space: nowrap;
}

.rm-lp-read i {
  font-size: .65rem;
  transition: transform .2s;
  vertical-align: middle;
}

.rm-lp-read:hover {
  color: var(--rm-orange);
}

.rm-lp-read:hover i {
  transform: translateX(3px);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .rm-latest-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .rm-latest-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .rm-lp-excerpt { display: none; }

  .rm-latest-head {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
}


/* ═══ category.css ═══ */
/* ============================================================
   KATEGORİ SAYFASI — category.php
   ============================================================ */

/* ── CONTAINER ── */
/* padding-top ve bottom rm-container'dan geliyor (layout.css) */

/* ── KATEGORİ HERO ── */
.rm-cat-hero {
  position: relative;
  background: var(--rm-surface);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--rm-radius-xl);
  padding: 36px 32px;
  margin-bottom: 32px;
  overflow: hidden;
}

.rm-cat-hero--has-img {
  min-height: 200px;
}

.rm-cat-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .18;
  filter: blur(2px);
  transform: scale(1.05);
}

.rm-cat-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--rm-bg) 0%, transparent 100%);
}

.rm-cat-hero-body {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.rm-cat-hero-icon {
  flex-shrink: 0;
}

.rm-cat-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--rm-red), var(--rm-orange));
  border-radius: var(--rm-radius-lg);
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  font-family: var(--rm-font-display);
  box-shadow: 0 0 24px rgba(232,51,74,.35);
}

.rm-cat-hero-meta {
  flex: 1;
  min-width: 0;
}

.rm-cat-hero-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--rm-text);
  margin: 6px 0 8px;
  line-height: 1.2;
  font-family: var(--rm-font-display);
}

.rm-cat-hero-desc {
  color: var(--rm-text-2);
  font-size: .95rem;
  line-height: 1.6;
  margin: 0 0 12px;
  max-width: 600px;
}

.rm-cat-hero-stats {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.rm-cat-stat {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .8rem;
  color: var(--rm-text-2);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 3px 10px;
}

.rm-cat-stat svg { opacity: .6; }

.rm-cat-stat-page {
  color: var(--rm-red);
  border-color: rgba(232,51,74,.25);
  background: rgba(232,51,74,.08);
}

/* Exchange-archive tipi sayaç kutusu */
.rm-cat-count-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--rm-bg);
  border: 1px solid var(--rm-border);
  border-radius: var(--rm-radius);
  padding: 10px 20px;
  flex-shrink: 0;
  align-self: flex-start;
}
.rm-cat-count-num {
  font-family: var(--rm-font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--rm-text);
  line-height: 1;
}
.rm-cat-count-label {
  font-size: .75rem;
  color: var(--rm-text-2);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 3px;
}

/* ── TERİM TANIM BLOĞU ── */
.rm-glossary-definition {
  position: relative;
  background: var(--rm-surface);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--rm-radius-xl);
  overflow: hidden;
  margin-bottom: 28px;
}

/* Sol accent çizgisi — level renginden */
.rm-glossary-definition::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--dc, var(--rm-red)) 0%, color-mix(in srgb, var(--dc, var(--rm-red)) 40%, transparent) 100%);
  border-radius: 3px 0 0 3px;
}

/* Hafif arka plan parıltısı */
.rm-glossary-definition::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(232,51,74,.05) 0%, transparent 70%);
  pointer-events: none;
}

.rm-glossary-definition-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--dc, var(--rm-red)) 6%, transparent) 0%, transparent 60%);
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: relative;
}

/* Dekoratif nokta deseni sağda */
.rm-glossary-definition-header::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 80px;
  background: radial-gradient(circle at 90% 50%, color-mix(in srgb, var(--dc, var(--rm-red)) 8%, transparent) 0%, transparent 70%);
  pointer-events: none;
}

.rm-glossary-definition-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, color-mix(in srgb, var(--dc, var(--rm-red)) 18%, transparent), color-mix(in srgb, var(--dc, var(--rm-red)) 6%, transparent));
  border: 1px solid color-mix(in srgb, var(--dc, var(--rm-red)) 28%, transparent);
  border-radius: var(--rm-radius-lg);
  color: var(--dc, var(--rm-red));
  font-size: 1.05rem;
  box-shadow: 0 0 16px color-mix(in srgb, var(--dc, var(--rm-red)) 14%, transparent);
}

.rm-glossary-definition-heading {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rm-glossary-definition-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--dc, var(--rm-red));
}

.rm-glossary-definition-label::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 1px;
  background: var(--dc, var(--rm-red));
  opacity: .6;
}

.rm-glossary-definition-title {
  font-family: var(--rm-font-display);
  font-size: clamp(.95rem, 2.5vw, 1.15rem);
  font-weight: 800;
  color: var(--rm-text);
  margin: 0;
  line-height: 1.25;
}

/* Sağ köşede dikey "DEF" rozeti */
.rm-glossary-definition-badge {
  flex-shrink: 0;
  font-size: .6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: color-mix(in srgb, var(--dc, var(--rm-red)) 55%, transparent);
  border: 1px solid color-mix(in srgb, var(--dc, var(--rm-red)) 18%, transparent);
  border-radius: var(--rm-radius);
  padding: 4px 9px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  opacity: .7;
}

.rm-glossary-definition-body {
  padding: 20px 28px;
  font-size: .93rem;
  line-height: 1.75;
  color: var(--rm-text-2);
}

.rm-glossary-definition-body p {
  margin: 0 0 12px;
}

.rm-glossary-definition-body p:last-child {
  margin-bottom: 0;
}

.rm-glossary-definition-body a {
  color: var(--rm-red);
  text-decoration: none;
  border-bottom: 1px solid rgba(232,51,74,.3);
  transition: var(--rm-transition);
}

.rm-glossary-definition-body a:hover {
  border-bottom-color: var(--rm-red);
}

.rm-glossary-definition-footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 28px;
  background: rgba(255,255,255,.02);
  border-top: 1px solid rgba(255,255,255,.04);
}

.rm-glossary-def-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--bc, var(--rm-red));
  background: color-mix(in srgb, var(--bc, var(--rm-red)) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--bc, var(--rm-red)) 25%, transparent);
  border-radius: 20px;
  padding: 3px 10px;
}

.rm-glossary-def-topic {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .72rem;
  font-weight: 500;
  color: var(--rm-text-3);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 20px;
  padding: 3px 10px;
}

.rm-glossary-def-topic i {
  font-size: .6rem;
  opacity: .7;
}



/* ── ANA LAYOUT ── */
.rm-cat-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 28px;
  align-items: start;
}

/* ── FEATURED BÜYÜK KART ── */
.rm-cat-featured {
  position: relative;
  background: var(--rm-surface);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--rm-radius-xl);
  overflow: hidden;
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 280px;
  transition: var(--rm-transition);
}

.rm-cat-featured:hover {
  border-color: rgba(232,51,74,.3);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}

.rm-cat-featured-thumb {
  display: block;
  position: relative;
  overflow: hidden;
}

.rm-cat-featured-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}

.rm-cat-featured:hover .rm-cat-featured-thumb img {
  transform: scale(1.04);
}

.rm-cat-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, var(--rm-surface) 100%);
}

.rm-cat-featured-body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}

.rm-cat-featured-title {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 800;
  line-height: 1.3;
  font-family: var(--rm-font-display);
  margin: 0;
}

.rm-cat-featured-title a {
  color: var(--rm-text);
  text-decoration: none;
  transition: var(--rm-transition);
}

.rm-cat-featured-title a:hover { color: var(--rm-red); }

.rm-cat-featured-excerpt {
  color: var(--rm-text-2);
  font-size: .875rem;
  line-height: 1.6;
  margin: 0;
}

.rm-cat-card-footer .rm-lp-read {
  margin-left: auto;
  flex-shrink: 0;
}

.rm-cat-featured-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  color: var(--rm-text-2);
}

/* Görsel yoksa featured tek kolon */
.rm-cat-featured:not(:has(.rm-cat-featured-thumb)) {
  grid-template-columns: 1fr;
}

.rm-cat-featured:not(:has(.rm-cat-featured-thumb)) .rm-cat-featured-body {
  padding: 32px;
}

/* ── GRID BAŞLIK ── */
.rm-cat-grid-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.rm-cat-grid-label span:first-child {
  font-size: .85rem;
  font-weight: 700;
  color: var(--rm-text-2);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.rm-cat-grid-count {
  font-size: .8rem;
  color: var(--rm-text-2);
  background: rgba(255,255,255,.05);
  border-radius: 20px;
  padding: 2px 10px;
}

/* ── GRID KARTLAR ── */
.rm-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 32px;
}

.rm-cat-card {
  background: var(--rm-surface);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--rm-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}

.rm-cat-card:hover {
  border-color: rgba(232,51,74,.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}

.rm-cat-card-thumb {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.rm-cat-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}

.rm-cat-card:hover .rm-cat-card-thumb img {
  transform: scale(1.05);
}

.rm-cat-card-thumb--noimg {
  aspect-ratio: 16/9;
  background: var(--rm-surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rm-cat-card-nothumb-letter {
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(255,255,255,.1);
  font-family: var(--rm-font-display);
}

.rm-cat-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.rm-cat-card-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--rm-red);
  background: rgba(232,51,74,.1);
  border: 1px solid rgba(232,51,74,.2);
  border-radius: 20px;
  padding: 2px 8px;
  align-self: flex-start;
}

.rm-cat-card-title {
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  font-family: var(--rm-font-display);
}

.rm-cat-card-title a {
  color: var(--rm-text);
  text-decoration: none;
  transition: var(--rm-transition);
}

.rm-cat-card-title a:hover { color: var(--rm-red); }

.rm-cat-card-excerpt {
  color: var(--rm-text-2);
  font-size: .8rem;
  line-height: 1.55;
  margin: 0;
  flex: 1;
}

.rm-cat-card-footer {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .75rem;
  color: var(--rm-text-2);
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,.05);
  flex-wrap: nowrap;
}

.rm-cat-meta-dot { opacity: .4; }

/* ── SAYFALAMA ── */
.rm-cat-pagination {
  margin-top: 8px;
}

.rm-cat-pagination .page-numbers {
  display: inline-flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 6px;
  flex-wrap: wrap;
}

.rm-cat-pagination .page-numbers li { margin: 0; }

.rm-cat-pagination .page-numbers a,
.rm-cat-pagination .page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.1);
  background: var(--rm-surface);
  color: var(--rm-text-2);
  transition: var(--rm-transition);
}

.rm-cat-pagination .page-numbers a:hover {
  border-color: var(--rm-red);
  color: var(--rm-red);
  background: rgba(232,51,74,.08);
}

.rm-cat-pagination .page-numbers .current {
  background: var(--rm-red);
  border-color: var(--rm-red);
  color: #fff;
}

.rm-cat-pagination .page-numbers .dots {
  border: none;
  background: transparent;
}

/* ── SIDEBAR ── */
.rm-cat-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 90px;
}

/* Son Yazılar mini listesi */
.rm-cat-sidebar-post {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  text-decoration: none;
  transition: background .2s, opacity .2s;
}

.rm-cat-sidebar-post:last-child { border-bottom: none; }

.rm-cat-sidebar-post:hover { opacity: .8; }
.rm-cat-sidebar-post:hover .rm-cat-sidebar-post-thumb img {
  transform: scale(1.06);
}

.rm-cat-sidebar-post-thumb {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: var(--rm-radius-md);
  overflow: hidden;
  background: var(--rm-surface-2);
}

.rm-cat-sidebar-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}

.rm-cat-sidebar-post-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.rm-cat-sidebar-post-title {
  font-size: .8rem;
  font-weight: 600;
  color: var(--rm-text);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rm-cat-sidebar-post-date {
  font-size: .72rem;
  color: var(--rm-text-2);
}

/* ── BOŞ DURUM ── */
.rm-empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--rm-text-2);
}

.rm-empty-state .rm-empty-icon { font-size: 3rem; margin-bottom: 16px; }
.rm-empty-state h3 { color: var(--rm-text); margin-bottom: 20px; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .rm-cat-layout {
    grid-template-columns: 1fr 260px;
  }
}

@media (max-width: 680px) {
  .rm-cat-layout {
    grid-template-columns: 1fr;
  }

  .rm-cat-sidebar {
    position: static;
    order: 2;
  }

  .rm-cat-main {
    order: 1;
  }

  .rm-cat-featured {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .rm-cat-featured-thumb {
    aspect-ratio: 16/9;
    height: auto;
    width: 100%;
  }

  .rm-cat-featured-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .rm-cat-featured-overlay { display: none; }

  .rm-cat-featured-body { padding: 20px; }

  /* Tablet: 3 → 2 */
  .rm-cat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .rm-cat-hero {
    padding: 24px 20px;
  }

  .rm-cat-hero-body {
    flex-direction: column;
    gap: 14px;
  }

  .rm-cat-count-box {
    align-self: stretch;
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
  }

  .rm-cat-hero-title {
    font-size: 1.4rem;
  }

  .rm-tag-hero-body { flex-direction: column; align-items: flex-start; gap: 12px; }
  .rm-tag-hero { padding: 20px; }
}

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

/* ── TAG HERO ── */
.rm-tag-hero {
  background: var(--rm-surface);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--rm-radius-xl);
  padding: 24px 28px;
  margin-bottom: 32px;
}

.rm-tag-hero-body {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  justify-content: space-between;
}

.rm-tag-hero-body .rm-cat-hero-meta {
  flex: 1;
  min-width: 0;
}

.rm-tag-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--rm-red), var(--rm-orange));
  border-radius: var(--rm-radius-lg);
  font-size: 1.3rem;
  color: #fff;
  box-shadow: 0 0 20px rgba(232,51,74,.3);
}

/* ══════════════════════════════════════════════════════════
   BLOG / HOME SAYFASI
   ══════════════════════════════════════════════════════════ */

.rm-blog-hero {
  position: relative;
  background: var(--rm-surface);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--rm-radius-xl);
  padding: 28px 32px 20px;
  margin-bottom: 28px;
  overflow: hidden;
}

.rm-blog-hero-body {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.rm-blog-hero-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--rm-red), var(--rm-orange));
  border-radius: var(--rm-radius-lg);
  font-size: 1.3rem;
  color: #fff;
  box-shadow: 0 0 20px rgba(232,51,74,.3);
}

/* Filtre butonları */
.rm-blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid var(--rm-border);
}

.rm-blog-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--rm-text-2);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--rm-border);
  text-decoration: none;
  transition: var(--rm-transition);
  white-space: nowrap;
}

.rm-blog-filter-btn:hover,
.rm-blog-filter-btn.active {
  color: var(--rm-red);
  border-color: rgba(232,51,74,.4);
  background: rgba(232,51,74,.08);
}

.rm-blog-filter-count {
  font-size: .7rem;
  opacity: .6;
  font-weight: 400;
}

@media (max-width: 680px) {
  .rm-blog-hero { padding: 20px; }
  .rm-blog-hero-body { flex-direction: column; gap: 12px; }
  .rm-blog-filters { gap: 4px; }
  .rm-blog-filter-btn { font-size: .75rem; padding: 4px 10px; }
}

/* ══════════════════════════════════════════════════════════
   SÖZLÜK TAXONOMY
   ══════════════════════════════════════════════════════════ */

.rm-glossary-hero {
  position: relative;
  background: var(--rm-surface);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--rm-radius-xl);
  padding: 28px 32px 20px;
  margin-bottom: 28px;
  overflow: hidden;
}

.rm-glossary-hero-body {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.rm-glossary-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #3B82F6, #1D4ED8);
  border-radius: var(--rm-radius-lg);
  font-size: 1.3rem;
  color: #fff;
  box-shadow: 0 0 20px rgba(59,130,246,.3);
}

/* İlgili borsalar şeridi */
.rm-glossary-exchanges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 14px;
  border-top: 1px solid var(--rm-border);
}

.rm-glossary-exchanges-label {
  font-size: .75rem;
  color: var(--rm-text-2);
  font-weight: 600;
  white-space: nowrap;
}

.rm-glossary-ex-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--rm-border);
  border-radius: 20px;
  font-size: .78rem;
  color: var(--rm-text-2);
  text-decoration: none;
  transition: var(--rm-transition);
}

.rm-glossary-ex-pill:hover {
  color: var(--rm-red);
  border-color: rgba(232,51,74,.3);
  background: rgba(232,51,74,.06);
}

@media (max-width: 680px) {
  .rm-glossary-hero { padding: 20px; }
  .rm-glossary-hero-body { flex-direction: column; gap: 12px; }
}

/* ── SÖZLÜK CONTROLS PADDING ── */
.rm-glossary-controls {
  padding: 16px;
}

/* ── SÖZLÜK HERO MOBİL — yazı sayacı hariç yan yana ── */
@media (max-width: 680px) {
  .rm-glossary-hero { padding: 20px; }
  .rm-glossary-hero-body {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    align-items: flex-start;
  }
  /* yazı sayacı tam genişlik alt satıra */
  .rm-glossary-hero-body .rm-glossary-count {
    width: 100%;
    order: 99;
  }
}

/* ── ARŞİV HERO — mobilde yan yana koru, ışıklandırma ── */
.rm-glossary-archive-hero {
  background:
    radial-gradient(ellipse 60% 80% at 8% 50%, rgba(96,165,250,.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 92% 30%, rgba(232,51,74,.05) 0%, transparent 55%),
    var(--rm-surface);
  border-color: rgba(96,165,250,.12);
}

@media (max-width: 600px) {
  .rm-glossary-archive-hero {
    flex-wrap: wrap;
    padding: 18px;
    gap: 16px;
  }
  .rm-glossary-archive-hero-left { flex: 1 1 100%; }
  .rm-glossary-archive-stats {
    flex: 1 1 100%;
    justify-content: space-between;
  }
  .rm-glossary-stat { flex: 1; }
}

/* ── HOME STATS MOBİL ── */
@media (max-width: 600px) {
  .rm-glossary-home-stats {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 10px 8px;
    padding: 12px 14px;
    align-items: start;
  }

  /* Level'lar: sol alt, soldan hizalı, yatay */
  .rm-glossary-home-stats .rm-ghs-levels {
    grid-column: 1;
    grid-row: 1 / 3;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
  }

  /* Total Terms: sağ üst, kutu içinde */
  .rm-glossary-home-stats .rm-ghs-total {
    grid-column: 2;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--rm-radius-lg);
    padding: 10px 14px;
    min-width: 70px;
    text-align: center;
  }
}

/* ── İLGİLİ TERİMLER — mobilde sidebar'dan önce çıksın ── */
@media (max-width: 680px) {
  .rm-cat-main    { order: 1; }
  .rm-related-terms { order: 2; }
  .rm-cat-sidebar { order: 3; }
}

.rm-glossary-az {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 20px 0 28px;
  padding: 16px;
  background: var(--rm-surface);
  border: 1px solid var(--rm-border);
  border-radius: var(--rm-radius-lg);
}

.rm-glossary-az-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--rm-border);
  border-radius: var(--rm-radius);
  font-size: .85rem;
  font-weight: 700;
  color: var(--rm-text-2);
  text-decoration: none;
  transition: var(--rm-transition);
}

.rm-glossary-az-btn:hover {
  color: var(--rm-red);
  border-color: rgba(232,51,74,.3);
  background: rgba(232,51,74,.08);
}

.rm-glossary-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.rm-glossary-group-letter {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--rm-red);
  font-family: var(--rm-font-display);
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(232,51,74,.2);
  margin-bottom: 16px;
}

.rm-glossary-group-terms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

/* ══════════════════════════════════════════════════════════
   SÖZLÜK ARŞİV — Hero
   ══════════════════════════════════════════════════════════ */
.rm-glossary-archive-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--rm-surface);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--rm-radius-xl);
  padding: 28px 32px;
  margin-bottom: 20px;
}
.rm-glossary-archive-hero-left { display: flex; align-items: flex-start; gap: 16px; flex: 1; }
.rm-glossary-archive-icon {
  flex-shrink: 0; width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #3B82F6, #1D4ED8);
  border-radius: var(--rm-radius-lg); font-size: 1.3rem; color: #fff;
  box-shadow: 0 0 20px rgba(59,130,246,.3);
}
.rm-glossary-archive-stats { display: flex; gap: 20px; flex-shrink: 0; }
.rm-glossary-stat {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  background: rgba(255,255,255,.04); border: 1px solid var(--rm-border);
  border-radius: var(--rm-radius-lg); padding: 12px 16px; min-width: 70px;
}
.rm-glossary-stat i { font-size: 1rem; }
.rm-glossary-stat-num { font-size: 1.4rem; font-weight: 900; color: var(--rm-text); font-family: var(--rm-font-display); }
.rm-glossary-stat-label { font-size: .7rem; color: var(--rm-text-2); }

/* ── ARAMA + FİLTRELER ── */
.rm-glossary-controls {
  background: var(--rm-surface);
  border: 1px solid var(--rm-border);
  border-radius: var(--rm-radius-xl);
  padding: 18px 22px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rm-glossary-search-wrap {
  display: flex; align-items: center; gap: 10px;
  background: var(--rm-bg);
  border: 1px solid var(--rm-border);
  border-radius: var(--rm-radius-lg);
  padding: 10px 16px;
  transition: var(--rm-transition);
}
.rm-glossary-search-wrap:focus-within {
  border-color: rgba(232,51,74,.4);
  box-shadow: 0 0 0 3px rgba(232,51,74,.07);
}
.rm-glossary-search-wrap i { color: var(--rm-text-2); font-size: .85rem; flex-shrink: 0; }
.rm-glossary-search-wrap input {
  flex: 1; background: none; border: none; outline: none;
  color: var(--rm-text); font-size: .9rem; font-family: var(--rm-font-body);
}
.rm-glossary-search-wrap input::placeholder { color: var(--rm-text-2); opacity: .55; }
.rm-glossary-search-clear {
  background: none; border: none; cursor: pointer;
  color: var(--rm-text-2); padding: 0; font-size: .8rem;
  transition: var(--rm-transition);
}
.rm-glossary-search-clear:hover { color: var(--rm-red); }

/* Filtreler — site geneli rm-radius uyumu */
.rm-glossary-filters { display: flex; flex-direction: column; gap: 10px; }
.rm-glossary-filter-group {
  display: flex; align-items: center;
  flex-wrap: wrap; gap: 6px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.04);
}
.rm-glossary-filter-label {
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  color: var(--rm-text-3); white-space: nowrap; margin-right: 6px;
}
.rm-gfilter {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 13px;
  border-radius: var(--rm-radius);   /* site geneli radius — 8px */
  font-size: .78rem; font-weight: 600;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--rm-border);
  color: var(--rm-text-2); cursor: pointer;
  transition: var(--rm-transition);
}
.rm-gfilter:hover {
  border-color: var(--fc, var(--rm-red));
  color: var(--fc, var(--rm-red));
  background: color-mix(in srgb, var(--fc, var(--rm-red)) 8%, transparent);
}
.rm-gfilter.active {
  border-color: var(--fc, var(--rm-red));
  color: var(--fc, var(--rm-red));
  background: color-mix(in srgb, var(--fc, var(--rm-red)) 12%, transparent);
  font-weight: 700;
}
.rm-gfilter-count {
  font-size: .67rem; opacity: .65;
  background: rgba(255,255,255,.06);
  border-radius: 4px; padding: 0 4px;
}

/* ── SONUÇ BAR ── */
.rm-glossary-result-bar {
  font-size: .8rem; color: var(--rm-text-2);
  margin-bottom: 16px; display: flex; align-items: center; gap: 6px;
}
.rm-glossary-result-bar i { opacity: .6; }

/* ── SECTION HEAD ── */
.rm-glossary-section-head {
  font-size: .85rem; font-weight: 700; color: var(--rm-text);
  margin-bottom: 12px; display: flex; align-items: center; gap: 7px;
}

/* ── FEATURED GRID ── */
.rm-glossary-featured { margin-bottom: 28px; }
.rm-glossary-featured-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.rm-glossary-featured-card {
  border-color: rgba(245,158,11,.2) !important;
  background: rgba(245,158,11,.03) !important;
}
.rm-glossary-featured-card:hover { border-color: rgba(245,158,11,.4) !important; }

/* ══════════════════════════════════════════════════════════
   TERİM KARTI — yeniden tasarım
   Sol: terim adı + açıklama   Sağ üst: level badge + yazı sayısı
   ══════════════════════════════════════════════════════════ */
.rm-glossary-term-card {
  background: var(--rm-surface);
  border: 1px solid var(--rm-border);
  border-radius: var(--rm-radius-lg);
  padding: 14px 16px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}

/* Hover — sol accent çizgisi level renginden */
.rm-glossary-term-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--lc, var(--rm-red));
  opacity: 0;
  transition: opacity .2s;
}

.rm-glossary-term-card:hover {
  border-color: color-mix(in srgb, var(--lc, var(--rm-red)) 30%, transparent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
}
.rm-glossary-term-card:hover::before { opacity: 1; }

/* Read More linki — sol altta */
.rm-glossary-term-readmore {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .72rem;
  font-weight: 700;
  color: var(--lc, var(--rm-red));
  transition: gap .15s;
}
.rm-glossary-term-readmore i {
  font-size: .6rem;
  transition: transform .2s;
}
.rm-glossary-term-card:hover .rm-glossary-term-readmore i {
  transform: translateX(3px);
}

/* Üst satır: isim sol, meta sağ */
.rm-glossary-term-toprow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.rm-glossary-term-name {
  font-size: .93rem;
  font-weight: 700;
  color: var(--rm-text);
  line-height: 1.35;
  flex: 1;
  min-width: 0;
  transition: color .2s;
}
.rm-glossary-term-card:hover .rm-glossary-term-name { color: var(--rm-red-light); }

/* Sağ meta grubu: level + count */
.rm-glossary-term-meta-right {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}

/* Seviye badge */
.rm-glossary-term-level {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: .6rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  color: var(--lc, var(--rm-red));
  background: color-mix(in srgb, var(--lc, var(--rm-red)) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--lc, var(--rm-red)) 22%, transparent);
  border-radius: var(--rm-radius); padding: 2px 6px;
}
.rm-glossary-term-level i { font-size: .55rem; }

/* Yazı sayısı — sağ üstte */
.rm-glossary-term-count {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: .68rem; font-weight: 600;
  color: var(--rm-text-3);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--rm-radius); padding: 2px 7px;
}
.rm-glossary-term-count i { font-size: .6rem; opacity: .7; }

/* Açıklama */
.rm-glossary-term-desc {
  font-size: .78rem;
  color: var(--rm-text-2);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Footer: topic etiketi */
.rm-glossary-term-footer {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 2px;
}

/* Topic etiketi — kare, sağa yasalı */
.rm-glossary-term-topic {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: .67rem; font-weight: 600;
  color: var(--rm-text-3);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 0;
  padding: 2px 8px;
  letter-spacing: .02em;
  margin-left: auto;
}

/* Responsive */
@media (max-width: 900px) {
  .rm-glossary-archive-hero { flex-direction: column; }
  .rm-glossary-archive-stats { width: 100%; justify-content: space-around; }
  .rm-glossary-featured-grid { grid-template-columns: repeat(2, 1fr); }
  .rm-glossary-group-terms { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .rm-glossary-archive-hero { padding: 20px; }
  .rm-glossary-featured-grid { grid-template-columns: 1fr; }
  .rm-glossary-group-terms { grid-template-columns: 1fr; }
  .rm-glossary-az-btn { width: 32px; height: 32px; font-size: .75rem; }
}

/* ============================================================
   İLGİLİ TERİMLER — taxonomy-glossary.php
   ============================================================ */

.rm-related-terms {
  margin-top: 40px;
  padding: 28px 0 0;
  border-top: 1px solid var(--rm-border);
  grid-column: 1 / -1;
}

.rm-related-terms-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.rm-related-terms-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--rm-text);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.rm-related-terms-title i {
  color: var(--rm-red);
  font-size: 0.95rem;
}

.rm-related-terms-all {
  font-size: 0.8rem;
  color: var(--rm-text-2);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: var(--rm-transition);
}

.rm-related-terms-all:hover {
  color: var(--rm-red);
}

/* Kart grid */
.rm-related-terms-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

/* Kompakt kart — C seçeneği */
.rm-related-term-card {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 12px;
  background: var(--rm-surface);
  border: 1px solid var(--rm-border);
  border-radius: var(--rm-radius-md);
  text-decoration: none;
  transition: var(--rm-transition);
}

.rm-related-term-card:hover {
  border-color: var(--rm-border-2);
  background: var(--rm-surface-2);
}

/* Üst satır: renkli nokta + isim */
.rm-related-term-name {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--rm-text);
  line-height: 1.3;
}

.rm-related-term-name::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lc, var(--rm-red));
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 4px; /* ilk satırın orta hizası */
}

/* Alt satır: konu · yazı sayısı */
.rm-related-term-topic {
  font-size: 0.72rem;
  color: var(--rm-text-3);
  padding-left: 13px;
}

/* Açıklama yok — seçenek C'de gizli */
.rm-related-term-desc  { display: none; }

/* Seviye badge de gizli — dot rengiyle yeterli */
.rm-related-term-level { display: none; }

/* Responsive */
@media (max-width: 1024px) {
  .rm-related-terms-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .rm-related-terms-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
  .rm-related-terms-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── rm-cat-card-date / rm-cat-card-read ── */
.rm-cat-card-date,
.rm-cat-card-read {
  font-size: 0.75rem;
  color: var(--rm-text-3);
  white-space: nowrap;
}
.rm-cat-card-date i,
.rm-cat-card-read i { opacity: .7; font-size: .7rem; }

/* ── rm-cat-featured-desc ── */
.rm-cat-featured-desc {
  font-size: 0.875rem;
  color: var(--rm-text-2);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


/* ═══ glossary-home.css ═══ */
/* ============================================================
   ANASAYFA — KRİPTO SÖZLÜĞÜ SECTION
   ============================================================ */

.rm-glossary-home {
  padding: 60px 0;
}

/* Başlık */
.rm-glossary-home-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--rm-text);
  margin: 6px 0 8px;
  font-family: var(--rm-font-display);
  line-height: 1.2;
}

.rm-glossary-home-title span {
  color: var(--rm-red);
}

.rm-glossary-home-desc {
  font-size: 0.9rem;
  color: var(--rm-text-2);
  margin: 0;
}

/* İstatistik bar */
.rm-glossary-home-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 14px 20px;
  background: var(--rm-surface);
  border: 1px solid var(--rm-border);
  border-radius: var(--rm-radius-md);
  margin-bottom: 20px;
}

.rm-ghs-levels {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}

.rm-ghs-total {
  flex-shrink: 0;
}

.rm-ghs-item {
  display: flex;
  align-items: center;
  gap: 7px;
}

.rm-ghs-num {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--rm-text);
  font-family: var(--rm-font-display);
}

.rm-ghs-label {
  font-size: 0.75rem;
  color: var(--rm-text-2);
}

/* A-Z navigasyon */
.rm-glossary-home-az {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 28px;
}

/* Kart grid — glossary-archive'daki rm-glossary-term-card stillerini miras alır */
.rm-glossary-home-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-bottom: 32px;
}

/* Kompakt kart — rm-related-term-card ile aynı stil, CSS tekrarı yok */
.rm-glossary-home-card {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 12px;
  background: var(--rm-surface);
  border: 1px solid var(--rm-border);
  border-radius: var(--rm-radius-md);
  text-decoration: none;
  transition: var(--rm-transition);
}

.rm-glossary-home-card:hover {
  border-color: var(--rm-border-2);
  background: var(--rm-surface-2);
}

/* Kompakt kartta toprow düz flex, meta sağda gizli */
.rm-glossary-home-card .rm-glossary-term-toprow { flex-wrap: wrap; gap: 4px; }
.rm-glossary-home-card .rm-glossary-term-meta-right { display: none; }
.rm-glossary-home-card::before { display: none; } /* hover accent çizgisi yok */

/* rm-glossary-term-* elementlerini kompakt göster */
.rm-glossary-home-card .rm-glossary-term-name {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--rm-text);
  line-height: 1.3;
}

.rm-glossary-home-card .rm-glossary-term-name::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lc, var(--rm-red));
  flex-shrink: 0;
}

.rm-glossary-home-card .rm-glossary-term-desc   { display: none; }
.rm-glossary-home-card .rm-glossary-term-level  { display: none; }
.rm-glossary-home-card .rm-glossary-term-footer {
  border: none;
  padding: 0;
  margin: 0;
}
.rm-glossary-home-card .rm-glossary-term-topic {
  font-size: 0.72rem;
  color: var(--rm-text-3);
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  padding-left: 13px;
}
.rm-glossary-home-card .rm-glossary-term-count {
  font-size: 0.72rem;
  color: var(--rm-text-3);
  opacity: 1;
  background: none;
  border: none;
}

/* CTA alt */
.rm-glossary-home-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 4px;
}

.rm-glossary-home-cta-note {
  font-size: 0.8rem;
  color: var(--rm-text-3);
}

/* Responsive */
@media (max-width: 1024px) {
  .rm-glossary-home-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .rm-glossary-home-grid { grid-template-columns: repeat(3, 1fr); }
  .rm-glossary-home-stats { gap: 16px; flex-wrap: wrap; }
  .rm-glossary-home-cta { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 480px) {
  .rm-glossary-home-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Glossary sonuç sayacı — border kutu */
.rm-glossary-result-bar--boxed {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--rm-surface);
    border: 1px solid var(--rm-border);
    border-radius: 99px;
    padding: 6px 16px;
    font-size: .88rem;
    font-weight: 700;
    color: var(--rm-text);
    margin-bottom: 20px;
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.rm-glossary-result-bar--boxed i { color: var(--rm-red); }
#rm-glossary-count { color: var(--rm-red); font-size: 1.05rem; }

/* ── rm-gtopic (glossary topic badge) ── */
.rm-gtopic {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: var(--rm-radius);
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--rm-surface-2);
  border: 1px solid var(--rm-border);
  color: var(--rm-text-3);
}


/* ═══ how-why.css ═══ */
/* ============================================================
   NASIL ÇALIŞIR / NEDEN BİZ
   ============================================================ */
/* ── NASIL ÇALIŞIR ── */
.rm-hiw-section { background: var(--rm-bg-2); }
.rm-hiw-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  counter-reset: hiw;
}

@media (max-width: 900px) {
  .rm-hiw-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px;
  }
  .rm-hiw-connector { display: none; }
  .rm-hiw-num-wrap { display: none; }
}

@media (max-width: 480px) {
  .rm-hiw-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px;
  }
}
.rm-hiw-step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 20px;
  position: relative;
}
.rm-hiw-connector {
  position: absolute;
  top: 26px;
  left: calc(50% + 28px);
  right: calc(-50% + 28px);
  height: 1px;
  background: linear-gradient(90deg, rgba(232,51,74,.4), rgba(232,51,74,.1));
}
.rm-hiw-num-wrap { margin-bottom: 16px; }
.rm-hiw-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(232,51,74,.08);
  border: 1px solid rgba(232,51,74,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800; color: var(--rm-red);
  position: relative; z-index: 1;
}
.rm-hiw-icon  { font-size: 1.4rem; margin-bottom: 12px; color: var(--rm-red); }
.rm-hiw-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; color: var(--rm-text); }
.rm-hiw-desc  { font-size: 0.83rem; color: var(--rm-text-2); line-height: 1.65; }

/* ── NEDEN BİZ ── */
.rm-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

@media (max-width: 900px) {
  .rm-why-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 480px) {
  .rm-why-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px; }
}
.rm-why-card {
  background: var(--rm-surface);
  border: 1px solid var(--rm-border);
  border-radius: var(--rm-radius);
  padding: 22px 20px;
  transition: var(--rm-transition);
  position: relative;
  overflow: hidden;
}
.rm-why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--rm-red), transparent);
  opacity: 0;
  transition: opacity .25s;
}
.rm-why-card:hover { border-color: rgba(232,51,74,.2); transform: translateY(-2px); }
.rm-why-card:hover::before { opacity: 1; }
.rm-why-icon-wrap {
  width: 42px; height: 42px;
  border-radius: var(--rm-radius-md);
  background: rgba(232,51,74,.08);
  border: 1px solid rgba(232,51,74,.14);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.rm-why-icon  { font-size: 1.2rem; line-height: 1; }
.rm-why-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 7px; color: var(--rm-text); }
.rm-why-desc  { font-size: 0.83rem; color: var(--rm-text-3); line-height: 1.65; }


/* ═══ contact.css ═══ */
/* ============================================================
   İLETİŞİM SAYFASI
   ============================================================ */
.rm-contact-content-box {
  position: relative;
  overflow: hidden;
}
.rm-contact-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 10% 40%, rgba(232,51,74,.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 35% at 85% 70%, rgba(168,85,247,.06) 0%, transparent 55%);
  z-index: 0;
}
.rm-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative; z-index: 1;
}

/* Sol bilgi */
.rm-contact-title {
  font-size: clamp(1.8rem,3.5vw,2.8rem);
  font-weight: 800; line-height: 1.1;
  margin-bottom: 14px;
}
.rm-contact-desc {
  font-size: 1rem; color: var(--rm-text-2);
  line-height: 1.7; margin-bottom: 32px;
}
.rm-contact-cards {
  display: flex; flex-direction: column; gap: 12px;
}
.rm-contact-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--rm-surface);
  border: 1px solid var(--rm-border);
  border-radius: var(--rm-radius);
  padding: 14px 16px;
  transition: background .2s;
}
.rm-contact-card:hover { background: var(--rm-surface-3); }
.rm-contact-card-icon {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: rgba(232,51,74,.08);
  border: 1px solid rgba(232,51,74,.14);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.rm-contact-card-label { font-size: 0.75rem; color: var(--rm-text-3); margin-bottom: 2px; }
.rm-contact-card-val   { font-size: 0.875rem; font-weight: 600; color: var(--rm-text); }

/* Sağ form */
.rm-contact-form-wrap {
  background: var(--rm-surface);
  border: 1px solid var(--rm-border);
  border-radius: var(--rm-radius);
  padding: 32px;
}
.rm-cf-field { margin-bottom: 20px; }
.rm-cf-label {
  display: block;
  font-size: 0.875rem; font-weight: 600;
  color: var(--rm-text-2);
  margin-bottom: 7px;
}
.rm-cf-input {
  width: 100%;
  background: var(--rm-bg) !important;
  border: 1px solid var(--rm-border) !important;
  border-radius: var(--rm-radius);
  padding: 10px 14px;
  color: var(--rm-text) !important;
  font-size: 0.875rem;
  font-family: var(--rm-font-body);
  transition: border-color .2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.rm-cf-input:focus { border-color: rgba(232,51,74,.4) !important; box-shadow: none !important; }
.rm-cf-input::placeholder { color: var(--rm-text-3); }
.rm-cf-textarea { resize: vertical; min-height: 130px; }
.rm-cf-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 34px;
  cursor: pointer;
}
.rm-cf-select,
.rm-cf-select option,
.rm-cf-select option:disabled,
.rm-cf-select:not([multiple]) {
  background: var(--rm-bg) !important;
  color: var(--rm-text) !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
}
.rm-cf-select:focus,
.rm-cf-select:active { background: var(--rm-bg) !important; color: var(--rm-text) !important; }
.rm-cf-submit { width: 100%; justify-content: center; margin-top: 4px; }
.rm-cf-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 480px) {
  .rm-cf-row-2 { grid-template-columns: 1fr; }
}

/* Harita */
.rm-contact-map {
  margin-top: 26px;
  border-radius: var(--rm-radius);
  overflow: hidden;
  border: 1px solid var(--rm-border);
}
.rm-contact-map iframe {
  width: 100%;
  height: 249px;
  display: block;
  border: none;
  filter: invert(90%) hue-rotate(180deg) brightness(0.85) saturate(0.8);
}

/* Alert */
.rm-contact-alert {
  background: rgba(232,51,74,.08);
  border: 1px solid rgba(232,51,74,.2);
  border-radius: var(--rm-radius);
  padding: 12px 16px;
  font-size: 0.875rem; color: var(--rm-red);
  margin-bottom: 20px;
}

/* Başarı */
.rm-contact-success {
  text-align: center; padding: 40px 20px;
}
.rm-contact-success-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(16,185,129,.1);
  border: 1px solid rgba(16,185,129,.25);
  color: var(--rm-green);
  font-size: 1.4rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.rm-contact-success h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 10px; }
.rm-contact-success p  { color: var(--rm-text-2); margin-bottom: 24px; }

/* Mobil */
@media (max-width: 680px) {
  .rm-contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .rm-contact-form-wrap { padding: 24px 18px; }
}


/* ═══ 404-search.css ═══ */
/* ============================================================
   404 SAYFASI
   ============================================================ */

.rm-404-wrap,
.rm-search-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  align-items: start;
}

.rm-404-wrap { gap: 32px; padding: 20px 0; }
.rm-search-layout { gap: 28px; }

/* 404 rakam + gezegen */
.rm-404-code {
  display: flex;
  align-items: center;
  gap: 0;
  line-height: 1;
  margin-bottom: 24px;
}

.rm-404-digit {
  font-family: var(--rm-font-display);
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 900;
  color: var(--rm-text);
  letter-spacing: -.02em;
}

.rm-404-planet {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(70px, 10vw, 120px);
  height: clamp(70px, 10vw, 120px);
  filter: drop-shadow(0 0 24px rgba(232,51,74,.5));
  animation: rm-404-float 4s ease-in-out infinite;
}

.rm-404-planet svg { width: 100%; height: 100%; }

@keyframes rm-404-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.rm-404-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--rm-text);
  margin: 0 0 12px;
  font-family: var(--rm-font-display);
}

.rm-404-desc {
  color: var(--rm-text-2);
  font-size: .95rem;
  line-height: 1.65;
  margin: 0 0 28px;
  max-width: 500px;
}

/* 404 Arama — kutu içinde */
.rm-404-search-box {
  background: var(--rm-surface);
  border: 1px solid var(--rm-border-2);
  border-radius: var(--rm-radius-lg);
  padding: 18px;
  max-width: 480px;
  margin-bottom: 24px;
}

.rm-404-search-box-label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--rm-text-2);
  margin-bottom: 10px;
}

.rm-404-search {
  display: flex;
  gap: 8px;
}

.rm-404-search-input {
  flex: 1;
  padding: 10px 14px;
  font-size: .9rem;
}

/* 404 Hızlı linkler */
.rm-404-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* 404 Sidebar */
.rm-404-sidebar {
  position: sticky;
  top: 90px;
}

/* ============================================================
   ARAMA SONUÇLARI SAYFASI
   ============================================================ */

/* ── ARAMA HERO KUTUSU ── */
.rm-search-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
  background: var(--rm-surface);
  border: 1px solid var(--rm-border-2);
  border-radius: var(--rm-radius-lg);
  padding: 20px 24px;
}

.rm-search-hero-left { flex: 1; min-width: 0; }

.rm-search-title {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 800;
  color: var(--rm-text);
  margin: 4px 0 0;
  font-family: var(--rm-font-display);
  line-height: 1.2;
}

.rm-search-query { color: var(--rm-red); }

/* ── ANA ARAMA FORMU ── */
.rm-search-form-box {
  background: var(--rm-surface);
  border: 1px solid var(--rm-border-2);
  border-radius: var(--rm-radius-lg);
  padding: 16px 20px;
  margin-bottom: 24px;
}

.rm-search-form-box-label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--rm-text-2);
  margin-bottom: 10px;
}

.rm-search-form {
  display: flex;
  gap: 8px;
}

.rm-search-form-input {
  flex: 1;
  padding: 10px 14px;
  font-size: .9rem;
}

/* ── ANA LAYOUT ── */


.rm-search-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rm-search-sidebar > * {
  min-width: 0;
  width: 100%;
}

/* ── SONUÇ LİSTESİ ── */
.rm-search-results {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.rm-search-item {
  display: grid;
  grid-template-columns: 233px 1fr;
  background: var(--rm-surface);
  border: 1px solid var(--rm-border);
  border-radius: var(--rm-radius-md);
  overflow: hidden;
  transition: var(--rm-transition);
  min-height: 130px;
}

.rm-search-item:hover {
  border-color: rgba(232,51,74,.3);
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
}

/* Görsel wrapper — overlay için position:relative */
.rm-search-item-thumb {
  display: block;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.rm-search-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s;
}

.rm-search-item:hover .rm-search-item-thumb img { transform: scale(1.04); }

/* Sağa doğru kaybolan overlay — category featured ile aynı */
.rm-search-item-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 55%, var(--rm-surface) 100%);
  pointer-events: none;
  transition: opacity .2s;
}

.rm-search-item:hover .rm-search-item-thumb::after {
  background: linear-gradient(90deg, transparent 55%, rgba(17,24,39,.85) 100%);
}

.rm-search-item-body {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
  min-width: 0;
}

.rm-search-item-title {
  font-size: .95rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.35;
  font-family: var(--rm-font-display);
}

.rm-search-item-title a {
  color: var(--rm-text);
  text-decoration: none;
  transition: var(--rm-transition);
}

.rm-search-item-title a:hover { color: var(--rm-red); }

.rm-search-item-excerpt {
  color: var(--rm-text-2);
  font-size: .82rem;
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rm-search-item-meta {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .75rem;
  color: var(--rm-text-2);
  margin-top: 2px;
}

/* Görsel yok */
.rm-search-item:not(:has(.rm-search-item-thumb)) {
  grid-template-columns: 1fr;
}

.rm-search-item:not(:has(.rm-search-item-thumb)) .rm-search-item-body {
  padding: 16px 18px;
}

/* Sonuç yok */
.rm-search-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--rm-text-2);
}

.rm-search-empty .rm-empty-icon { font-size: 3rem; margin-bottom: 16px; }
.rm-search-empty h3 { color: var(--rm-text); font-size: 1.1rem; margin-bottom: 10px; }
.rm-search-empty p { font-size: .9rem; margin-bottom: 24px; }

.rm-search-suggestions {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* ── RESPONSIVE ── */
@media (max-width: 680px) {
  .rm-404-wrap,
  .rm-search-layout {
    grid-template-columns: 1fr;
  }

  .rm-404-sidebar,
  .rm-search-sidebar {
    position: static;
  }

  .rm-search-item {
    grid-template-columns: 160px 1fr;
  }

  .rm-search-hero {
    flex-direction: column;
    gap: 12px;
  }

  .rm-search-form {
    max-width: 100%;
  }
}

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

  .rm-search-item-thumb {
    height: 160px;
  }

  .rm-search-item-body {
    padding: 14px;
  }

  .rm-404-search {
    flex-direction: column;
  }

  .rm-404-search .rm-btn { width: 100%; justify-content: center; }
}

/* ── rm-search-main ── */
.rm-search-main { min-width: 0; flex: 1; }


/* ═══ responsive.css ═══ */
/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .rm-main-layout { grid-template-columns: 1fr; }
  .rm-hero-inner  { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  /* 3. floating kart gizle */
  .rm-hero-card-3 { display: none !important; }

  /* Hero inner — tek kolon, sığdır */
  .rm-hero-inner {
    grid-template-columns: 1fr !important;
    padding: 0 16px;
    gap: 24px;
    overflow: hidden;
  }
  /* Sol içerik — tam genişlik */
  .rm-hero-content {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  /* Sağ visual — küçük, taşmasın */
  /* Floating kartlar küçült */
  .rm-hero-float-card {
    width: 130px !important;
    min-height: auto !important;
    padding: 8px 10px !important;
  }
  .rm-hero-card-1 { left: 4px !important; top: 16px !important; }
  .rm-hero-card-2 { right: 4px !important; top: 28px !important; }

  .rm-section { padding: 24px 0; }
  .rm-rating-grid { grid-template-columns: 1fr; }
  .rm-pros-cons   { grid-template-columns: 1fr; }
  .rm-exchange-hero-score { display: none; }
}

@media (max-width: 680px) {
  .rm-hero h1 { font-size: 2.25rem !important; }
  .rm-section { padding: 20px 0; }
  .rm-exchange-grid { grid-template-columns: repeat(2, 1fr); }
  .rm-exc-footer { flex-wrap: wrap; }
  .rm-exchange-archive-grid { grid-template-columns: 1fr; }
  .rm-mobile-cta-bar { display: flex; }
  #rm-toast-container { bottom: 68px; right: 8px; left: 8px; }
}
@media (max-width: 480px) {
  .rm-container { padding-left: 14px; padding-right: 14px; }
  .rm-hero { padding: 20px 0 16px; }

  /* CTA butonlar — yan yana */
  .rm-hero-ctas { gap: 8px; margin-bottom: 20px; flex-wrap: nowrap; }
  .rm-hero-ctas .rm-btn-lg { padding: 10px 14px; font-size: 0.82rem; flex: 1; justify-content: center; }

  /* Exchange CTA butonları — mobil küçült */
  .rm-exchange-hero-ctas { flex-direction: column; gap: 8px; }
  .rm-exchange-hero-ctas .rm-btn-lg {
    padding: 10px 14px;
    font-size: 0.82rem;
    width: 100%;
    justify-content: center;
  }
  .rm-copy-btn { width: auto; justify-content: center; font-size: 0.82rem; padding: 9px 14px; }

  /* Filter tablar */
  .rm-filter-tabs { gap: 5px; margin-bottom: 14px; }
  .rm-filter-tab { padding: 5px 10px; font-size: 0.78rem; }

  /* Exchange grid — 2 sütun mobil */
  .rm-exchange-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
  }
  .rm-exchange-card {
    max-width: 100%;
    overflow: hidden;
  }

  /* Exc footer butonlar — optimize */
  .rm-exc-footer {
    flex-wrap: nowrap;
    gap: 6px;
    padding: 8px 12px 12px;
  }
  .rm-exc-cta {
    font-size: 0.78rem !important;
    padding: 8px 10px !important;
    flex: 1;
  }
  .rm-exc-footer .rm-btn-ghost {
    font-size: 0.78rem !important;
    padding: 8px 10px !important;
    flex-shrink: 0;
  }

  /* Bonus satırları küçült */
  .rm-exc-bonus-row { font-size: 0.75rem; }
  .rm-exc-header { padding: 12px 12px 8px; }
  .rm-exc-bonuses { padding: 0 12px 10px; }
}

/* Header contact butonu mobilde gizle */
@media (max-width: 768px) {
    .rm-hide-mobile { display: none !important; }
}

/* rm-section-head--split — mobilde alt alta */
@media (max-width: 680px) {
  .rm-section-head--split {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 12px !important;
  }
  .rm-section-head--split > div { flex: unset; width: 100%; }
  .rm-section-head--split .rm-btn { align-self: center; }
}

/* rm-why-grid — mobilde 2x2 */
@media (max-width: 480px) {
  .rm-why-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
  .rm-why-card { padding: 16px 14px; }
  .rm-why-title { font-size: 0.88rem; }
  .rm-why-desc  { font-size: 0.78rem; }
}
