﻿* {
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}


h2 {
  margin-bottom: 20px;
  font-size: 22px;
}

.tutor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* ✅ 4 cards per row */
  gap: 20px;
}

.tutor-card {
padding:24px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;
}

.tutor-card:hover {
  transform: translateY(-5px);
}

.tutor-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: 14px;
}

.card-body h3 {
  margin: 0 0 5px;
  font-size: 16px;
}

.location {
  font-size: 13px;
  color: #666;
}

.rating {
  font-size: 13px;
  color: #f39c12;
  margin: 6px 0;
}

.desc {
  font-size: 13px;
  color: #444;
  line-height: 1.4;
  margin-bottom: 8px;
}

.price {
  font-size: 13px;
  font-weight: bold;
  color: #2c3e50;
}
