
.clase-card {
    position: absolute;
    display: flex;
    align-items: end;
    width: 100%;
    /* min-width: 250px;
    max-width: 500px; */
    height: auto;
    aspect-ratio: 1/1.2;
    border-radius: 10px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: #FFF;
    padding: 20px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .clase-card {
      aspect-ratio: 4/2.5;
    }
  }

.clase-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* min-width: 250px;
    max-width: 500px; */
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0,0,0,.5) 100%);
}

.clase-card--content-wrapper {
    width: 100%;
    max-width: 350px;
    z-index: 9;
}

.clase-card--content-wrapper p {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.clase-card--content-wrapper a {
    color: #FFF;
    font-weight: 600;
    text-decoration: underline;
}