/* Tahminal — sosyal ağ ikonları ve footer eklentileri
   style.css'ten sonra yüklenir; mevcut kuralları değiştirmez. */

.social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social a {
  width: var(--soc, 34px);
  height: var(--soc, 34px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #93A3BE;
  background: #131C2E;
  box-shadow: inset 0 0 0 1px #22314C;
  transition: color .18s cubic-bezier(.4,0,.2,1),
              background .18s cubic-bezier(.4,0,.2,1),
              box-shadow .18s cubic-bezier(.4,0,.2,1),
              transform .18s cubic-bezier(.4,0,.2,1);
}

.social a svg {
  width: 54%;
  height: 54%;
  display: block;
}

.social a:hover,
.social a:focus-visible {
  color: #0B1120;
  background: #FF7C33;
  box-shadow: inset 0 0 0 1px #FF7C33;
  transform: translateY(-1px);
}

.social a:focus-visible {
  outline: 2px solid #3BC9F5;
  outline-offset: 3px;
}

/* Açık zeminde kullanım */
.social-light a {
  color: #4A5468;
  background: #FFFFFF;
  box-shadow: inset 0 0 0 1px #E2E6EF;
}
.social-light a:hover,
.social-light a:focus-visible {
  color: #FFFFFF;
  background: #E8590C;
  box-shadow: inset 0 0 0 1px #E8590C;
}

/* Ana sayfa footer'ının sol alt bloğu */
.foot-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}

.foot-social-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  color: #6E7891;
}

/* Yasal sayfaların footer'ı */
.legal-foot-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 720px) {
  .foot-social { margin-top: 14px; }
  .legal-foot-left { gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .social a { transition: none; }
  .social a:hover { transform: none; }
}
