.history-all-months-wrapper {
  font-size: 24px;
  color: #740FD9;
}
.history-all-months-wrapper .history-all-months-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .history-all-months-wrapper .history-all-months-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .history-all-months-wrapper .history-all-months-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.history-all-months-wrapper .history-month-card {
  text-decoration: none;
  color: #740FD9;
  display: block;
}
.history-all-months-wrapper .history-month-card-inner {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(to bottom, #bf297d 1%, #570fa1 100%);
  box-shadow: 3px 5px 5px 0 rgba(123, 40, 228, 0.35);
}
.history-all-months-wrapper .history-month-card-image {
  width: 100%;
  height: 90%;
  object-fit: cover;
  display: block;
  position: absolute;
}
.history-all-months-wrapper .history-month-card-overlay {
  display: none;
}
.history-all-months-wrapper .history-month-card-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: #740FD9;
  border-radius: 0 0 15px 15px;
}
.history-all-months-wrapper .history-month-card-name {
  font-size: 24px;
  font-weight: bold;
  color: #FFF;
  line-height: 1.2;
}
@media screen and (min-width: 1024px) {
  .history-all-months-wrapper .history-month-card-name {
    font-size: 24px;
  }
}
.history-all-months-wrapper .history-month-card-arrow {
  width: 23px;
  height: 23px;
  flex-shrink: 0;
}
.history-all-months-wrapper .history-month-card:hover .history-all-months-wrapper .history-month-card-inner {
  box-shadow: 3px 5px 10px 0 rgba(123, 40, 228, 0.55);
}
.history-all-months-wrapper .history-month-card:hover .history-all-months-wrapper .history-month-card-inner::before {
  background: linear-gradient(to bottom, rgba(116, 15, 217, 0.1) 0%, rgba(116, 15, 217, 0.85) 79%, rgb(116, 15, 217) 100%);
}

/*# sourceMappingURL=history-all-months.css.map */
