/*============================================================================================
	Start Offer Card  
==============================================================================================*/
.offers-card.style1 {
  box-shadow: 0px 2px 2px 0px rgba(44, 44, 84, 0.19);
  border-radius: 16px;
}
.offers-card.style1 .offers-img {
  position: relative;
  overflow: hidden;
  border-radius: 16px 16px 0px 0px;
  transition: all 0.3s ease;
  height: 200px;
}
.offers-card.style1 .offers-img img {
  width: 100%;
  object-fit: contain;
  border-radius: 16px 16px 0px 0px;
  transition: all 0.3s ease;
}
.offers-card.style1:hover .offers-img img {
  transform: scale(1.04);
}
.offers-card.style1 .offers-content {
  padding: 24px;
}
.offers-card.style1 .offers-label {
  position: absolute;
  border-radius: 32px;
  background: #ef4444;
  padding: 4px 12px;
  top: 16px;
  right: 16px;
  color: var(--white-color);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.offers-card.style1 .offers-content h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.offers-card.style1 .offers-btn {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--primary-color);
  font-weight: 500;
}
.offers-card.style1 .offers-btn:hover {
  color: var(--title-color);
}
.offers-card.style1 .offers-btn svg path {
  transition: all 0.3s ease;
}
.offers-card.style1 .offers-btn:hover svg path {
  fill: var(--title-color);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .offers-card.style1 .offers-content {
    padding: 16px;
  }
  .offers-card.style1 .offers-content h4 {
    font-size: 16px;
    line-height: 120%;
  }
  .offers-card.style1 .offers-img {
    height: 160px;
  }
}

@media only screen and (max-width: 767px) {
  .offers-card.style1 .offers-content h4 {
    font-size: 16px;
    line-height: 120%;
  }
  .offers-card.style1 .offers-img {
    height: 160px;
  }
  .offers-card.style1 .offers-content {
    padding: 16px;
  }
}

/*============================================================================================
  End Offer Card   
==============================================================================================*/
