.content-card {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 0 25px;
  box-shadow: inset 0 0 0 1px #FFF;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  max-width: 100%;
  aspect-ratio: 328/339;
  width: 328px;
  height: auto;
}
@media only screen and (min-width: 576px) {
  .content-card {
    border-radius: 0 30px;
    aspect-ratio: 495/331;
    width: 495px;
    height: auto;
  }
}
.content-card:hover .content-card__title {
  color: #007ACC;
}
.content-card:hover .content-card__description {
  opacity: 1;
}
.content-card__title {
  display: flex;
  justify-content: flex-start;
  padding: 9px 16px 9px 12px;
  background-color: #fff;
  width: fit-content;
  margin-left: auto;
  position: absolute;
  z-index: 2;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  border-radius: 0 0 20px 0;
  filter: drop-shadow(0 0 20px rgba(0, 122, 204, 0.2));
  color: #AA273E;
  font-family: "Dunbar Tall";
  font-style: normal;
  font-weight: 700;
}
.content-card__title::before, .content-card__title::after {
  content: "";
  position: absolute;
  top: auto;
  right: auto;
  bottom: -24px;
  left: 0;
  width: 25px;
  height: 25px;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' viewBox='0 0 25 25' fill='none'%3E%3Cpath d='M25 25H0C13.8071 25 25 13.8071 25 0V25Z' fill='white'/%3E%3C/svg%3E");
  transform: rotate(180deg);
}
.content-card__title::after {
  top: 0;
  right: -24px;
  bottom: auto;
  left: auto;
}
.content-card__image {
  aspect-ratio: 328/220;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}
@media only screen and (min-width: 576px) {
  .content-card__image {
    aspect-ratio: unset;
    position: absolute;
    height: 100%;
  }
}
.content-card__description {
  background-color: #F0F0F0;
  padding: 16px 20px 0 20px;
  margin: 0;
  margin-block-end: 0 !important;
  height: 119px;
  color: #000;
  font-family: "Dunbar Text";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.28px;
}
@media only screen and (min-width: 576px) {
  .content-card__description {
    color: #FFF;
    text-shadow: 0 4px 12px rgba(0, 122, 204, 0.9);
    font-family: "Dunbar Text";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.32px;
    position: absolute;
    z-index: 1;
    width: 100%;
    background-color: transparent;
    background: linear-gradient(180deg, rgba(0, 122, 204, 0.9) 30%, rgba(0, 122, 204, 0) 100%);
    height: 265px;
    opacity: 0;
    transition: all 0.2s ease-out;
    padding: 70px 30px 0 30px;
  }
}
.content-card__btn-container {
  display: flex;
  justify-content: flex-end;
  padding: 12px 0 0 12px;
  background-color: #fff;
  width: fit-content;
  margin-left: auto;
  position: absolute;
  z-index: 2;
  top: auto;
  right: 0;
  bottom: 0;
  left: auto;
  border-radius: 20px 0 0 0;
  box-shadow: 0 0 20px 0 rgba(0, 122, 204, 0.2);
}
.content-card__btn-container::before, .content-card__btn-container::after {
  content: "";
  position: absolute;
  top: auto;
  right: auto;
  bottom: -1px;
  left: -24px;
  width: 25px;
  height: 25px;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' viewBox='0 0 25 25' fill='none'%3E%3Cpath d='M25 25H0C13.8071 25 25 13.8071 25 0V25Z' fill='white'/%3E%3C/svg%3E");
}
.content-card__btn-container::after {
  top: -24px;
  right: 0;
  bottom: auto;
  left: auto;
  transform: rotate(360deg);
}
.content-card__btn-container .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.content-card-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 60px 30px;
  justify-content: center;
}

/*# sourceMappingURL=content-cards.css.map */
