.event-card-tag__card {
  display: flex;
  flex-direction: column;
}

.event-card-tag__card-img {
  width: 100%;
  height: calc(250 / 430 * 100vw);
}

.event-card-tag__card-content {
  background-color: #333333;
  padding: calc(20 / 430 * 100vw);
  padding-bottom: calc(30 / 430 * 100vw);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.event-card-tag__card-name {
  padding: calc(10 / 430 * 100vw);
  color: white;
  font-size: calc(15 / 430 * 100vw);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  background-color: #7d2322;
}
.event-card-tag__card-description {
  text-align: center;
  color: white;
  font-size: calc(13 / 430 * 100vw);
  margin-bottom: calc(30 / 430 * 100vw);
}

.event-card-tag__card-bottom {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-end;
}

.event-card-tag__card-link {
  background-color: #932423;
  color: white;
  padding: calc(10 / 430 * 100vw) calc(20 / 430 * 100vw);
}

@media (min-width: 576px) {
  .event-card-tag__card-img {
    height: 335px;
  }

  .event-card-tag__card-content {
    padding: 30px;
    padding-bottom: 35px;
  }
  .event-card-tag__card-name {
    padding: 15px 20px;
    font-size: 22px;
  }
  .event-card-tag__card-description {
    text-align: center;
    color: white;
    font-size: 20px;
    margin-bottom: 50px;
  }

  .event-card-tag__card-link {
    padding: 15px 20px;
  }
}
@media (min-width: 768px) {
  .event-card-tag__card {
    max-width: 556px;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) {
  .event-card-tag__card {
    max-width: 100%;
    margin: 0 auto;
    flex-direction: row;
  }
  .event-card-tag__content-block {
    display: flex;
    flex-direction: column;
    width: calc(100% - 500px);
    align-self: stretch;
  }
  .event-card-tag__card-content {
    height: 100%;
    justify-content: space-between;
  }
  .event-card-tag__card-description {
    margin-bottom: 20px;
  }
  .event-card-tag__card-img {
    width: 500px !important;
    height: 335px;
  }
}
