.bl_recommendItem {
  border-radius: 8px;
  padding: 20px;
  background: #ebf2e8;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bl_recommendItemTop {
  position: relative;
}

.bl_recommendBadge {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 150px;
  height: 126px;
}

.bl_recommendHeader {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bl_recommendHeader h3 {
  font-weight: 500;
  font-size: clamp(1.25rem, 1.1786rem + 0.3571vw, 1.5rem);
  line-height: 120%;
  margin: 0;
}

.bl_recommendItem .bl_recommendThumb {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 260 / 155;
  height: fit-content;
}

.bl_recommendThumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bl_recommendText {
  position: relative;
}

.bl_recommendText h4 {
  font-size: clamp(1.125rem, 1.0893rem + 0.1786vw, 1.25rem);
}

.bl_recommendText::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 80px;
  height: 72px;
  background: url(../img/common/quote-left.svg) no-repeat center / contain;
}

.bl_recommendText::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: 0;
  width: 80px;
  height: 72px;
  background: url(../img/common/quote-right.svg) no-repeat center / contain;
}

.bl_recommendItem small {
  font-size: 14px;
}

@media screen and (min-width: 768px) {
  .bl_recommendItem {
    flex-direction: row;
    padding: 40px 50px;
    gap: 40px;
  }

  .bl_recommendItemTop {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 260px;
    flex-shrink: 0;
  }

  .bl_recommendBadge {
    top: 0;
    right: 0;
    transform: translate(50%, 0);
  }

  .bl_recommendItem .bl_recommendThumb {
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    max-width: 260px;
    width: 30vw;
  }

  .bl_recommendItem .bl_recommendText {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .bl_recommendItemName {
    font-size: 20px;
  }

  .bl_recommendText::before,
  .bl_recommendText::after {
    width: 120px;
    height: 100px;
  }
}
