/* ===== STUDIES GRID (BOKU STYLE) ===== */

.my-studies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns like your screenshot */
  gap: 30px;
  padding: 40px 20px;
}

/* CARD */
.my-card {
  background: #f5f5f5;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* IMAGE */
.my-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* CONTENT */
.card-content {
  padding: 15px;
  flex-grow: 1;
}

.card-content h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.card-content p {
  font-size: 14px;
  color: #555;
}

/* ALIGN ALL CARDS SAME HEIGHT */
.my-card {
  display: flex;
  flex-direction: column;
}

.card-content {
  flex-grow: 1;
}

/* RESPONSIVE */

/* Tablet */
@media (max-width: 992px) {
  .my-studies-grid {
    grid-template-columns: 1fr;
  }
}