/* ===== BankoTahminler Footer v2 (1176px container) ===== */
:root{
  --bt-max:1176px;
  --bt-text:#0f172a;        /* slate-900 */
  --bt-muted:#64748b;       /* slate-500 */
  --bt-border:#e5e7eb;      /* gray-200 */
  --bt-bg:#ffffff;
  --bt-bg-sub:#f8fafc;      /* slate-50 */
  --bt-accent:#e80f2e;      /* marka kırmızısı */
}

.btf2, .btf2 *{ box-sizing:border-box; }
.btf2{
  background:var(--bt-bg);
  color:var(--bt-text);
  font-family:ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  border-top:1px solid var(--bt-border);
}

.btf2-container{
  max-width:var(--bt-max);
  margin:0 auto;
  padding:24px 12px 32px;
}

/* ÜST: logo + linkler */
.btf2-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding-bottom:16px;
}
.btf2-brand{ display:inline-flex; line-height:0; text-decoration:none; }
.btf2-brand img{ height:40px; width:auto; display:block; }

/* Link şeridi (çok linkte rahat sarsın) */
.btf2-links{
  display:flex;
  flex-wrap:wrap;
  column-gap:14px;
  row-gap:10px;
  align-items:center;
}
.btf2-links a{
  text-decoration:none;
  color:var(--bt-text);
  padding:6px 8px;
  border-radius:8px;
  font-weight:600;
  font-size:14px;
  line-height:1;
}
.btf2-links a:hover{
  color:var(--bt-accent);
  background:var(--bt-bg-sub);
}
.btf2-links a:focus-visible{
  outline:2px solid var(--bt-accent);
  outline-offset:2px;
}

/* Not (disclaimer) */
.btf2-note{
  margin:12px 0 0;
  padding:12px 14px;
  background:var(--bt-bg-sub);
  border:1px solid var(--bt-border);
  border-radius:12px;
  color:#334155;            /* slate-700 */
  font-size:13px;
  line-height:1.55;
}

/* ALT: sosyal + telif */
.btf2-bottom{
  margin-top:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding-top:18px;
  border-top:1px dashed var(--bt-border);
}
.btf2-social{
  display:flex;
  gap:10px;
  align-items:center;
}
.btf2-so{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:36px;
  height:36px;
  border-radius:10px;
  background:#fff;
  border:1px solid var(--bt-border);
  color:#1f2937;
  text-decoration:none;
  transition:transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.btf2-so:hover{
  transform:translateY(-1px);
  border-color:#d1d5db;
  box-shadow:0 2px 8px rgba(15,23,42,0.08);
}
.btf2-so:active{ transform:translateY(0); }

.btf2-copy{
  color:var(--bt-muted);
  font-size:13px;
  white-space:nowrap;
}

/* Responsive */
@media (max-width: 920px){
  .btf2-top{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }
  .btf2-bottom{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }
  .btf2-copy{
    white-space:normal;
    text-align:left;
  }
}
@media (max-width: 420px){
  .btf2-brand img{ height:34px; }
  .btf2-so{ width:34px; height:34px; }
}

/* Hareket hassasiyeti */
@media (prefers-reduced-motion: reduce){
  .btf2-so{ transition:none; }
}
