.retailers-section {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.retailer-card {
    width: calc(100%/3 - 20px);
    height: fit-content;
    border-radius: 24px;
    margin-top: 20px;
    padding: 16px;
    background: white;
    text-decoration: none !important;
    box-shadow: 0 1px 3px rgba(197, 196, 230, 0.5);
}

@media screen and (max-width: 600px) {
  .retailer-card {
    width: calc(100%/1 - 20px);
  }
}

.retailer-card .image {
    border-radius: 24px;
    background-position: center;
    background-size: cover !important;
    aspect-ratio: 7 / 5;
    min-width: 100%;
    height: auto;
    background: #CCCCCC
}

.retailer-card .name {
    padding: 0 8px;
    font-weight: 800;
    font-size: 20px !important;
    letter-spacing: 0 !important;
    line-height: 24px !important;
    margin-bottom: 20px !important;
    margin-top: 16px !important;
}

.retailer-card .description {
    padding: 32px 24px;
    font-size: 18px !important;
    letter-spacing: 0 !important;
    line-height: 150% !important;
    margin: 0 !important;
    padding: 0 8px;
}

.retailer-card .retailer-button {
    margin: 16px 8px 0 8px;
    width: 100%;
    height: 48px;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #212121;
}

.retailer-button {
  min-width: 200px;
  width: fit-content;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white !important;
  text-decoration: none !important;
  border-radius: 25px;
  margin-right: 8px;
  font-weight: 600
}

.green {
  background: #14C4B8 !important
}