﻿/* ===============================
   Student Gallery - card.css (Light Theme)
   پالت الهام‌گرفته از سایت مرجع
   =============================== */

.student-card {
  background: #ffffff; /* سفید */
  border: 1px solid #e5e7eb; /* خاکستری روشن */
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.student-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

/* تصویر مربعی */
.student-card .media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f9fafb;
}
.student-card .media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* اطلاعات */
.student-card .info {
  padding: 12px 14px;
  min-height: 96px;
  display: grid;
  grid-auto-rows: min-content;
  gap: 8px;
}
.student-card .name {
  font-weight: 600;
  margin: 0;
  color: #111827; /* تیتر تیره */
  font-size: 1rem;
}
.student-card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.student-card .tag {
  display: inline-block;
  background: #f3f4f6; /* خاکستری خیلی روشن */
  border: 1px solid #e5e7eb;
  color: #374151; /* خاکستری تیره‌تر */
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 999px;
  white-space: nowrap;
}

/* دکمه */
.student-card button,
.student-card .btn {
  background: #ffffff;
  border: 1px solid #d1d5db;
  color: #111827;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s ease, border 0.2s ease;
}
.student-card button:hover,
.student-card .btn:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
}
