﻿/* =========================
   CORPORATE FOLLOW 
========================= */

.corp-follow {
  background: #0f1217;
  padding: 22px;
  border-left: 4px solid #1695d5;
}

/* Başlık */
.corp-follow h5 {
  margin: 0 0 14px 0;
  font-size: 13px;
  letter-spacing: 0.8px;
  color: #ffffff;
}

/* İKON SATIRI – ASLA ALTA DÜŞMEZ */
.corp-follow-icons {
  display: flex;
  flex-wrap: nowrap;              
  justify-content: space-between;
  align-items: center;

  width: 100%;
  margin-top: 12px;
}

/* Tek ikon */
.corp-follow-icons a {
  flex: 0 0 48px;   
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 10px;
  background: #1c1f24;
  color: #ffffff;

  font-size: 20px;
  text-decoration: none;

  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
  transition: background-color .18s ease,
              transform .18s ease,
              box-shadow .18s ease;
}

.corp-follow-icons a:hover {
  background: #11417f;
  transform: translateY(-2px);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.12),
    0 10px 18px rgba(0,0,0,0.25);
}

.corp-follow-icons a i {
  line-height: 1;
}

/* Açıklama */
.corp-follow-text {
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.6;
  color: #9aa1ad;
}

/* Mobilde sadece border yönü değişir */
@media (max-width: 768px) {
  .corp-follow {
    border-left: none;
    border-top: 4px solid #1695d5;
  }
}

