.rentGuide .rent-guide-card {
  width: 100%;
  height: 200px;
  position: relative;
  display: flex;
}

.rent-guide-card img {
  width: 100%;
  object-fit: cover;
}

.rent-guide-card .content {
  padding: 0px 46px;  
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  color: white;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.rent-guide-card .content .section-title {
  color: white;
  line-height: 28px;
  font-size: var(--font-size-24);
}

.rent-guide-card .content .section-title span {
  display: block;
}

.rent-guide-card .content > * {
  width: 100%;
}

.rent-guide-card .content .link {
  text-align: end;
  position: absolute;
  right: 2rem;
  bottom: 2rem;
}

.rent-guide-card .content .link .button-v2 {
  color: white;
  min-width: 0em;
  padding: 0px 0px;
  font-size: 2rem;
}

.rentGuide .rent-guide-card {
  margin-bottom: var(--gap-lg);
}

.rentGuide .rent-guide-card .icon {
  display: block;
  position: absolute;
  right: 24px;
  bottom: 6px;
}

@media screen and (max-width: 860px) {
  .rent-guide-card .content {
    padding: 0px 15px;
  }
  .rent-guide-card .content .section-title {
    margin-bottom: 0px;
    padding: 0px;
    padding-top: 0px;
    font-size: 22px;
  }

  .rentGuide .rent-guide-card .icon {
    display: block;
    position: absolute;
    right: 15px;
    bottom: 14px;
  }
}

@media screen and (max-width: 390px) {
  .rentGuide .rent-guide-card {
    height: 160px;
  }
}
