/* Bulut Design - özel stiller */

.nav-link {
  position: relative;
  padding-bottom: 4px;
  transition: color .2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: #000;
  transition: width .25s;
}
.nav-link:hover::after,
.nav-active::after { width: 100%; }
.nav-active { font-weight: 700; }

.slide-in { animation: slideIn .55s ease both; }
@keyframes slideIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #f5f5f5; }
::-webkit-scrollbar-thumb { background: #000; }
