.widget-latest-perf .widget-list {
  display: grid;
  grid-gap: var(--grid-gap);
  row-gap: var(--row-gap);
  --grid-num: 3;
  --grid-t-num: 2;
  --grid-m-num: 1;
}

.widget-latest-perf .widget-list .post {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--input-border);
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}

.widget-latest-perf .widget-list .post:hover {
  box-shadow: 2px 10px 10px 0px rgba(0, 0, 0, 0.04);
}

.widget-latest-perf .widget-list .post .image {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.widget-latest-perf .widget-list .post .image::before {
  content: "";
  display: block;
  /* padding-bottom: 75%; */
}

.widget-latest-perf .widget-list .post .image .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.3s ease-in-out;
}

.widget-latest-perf .widget-list .post:hover .image .bg {
  transform: scale(1.07);
}

.widget-latest-perf .widget-list .post .text {
  position: relative;
  aspect-ratio: 4/1.5;
  padding: 30px;
  padding-top: 50px;
  background-color: #fff;
}

.widget-latest-perf .widget-list .post .text .title {
  line-height: 1;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.widget-latest-perf .widget-list .post .text .desc {
  color: var(--color-mute);
  margin-top: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
