* {
  box-sizing: border-box;

}

.blanca-programs__section {
  margin: auto;
  background-color: #232680;
  /* padding: 2rem; */
}

.blanca-programs__title {
  text-align: right !important;
  font-size: 2rem;
  font-weight: 900;
  color: #ebb012;
  margin-bottom: 1.5rem;
} 
.blanca-programs__title:hover { 
  color: #fde047;
}
.blanca-programs__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.blanca-programs__card {
  background-size: cover;
  background-position: top center;
  text-align: right !important;
  color: white !important;
  position: relative;
  flex: 1 1 calc(33.333% - 1rem);
  max-width: calc(33.333% - 1rem);
  aspect-ratio: 1.78 / 1;
  overflow: hidden;
  flex-grow: initial !important;
} 

@media (max-width: 991.98px) {
  .blanca-programs__card {
    flex: 1 1 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
    flex-grow: initial !important;
  }
}

@media (max-width: 599.98px) {
  .blanca-programs__card {
    flex: 1 1 100%;
    max-width: 100%;
    flex-grow: initial !important;
  }
}

.blanca-programs__card-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
}

.blanca-programs__date {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.blanca-programs__title-small {
  font-weight: bold;
  line-height: 1.3;
}

.blanca-programs__play-icon {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  padding: 8px;
}

.blanca-programs__play-icon svg {
  fill: white;
  width: 20px;
  height: 20px;
}

.blanca-programs__cta {
  margin-top: 1.5rem;
  text-align: left;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  color: white;
}
.blanca-programs__cta span {
  font-size: 30px;
  font-weight: 900; 
}

.blanca-programs__cta a {
  text-decoration: none;
  color: #fff;
  margin-left: 10px;
  font-weight: bold;
  font-size: 20px;
}

.blanca-programs__cta a:hover {
  color: #fde047;
}