.actual-list {
  padding-bottom: 150px;
  background-color: transparent;
  background: linear-gradient(0deg, rgb(247, 248, 242) 0%, rgba(247, 248, 242, 0.8) 95%, rgba(0, 0, 0, 0) 100%);
}
.actual-list .content-wrapper {
  align-items: center;
}
.actual-list__container {
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 60px;
  width: 100%;
}
.actual-list__card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 2px;
  overflow: hidden;
}
.actual-list__card:hover .actual-list__wrapper {
  background: linear-gradient(90deg, #FECE46 42.5%, #FBE35F 100%);
}
.actual-list__card:hover .actual-list__detail-link {
  color: #fff;
}
.actual-list__card:hover .actual-list__detail-link:after {
  background-image: url("/assets/svg/arrow-forward-light.svg");
}
.actual-list__image {
  object-fit: contain;
}
.actual-list__wrapper {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
  padding: 32px 20px 28px 20px;
  background-color: #fff;
}
.actual-list__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.actual-list__title {
  margin-bottom: 10px;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 30px;
  line-height: 1.875rem;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
  font-weight: 600;
}
.actual-list__text p {
  color: #231F20;
  margin-bottom: 10px;
}
.actual-list__detail-link {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  margin-top: 40px;
  color: #FDB714;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 20px;
  line-height: 1.25rem;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
  font-weight: 600;
  text-transform: uppercase;
}
.actual-list__detail-link:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.actual-list__detail-link:after {
  content: "";
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 17px;
  height: auto;
  margin-left: 10px;
  background-image: url("/assets/svg/arrow-forward-yellow.svg");
  background-repeat: no-repeat;
  background-size: 17px auto;
  background-position: center center;
}
.actual-list__more-button {
  position: relative;
  display: flex;
  align-items: center;
  height: 60px;
  margin-top: 60px;
  padding: 0 10px;
  color: #231F20;
  background-color: transparent;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 20px;
  line-height: 1.25rem;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
}
.actual-list__more-button:after {
  content: "";
  position: absolute;
  width: 85%;
  height: 2px;
  bottom: 12px;
  left: 8px;
  background-color: #231F20;
  transform-origin: bottom right;
  transform: scaleX(0);
  transition: transform 0.3s ease-out;
}
.actual-list__more-button:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.actual-list__arrow-icon {
  display: block;
  width: 21px;
  margin-left: 10px;
}
@media only screen and (min-width: 768px) {
  .actual-list__container {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .actual-list {
    padding: 20px 0 250px 0;
  }
  .actual-list__container {
    grid-template-columns: repeat(3, 1fr);
    grid-row-gap: 80px;
  }
  .actual-list__card {
    max-width: 360px;
  }
  .actual-list__title {
    margin-bottom: 16px;
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 30px;
    line-height: 1.875rem;
    font-feature-settings: "kern" 1;
    font-kerning: normal;
  }
  .actual-list__more-button {
    margin-top: 80px;
  }
}
@media only screen and (min-width: 1248px) {
  .actual-list__wrapper {
    padding: 42px 40px 28px 40px;
  }
}