.unique-card {
  display: flex;
  flex-direction: column;
  background: #f6f6f6;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%; /* ✅ Makes all cards align if inside a grid */
}

.unique-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
}

.unique-card-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
  margin-bottom: 15px;
}

.unique-card-image img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.unique-card-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between; /* ✅ Pushes button to bottom */
  padding: 20px;
}

.unique-card-title {
  font-size: 1.85rem;
  text-align: center;
  font-weight: bold;
  margin-bottom: 12px;
  color: #000;
  line-height: 1.4;
}

.unique-card-text {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1; /* ✅ Fills available space so button stays bottom */
}

.unique-card-btn {
  align-self: center;
  background: #002d72;
  color: #fff;
  padding: 10px 18px;
  border: none;
  border-radius: 3px;
  font-size: 0.9rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}

.unique-card-btn:hover {
  background: #12497d;
}
