.home-examples-content {
  padding-top: 3rem;
}
.home-examples {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.home-examples-title {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100px;
}

.home-examples-row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 2rem;
}

.example-card {
  background-color: #d9cec7;
  border-radius: 20px;
  padding: 1rem;
  flex: 1 1 50%;
  height: 100%;
  min-width: 500px;
}

.card-title {
  align-self: flex-start;
  color: #836a59;
}

.example-card-contents {
  display: flex;
  justify-content: center;
}

.example-left-column {
  display: flex;
  flex-direction: column;
  width: 35%;
  margin-right: 1rem;
  gap: 0.25rem;
}

.example-right-column {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.example-detail-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  height: 100%
}

.example-detail {
  border-radius: 20px;
  background-color: #f9f8f6;
  min-height: 35px;
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.example-cropped-img {
  flex: 1 1 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.example-aspect {
  aspect-ratio: 1.27/1;
}

.see-more-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.see-more-container a {
  color: black;
  text-transform: uppercase;
  text-decoration: underline;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

@media screen and (max-width: 1100px) {
  .home-examples-row {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 767px) {
  .example-card {
    min-width: 0;
  }
  .example-card {
    min-width: 0px;
  }
}
