/* Who For section */
.who-for-card { border: 0; }

.who-for .wf-item {
  border: 1px solid rgba(0,0,0,.04);
  border-radius: .75rem;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  background: #fff;
}

.who-for .wf-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.75rem 1.5rem rgba(0,0,0,.08);
  border-color: rgba(0,0,0,.08);
}

.who-for .icon-circle {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #f5f6f8;
  font-size: 1.5rem;
  user-select: none;
}

/* Primary/secondary buttons system-wide reminder (ensure no underline) */
.primary-btn, .secondary-btn, .secondary-reverse-btn { text-decoration: none; }


/* Who For Section with Images */
.who-for-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: .75rem;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,.08);
    transition: transform .3s ease;
  }

  @media (min-width: 768px) {  /* md ve üstü */
    .who-for-img { height: 230px; }
  }
  @media (min-width: 1200px) { /* xl ve üstü */
    .who-for-img { height: 260px; }
  }

  
  .who-for-img:hover {
    transform: scale(1.02);
  }
  
  .who-for .wf-item {
    border: 1px solid rgba(0,0,0,.05);
    border-radius: .75rem;
    background: #fff;
    transition: transform .15s ease, box-shadow .15s ease;
  }
  
  .who-for .wf-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 1rem 1.5rem rgba(0,0,0,.1);
  }
  
  .who-for .icon-circle {
    width: 50px; height: 50px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: #f5f6f8;
    font-size: 1.3rem;
  }
  