/* =========================================
   HOME OFFER SECTION
========================================= */

.wlt-home-offer{
  width: 100%;
  padding: 0 20px 60px;
  background: #FFFFFF;
  box-sizing: border-box;
}

.wlt-home-offer__inner{
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

/* Header */
.wlt-home-offer__head{
  max-width: 900px;
  margin: 0 auto 38px;
  text-align: center;
}

.wlt-home-offer__heading{
  margin: 0 0 8px;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 36px;
  line-height: 46px;
  font-weight: 600;
  color: #003A5C;
  letter-spacing: 0;
  text-transform: capitalize;
}

.wlt-home-offer__description{
  margin: 0;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #333333;
  letter-spacing: 0;
}

/* Cards */
.wlt-home-offer__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
}

.wlt-home-offer__card{
  min-width: 0;
}

.wlt-home-offer__image-wrap{
  width: 100%;
  height: 340px;
  border-radius: 24px;
  overflow: hidden;
  background: #F6F8FA;
  margin-bottom:18px;
}

.wlt-home-offer__image{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Card Body */
.wlt-home-offer__body{
  padding-top: 12px;
}

.wlt-home-offer__card-title{
  margin: 0 0 8px;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  color: #003A5C;
}

.wlt-home-offer__card-description{
  margin: 0 0 12px;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #333333;
}

/* Link Button */
.wlt-home-offer__link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  color: #DB8629;
  text-decoration: none;
  transition: gap 0.25s ease, opacity 0.25s ease;
}

.wlt-home-offer__link:hover{
  gap: 12px;
  opacity: 0.85;
  color: #DB8629;
}

.wlt-home-offer__link img{
  display: block;
  width: 13px;
  height: 13px;
  object-fit: contain;
}

/* Entrance Animation */
.wlt-home-offer__head,
.wlt-home-offer__card{
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.wlt-home-offer.is-visible .wlt-home-offer__head,
.wlt-home-offer__card.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* Laptop */
@media (min-width: 1025px) and (max-width: 1366px){
  .wlt-home-offer{
    padding-left: 20px;
    padding-right: 20px;
  }

  .wlt-home-offer__grid{
    gap: 48px;
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px){
  .wlt-home-offer{
    padding: 0 20px 50px;
  }

  .wlt-home-offer__grid{
    gap: 36px;
  }

  .wlt-home-offer__image-wrap{
    height: 280px;
  }

  .wlt-home-offer__heading{
    font-size: 32px;
    line-height: 42px;
  }
}

/* Mobile */
@media (min-width: 320px) and (max-width: 767px){
  .wlt-home-offer{
    padding: 0 20px 44px;
  }

  .wlt-home-offer__head{
    margin-bottom: 28px;
  }

  .wlt-home-offer__heading{
    font-size: 30px;
    line-height: 40px;
  }

  .wlt-home-offer__grid{
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .wlt-home-offer__image-wrap{
    height: 240px;
    border-radius: 18px;
  }

  .wlt-home-offer__card-title{
    font-size: 22px;
    line-height: 32px;
  }
}