/* =========================================================
   SITE1 - HORIZONTAL SLIDING LUXURY THEME (IMAGE 2 MATCH)
   Zero-VIP Architecture with Infinite Continuous Photo Carousel
   ========================================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0a0d;
  --panel: #121017;
  --panel2: #181320;
  --text: #f7f5f8;
  --muted: #a69eab;
  --muted2: #7d7583;
  --gold: #e0b84a;
  --gold2: #f0d078;
  --purple: #6e3fc0;
  --purple2: #8d4ed5;
  --pink: #b52d76;
  --pink2: #d23d8a;
  --green: #10b981;
  --line: rgba(224, 184, 74, .22);
  --line-purple: rgba(110, 63, 192, .3);
  --line-soft: rgba(255, 255, 255, .08);
  
  --font-h: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-b: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 22px;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body.fi-service-shell {
  background: var(--bg) !important;
  color: var(--text);
  font-family: var(--font-b);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Luxury Background Glows */
body.fi-service-shell::before {
  content: '';
  position: fixed; top: 0; left: 15%;
  width: 70vw; height: 60vh;
  background: radial-gradient(circle, rgba(110,63,192,.18) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
body.fi-service-shell::after {
  content: '';
  position: fixed; bottom: 0; right: 10%;
  width: 60vw; height: 50vh;
  background: radial-gradient(circle, rgba(181,45,118,.14) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #08080b; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--purple), var(--gold)); border-radius: 3px; }

a { text-decoration: none; color: inherit; }

.fis-wrap {
  width: min(1240px, calc(100% - 24px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ===== MARQUEE TICKER ===== */
.vtr-marquee-wrapper {
  background: linear-gradient(90deg, #180914, #2a081a, #160822, #180914);
  border-bottom: 1px solid rgba(224, 184, 74, 0.28);
  overflow: hidden;
  position: relative;
  z-index: 100;
  height: 32px;
  display: flex;
  align-items: center;
}
.vtr-marquee-row {
  display: flex;
  white-space: nowrap;
  animation: marqueeSite1 38s linear infinite;
}
.vtr-marquee-row:hover {
  animation-play-state: paused;
}
.vtr-marquee-content {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: var(--gold2);
  text-transform: uppercase;
  padding-right: 40px;
}
@keyframes marqueeSite1 {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== HEADER ===== */
.fis-head {
  position: sticky; top: 0; z-index: 99990;
  background: rgba(10, 10, 13, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.fis-head-in {
  width: min(1240px, calc(100% - 24px));
  height: 68px; margin: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.fis-brand { display: flex; flex-direction: column; text-decoration: none !important; }
.fis-brand strong { font-size: 19px; color: var(--gold2); font-weight: 900; letter-spacing: .02em; font-family: var(--font-h); }
.fis-brand small { font-size: 9.5px; color: #9a91a0; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; margin-top: 1px; }

.fis-nav { display: flex; gap: 6px; align-items: center; }
.fis-nav a {
  padding: 8px 14px; border-radius: 999px;
  color: #ddd7e0 !important; font-size: 12px; font-weight: 700; transition: .2s;
}
.fis-nav a:hover { color: var(--gold2) !important; background: rgba(110,63,192,.18); }
.fis-nav .hot {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: #fff !important; font-weight: 800; box-shadow: 0 4px 15px rgba(181,45,118,.35);
}
.fis-nav .hot:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(181,45,118,.5); }

.fis-toggle { display: none; background: transparent; border: 1px solid var(--line); border-radius: 8px; padding: 8px; cursor: pointer; }
.fis-toggle i { display: block; width: 20px; height: 2px; background: #fff; margin: 3px 0; }

/* ===== PUBLIC HERO BANNER (IMAGE 2 GOLD BANNER) ===== */
.ere-public-banner {
  position: relative;
  width: 100%;
  border-radius: 14px;
  background: radial-gradient(circle at 50% 30%, rgba(224, 184, 74, 0.22) 0%, #150e1c 70%, #0c0812 100%);
  border: 1.5px solid rgba(225, 185, 72, 0.94);
  box-shadow: 0 12px 30px rgba(0,0,0,.5), 0 0 25px rgba(112,62,190,.25), 0 0 15px rgba(225,185,72,.2);
  padding: 24px 20px;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  margin-bottom: 6px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ere-public-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0,0,0,.7), 0 0 30px rgba(225,185,72,.35);
}
.ere-banner-content {
  position: relative;
  z-index: 2;
}
.ere-banner-crown {
  font-size: 26px;
  display: block;
  margin-bottom: 2px;
  filter: drop-shadow(0 0 8px rgba(224, 184, 74, 0.8));
}
.ere-banner-title {
  font-family: Georgia, 'Playfair Display', serif;
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #fff2c6 0%, #f1d37a 40%, #e0b84a 70%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  margin-bottom: 6px;
}
.ere-banner-sub {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--gold2);
  text-transform: uppercase;
}

/* ===== 39 İLÇE HIZLI FİLTRE MATRIXİ ===== */
.fis-filter-matrix-wrap {
  padding: 14px 0 10px;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(14, 12, 18, 0.6);
}
.fis-filter-matrix {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.fis-pill {
  padding: 5px 12px; border-radius: 20px; font-size: 11px; font-weight: 700;
  background: rgba(255,255,255,0.03); color: #c4bcc9; border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.2s; display: inline-block; text-decoration: none !important;
}
.fis-pill:hover {
  border-color: var(--gold); color: var(--gold2); background: rgba(224,184,74,0.08);
}
.fis-pill.active {
  background: linear-gradient(135deg, var(--purple), var(--pink)) !important;
  color: #fff !important; border-color: transparent !important;
  box-shadow: 0 4px 15px rgba(181,45,118,0.4);
}

/* ===== SECTION HEADER ===== */
.fis-section-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 16px; flex-wrap: wrap; gap: 12px;
}
.fis-sec-left { display: flex; flex-direction: column; gap: 4px; }
.fis-sec-tag {
  font-size: 10.5px; font-weight: 900; letter-spacing: 1.5px;
  color: var(--gold); text-transform: uppercase;
}
.fis-sec-title {
  font-family: var(--font-h); font-size: clamp(19px, 2.3vw, 25px);
  font-weight: 800; color: #ffffff;
}
.fis-sec-right { display: flex; align-items: center; }
.fis-live-count {
  font-size: 11.5px; font-weight: 700; color: var(--green);
  background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.3);
  padding: 4px 12px; border-radius: 20px;
}

/* =========================================================
   HORIZONTAL SLIDING CARDS SHOWCASE (.ere-type-horizontal)
   ========================================================= */
.ere-showcase-root {
  width: 100%;
}
.ere-showcase.ere-type-horizontal {
  width: 100%;
}
.ere-type-horizontal .ere-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

/* Horizontal Card Structure */
.ere-hcard {
  position: relative;
  min-width: 0;
  max-width: 100%;
  isolation: isolate;
  height: 215px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 15px;
  background: linear-gradient(#09090d, #09090d) padding-box, linear-gradient(118deg, #f0cd68 0%, #8a4fe4 34%, #c92e7d 68%, #f2d477 100%) border-box;
  box-shadow: 0 13px 32px rgba(0,0,0,.34), 0 0 0 1px rgba(228,187,69,.10), 0 0 22px rgba(109,63,192,.10);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}
.ere-hcard:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,.55), 0 0 25px rgba(228,187,69,.25);
}
.ere-hcard > a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
}
.ere-hcard > a::after {
  content: "";
  position: absolute;
  inset: 3px;
  z-index: 2;
  pointer-events: none;
  border-radius: 11px;
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), inset 0 -1px 0 rgba(181,45,116,.08);
}

/* Continuous Sliding Photo Strip */
.ere-hmedia-strip {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #09090d;
  z-index: 1;
}
.ere-hstrip-track {
  display: flex;
  height: 100%;
  width: max-content;
  animation: hStripScroll var(--ere-speed, 22s) linear infinite;
  will-change: transform;
}
.ere-hcard:hover .ere-hstrip-track {
  animation-play-state: paused;
}
.ere-hstrip-track img {
  height: 100%;
  width: auto;
  min-width: 175px;
  max-width: 280px;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  margin-right: 3px;
  display: block;
}
@keyframes hStripScroll {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* 4 Corner Badges (Image 2 Match) */
.ere-hverify, .ere-hname, .ere-hservice, .ere-hlocation {
  position: absolute;
  z-index: 4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
}

/* Top-Left Badge (Kendi Yerim Yok / Doğrulanmış) */
.ere-hverify {
  top: 10px;
  left: 10px;
  max-width: 44%;
  padding: 6px 12px;
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(181,45,116,.90), rgba(132,31,93,.78));
  border: 1px solid rgba(255,134,205,.30);
  color: #fff;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .08px;
  text-shadow: 0 1px 4px rgba(0,0,0,.72);
  box-shadow: 0 6px 16px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.12);
}

/* Bottom-Left Badge (OTEL • REZİDANS) */
.ere-hservice {
  bottom: 10px;
  left: 10px;
  max-width: 46%;
  padding: 6px 12px;
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(109,63,192,.88), rgba(74,43,143,.76));
  border: 1px solid rgba(174,139,255,.28);
  color: #fff;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .08px;
  text-shadow: 0 1px 4px rgba(0,0,0,.72);
  box-shadow: 0 6px 16px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.12);
}

/* Top-Right Badge (Model Name in Italian Italic Gold Serif + Age Pill) */
.ere-hname {
  top: 10px;
  right: 10px;
  max-width: 48%;
  min-height: 32px;
  padding: 5px 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(228, 187, 69, 0.75);
  border-radius: 10px;
  background: rgba(35, 18, 52, 0.72);
  color: #ffe27a;
  font-family: Georgia, 'Playfair Display', serif;
  font-size: 17.5px;
  line-height: 1.05;
  font-style: italic;
  font-weight: 850;
  letter-spacing: -.2px;
  box-shadow: 0 7px 18px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.12);
  text-shadow: 0 1px 5px rgba(0,0,0,.55);
}
.ere-hname small {
  flex: 0 0 auto;
  margin-left: 2px;
  padding: 2px 6px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  background: rgba(7,7,10,.4);
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 7.5px;
  line-height: 1;
  font-style: normal;
  font-weight: 850;
  letter-spacing: .15px;
}
.ere-hname small b {
  font-size: 9px;
}

/* Bottom-Right Badge (District Name) */
.ere-hlocation {
  bottom: 10px;
  right: 10px;
  max-width: 50%;
  padding: 6px 12px;
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(13,12,18,.82), rgba(45,27,58,.72));
  border: 1px solid rgba(239,204,105,.52);
  color: #fff2bc;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .08px;
  text-shadow: 0 1px 4px rgba(0,0,0,.72);
  box-shadow: 0 6px 16px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.12);
}

/* Ad Slot Horizontal Card */
.ere-hcard-ad {
  background: linear-gradient(#0b0c0f, #0b0c0f) padding-box, linear-gradient(118deg, #f0cd68 0%, #d9a93b 50%, #8f243f 100%) border-box !important;
}
.ere-hmedia-ad-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px 20px;
  background: radial-gradient(circle at 50% 40%, rgba(110,63,192,0.3) 0%, #0d0b11 75%);
  z-index: 1;
}
.ere-hmedia-ad-icon {
  font-size: 28px;
  margin-bottom: 4px;
}
.ere-hmedia-ad-title {
  font-family: var(--font-h);
  font-size: 1.3rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 4px;
}
.ere-hmedia-ad-desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
  margin-bottom: 12px;
  max-width: 480px;
}
.ere-hmedia-ad-btn {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 7px 16px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(37,211,102,0.35);
}

/* Responsive Rules for Horizontal Cards */
@media(max-width: 768px) {
  .ere-hcard {
    height: 180px;
    border-radius: 13px;
  }
  .ere-hname {
    font-size: 14.5px;
    padding: 4px 8px;
    top: 8px; right: 8px;
  }
  .ere-hname small {
    font-size: 6.5px;
  }
  .ere-hverify, .ere-hservice, .ere-hlocation {
    min-height: 24px;
    padding: 4px 9px;
    font-size: 8px;
  }
  .ere-hverify { top: 8px; left: 8px; }
  .ere-hservice { bottom: 8px; left: 8px; }
  .ere-hlocation { bottom: 8px; right: 8px; }
  .ere-hstrip-track img {
    min-width: 135px;
    max-width: 210px;
  }
}

@media(max-width: 440px) {
  .ere-hcard {
    height: 165px;
  }
  .ere-hname {
    font-size: 13px;
  }
  .ere-hverify, .ere-hservice, .ere-hlocation {
    font-size: 7.5px;
    padding: 3px 7px;
  }
}

/* ===== SEMANTIC SEO ARTICLE SECTION ===== */
.fis-seo-article-section {
  padding: 36px 0 44px;
  background: radial-gradient(circle at 50% 10%, rgba(110,63,192,0.12) 0%, #07070b 80%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 24px;
}
.fis-article-box {
  background: #0d0e17;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px 34px;
  box-shadow: 0 16px 45px rgba(0,0,0,0.8);
  position: relative;
  overflow: hidden;
}
.fis-article-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--purple), var(--pink));
}
.fis-article-top {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; margin-bottom: 16px;
}
.fis-art-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(224,184,74,0.12); color: var(--gold2);
  border: 1px solid var(--line); font-size: 11.5px; font-weight: 800;
  padding: 5px 14px; border-radius: 20px; letter-spacing: 0.8px; text-transform: uppercase;
}
.fis-art-badge svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2.5; }

.fis-art-guarantee {
  font-size: 11.5px; font-weight: 700; color: var(--green);
  background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.25);
  padding: 4px 12px; border-radius: 20px; display: inline-flex; align-items: center; gap: 6px;
}
.guarantee-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); display: inline-block; }

.fis-art-title {
  font-family: var(--font-h); font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 800; color: #ffffff; line-height: 1.25; margin-bottom: 16px;
}
.fis-art-lead {
  font-size: 14.5px; font-weight: 600; color: #cbd5e1; line-height: 1.7;
  margin-bottom: 20px; padding: 12px 18px; border-left: 3px solid var(--gold);
  background: rgba(224,184,74,0.05); border-radius: 0 8px 8px 0;
}
.fis-art-body {
  font-size: 14px; color: #a29aa7; line-height: 1.8; margin-bottom: 16px;
}
.fis-art-body p { margin-bottom: 14px; }

/* SEO FAQ BLOCK */
.fis-faq-block {
  margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line-soft);
}
.fis-faq-head {
  font-family: var(--font-h); font-size: 1.05rem; font-weight: 800; color: #ffffff;
  margin-bottom: 14px; display: flex; align-items: center; gap: 8px;
}
.fis-faq-head svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 2; }
.fis-faq-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 12px;
}
.fis-faq-card {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px; padding: 14px;
}
.fis-faq-card strong { color: #ffffff; font-size: 13px; display: block; margin-bottom: 6px; }
.fis-faq-card p { color: #a29aa7; font-size: 12.5px; line-height: 1.5; margin: 0; }

.fis-keywords-row {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px;
  padding-top: 18px; border-top: 1px solid var(--line-soft); align-items: center;
}
.fis-kw-label {
  font-size: 11px; font-weight: 800; color: var(--gold2);
  text-transform: uppercase; letter-spacing: 1px; display: flex; align-items: center; gap: 4px; margin-right: 4px;
}
.fis-kw-label svg { width: 12px; height: 12px; fill: currentColor; }
.fis-kw-list { display: flex; flex-wrap: wrap; gap: 6px; }
.fis-kw-tag {
  font-size: 11.5px; font-weight: 700; color: var(--gold2);
  background: rgba(224,184,74,0.08); border: 1px solid var(--line);
  padding: 4px 12px; border-radius: 15px;
}

/* ===== 39 DISTRICT REGION LINKS SECTION ===== */
.fis-region-section {
  padding: 24px 0 32px;
}
.fis-region-box {
  background: linear-gradient(145deg, #17111c, #0e0c11);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 28px;
}
.fis-region-title {
  font-family: var(--font-h); font-size: 18px; font-weight: 900; color: #ffffff;
  display: flex; align-items: center; gap: 8px; margin-bottom: 18px;
}
.fis-region-title svg { width: 18px; height: 18px; fill: var(--gold); }
.fis-region-split {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px;
}
@media (max-width: 820px) {
  .fis-region-split { grid-template-columns: 1fr; gap: 16px; }
}
.fis-region-heading {
  font-size: 13px; font-weight: 800; color: var(--gold2); display: block; margin-bottom: 10px;
}
.fis-region-links {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.fis-region-links a {
  padding: 5px 11px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03); color: #ddd7e1; font-size: 11px; font-weight: 700;
  transition: all 0.2s; text-decoration: none !important;
}
.fis-region-links a:hover {
  border-color: var(--gold); color: var(--gold2); background: rgba(224,184,74,0.1);
}

/* ===== FOOTER ===== */
.fis-footer {
  background: #060608;
  border-top: 1px solid var(--line);
  padding: 44px 0 24px;
  margin-top: auto;
}
.fis-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.9fr;
  gap: 32px;
  margin-bottom: 30px;
}
@media (max-width: 900px) {
  .fis-footer-grid { grid-template-columns: 1fr; gap: 24px; }
}
.fis-footer-grid strong {
  color: var(--gold2); font-size: 15px; font-weight: 800; display: block; margin-bottom: 10px; font-family: var(--font-h);
}
.fis-footer-grid b {
  color: #ffffff; font-size: 13px; font-weight: 800; display: block; margin-bottom: 10px;
}
.fis-footer-grid p {
  color: #9a91a0; font-size: 12px; line-height: 1.7;
}
.fis-footer-grid a {
  color: #c4bcc9; text-decoration: none; transition: color 0.2s;
}
.fis-footer-grid a:hover { color: var(--gold2); }

.fis-bottom {
  border-top: 1px solid var(--line-soft);
  padding-top: 18px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
  color: #7d7583; font-size: 11.5px;
}

@media (max-width: 920px) {
  .fis-toggle { display: block; }
  .fis-nav {
    display: none; position: absolute; top: 68px; left: 14px; right: 14px; padding: 14px;
    background: #09090c; border: 1px solid var(--line); border-radius: 14px; flex-direction: column;
  }
  .fis-head.open .fis-nav { display: flex; }
}
