/* ================= SEARCH ================= */
.ikomt-search{
  text-align:center;
  margin:30px 0;
}

#ikomtSearch{
  width:340px;
  padding:12px 16px;
  border:1px solid #ddd;
  border-radius:10px;
  font-size:15px;
}

/* ================= SEARCH INFO / COUNTERS ================= */
.ikomt-search-info{
  text-align:center;
  font-size:14px;
  color:#555;
  margin-bottom:25px;
}

.ikomt-search-info span{
  margin:0 6px;
  font-weight:500;
  cursor:pointer;
  border-bottom:2px solid transparent;
  transition:color .2s ease, border-bottom .2s ease;
}

.ikomt-search-info span:hover,
.ikomt-search-info span.active{
  color:#00a65d;
  border-bottom-color:#00a65d;
}

/* ================= GRID ================= */
.ikomt-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(300px,1fr));
  gap:32px;
}

/* ================= CARD ================= */
.ikomt-card{
  background:#fff;
  border-radius:20px;
  padding:28px 24px 30px;
  text-align:center;
  box-shadow:0 12px 28px rgba(0,0,0,.08);
  transition:transform .35s ease, box-shadow .35s ease;
}

.ikomt-card:hover{
  transform:translateY(-10px) scale(1.02);
  box-shadow:0 22px 44px rgba(0,0,0,.15);
}

/* ROLE BORDERS */
.ikomt-card.egitmen{border:3px solid #00a65d}
.ikomt-card.asistan{border:3px solid #f39c12}
.ikomt-card.mezun{border:3px solid transparent}

/* ================= IMAGE ================= */
.img-wrap{
  position:relative;
  display:flex;
  justify-content:center;
  margin-bottom:18px;
}

.img-wrap img{
  width:150px;
  height:150px;
  object-fit:cover;
  border-radius:18px;
}

/* ================= BADGES ================= */
.badge{
  position:absolute;
  top:14px;
  left:-22px;
  width:140px;
  transform:rotate(-45deg);
  text-align:center;
  padding:6px 0;
  font-size:11px;
  font-weight:700;
  color:#fff;
  pointer-events:none;
}

.egitmen-badge{background:#00a65d}
.asistan-badge{background:#f39c12}

/* ================= TEXT ================= */
.ikomt-card h3{
  font-size:18px;
  margin:10px 0 6px;
}

.ikomt-card p{
  font-size:14px;
  color:#666;
  margin:0;
}

/* ================= SEARCH HIDE ================= */
.ikomt-hidden{
  display:none !important;
}

/* ================= NO RESULT (ANIMATED) ================= */
#ikomtNoResult{
  text-align:center;
  font-size:18px;
  color:#999;
  margin:40px 0;

  opacity:0;
  transform:translateY(12px);
  pointer-events:none;

  transition:opacity .35s ease, transform .35s ease;
}

#ikomtNoResult.show{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}
