.theo-project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  margin: 32px 0 20px 0;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}
.theo-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px 0 #0001;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.15s;
  border: 1.5px solid #ededed;
  max-width: 300px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.theo-card:hover {
  box-shadow: 0 8px 32px 0 #0002;
  border-color: #753b61;
}
.theo-card-img {
  display: block;
  width: 100%;
  object-fit: cover;
  min-height: 220px !important;
  max-height: 220px !important;
  height: 220px !important;
  aspect-ratio: unset !important;
  background: #f8f8f8;
}
.theo-card h4 {
  font-size: 1.1rem;
  text-align: center;
  margin: 12px 0 16px 0;
  font-weight: 600;
  min-height: 2.5em;
  color: #222;
}

@media (max-width: 700px) {
  .theo-project-grid {
    grid-template-columns: 1fr;
  }
  .theo-card-img {
    min-height: 140px;
    max-height: 140px;
    height: 140px;
  }
}
.select2-container {
  width: 100% !important;
}
.select2-selection--single {
  background: #fff;
  border-radius: 16px !important;
  min-height: 46px;
  border: 1.5px solid #753b61 !important;
  box-shadow: none !important;
  font-size: 1.1rem;
  padding: 8px 14px !important;
}
.select2-selection__rendered {
  color: #222 !important;
  font-size: 1.1rem !important;
  padding-left: 10px !important;
}
.select2-selection__arrow {
  height: 100% !important;
}
.select2-container--default .select2-selection--single {
  background: #fff !important;
  color: #222 !important;
  border-radius: 24px !important;
  border: 2px solid #753b61 !important;
  min-height: 56px;
  box-shadow: none !important;
  padding-left: 18px !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #222 !important;
  font-size: 2rem;
  padding-left: 14px !important;
  line-height: 56px !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100% !important;
  right: 12px;
}
.select2-dropdown {
  background: #fff !important;
  color: #222 !important;
  border-radius: 18px !important;
  font-size: 1.3rem;
}
.select2-results__option {
  color: #222 !important;
  font-size: 1.1rem;
  padding: 10px 18px;
}

