.overview-card-container {
  display: flex;
  margin: 0% 10%;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1200px;
  justify-content: center;
}

.overview-card {
  color: inherit;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 350px;
  padding-bottom: 20px;
  flex: 1 1 30%;
}

.overview-card:hover {
  /*transform: translateY(-8px);*/
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.overview-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.overview-card-content {
  padding: 20px;
}

.overview-card h3 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.2em;
  font-weight: 500;
}

.overview-card p {
  font-size: 0.8em;
  font-weight: 300;
  line-height: 1.4;
  margin: 0;
}

/*.overview-card p b {
  font-weight: 600;
}*/

@media (max-width: 900px) {
  .overview-card-container {
    flex-direction: column;
    align-items: center;
  }
}