.hg-fleet-section{
  padding:80px 20px;
  background:#f7f3ec;
  color:#0b4b3a;
}

.hg-fleet-wrap{
  max-width:1200px;
  margin:0 auto;
}

.hg-fleet-head{
  max-width:680px;
  margin:0 auto 42px;
  text-align:center;
}

.hg-fleet-head p{
  margin:0 0 10px;
  font-size:13px;
  font-weight:800;
  letter-spacing:.18em;
  color:#f28c18;
}

.hg-fleet-head h2{
  margin:0;
  font-size:clamp(30px,4vw,48px);
  line-height:1.08;
  letter-spacing:-.04em;
  color:#0b4b3a;
}

.hg-fleet-head span{
  display:block;
  margin-top:14px;
  font-size:16px;
  line-height:1.6;
  color:#5d6b66;
}

.hg-fleet-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.hg-fleet-card{
  overflow:hidden;
  border-radius:24px;
  background:#fff;
  border:1px solid rgba(11,75,58,.08);
  box-shadow:0 18px 45px rgba(11,75,58,.09);
  transition:.32s ease;
}

.hg-fleet-card:hover{
  transform:translateY(-6px);
  box-shadow:0 26px 65px rgba(11,75,58,.15);
}

.hg-fleet-img{
  height:210px;
  overflow:hidden;
  background:#eee;
}

.hg-fleet-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:.45s ease;
}

.hg-fleet-card:hover .hg-fleet-img img{
  transform:scale(1.06);
}

.hg-fleet-body{
  padding:22px;
}

.hg-fleet-tag{
  display:inline-flex;
  margin-bottom:12px;
  padding:6px 12px;
  border-radius:999px;
  background:rgba(242,140,24,.12);
  color:#f28c18;
  font-size:12px;
  font-weight:800;
}

.hg-fleet-body h3{
  margin:0 0 10px;
  font-size:23px;
  line-height:1.15;
  color:#0b4b3a;
}

.hg-fleet-body p{
  min-height:78px;
  margin:0;
  font-size:15px;
  line-height:1.65;
  color:#52615c;
}

.hg-fleet-body a{
  display:flex;
  align-items:center;
  justify-content:center;
  height:44px;
  margin-top:20px;
  border-radius:999px;
  background:#0b4b3a;
  color:#fff !important;
  font-size:14px;
  font-weight:800;
  text-decoration:none !important;
  transition:.25s ease;
}

.hg-fleet-body a:hover{
  background:#f28c18;
  color:#fff !important;
}

.hg-fleet-featured{
  background:#0b4b3a;
}

.hg-fleet-featured .hg-fleet-body h3,
.hg-fleet-featured .hg-fleet-body p{
  color:#fff;
}

.hg-fleet-featured .hg-fleet-body p{
  color:rgba(255,255,255,.76);
}

.hg-fleet-featured .hg-fleet-body a{
  background:#f28c18;
}

.hg-fleet-featured .hg-fleet-body a:hover{
  background:#fff;
  color:#0b4b3a !important;
}

@media(max-width:1100px){
  .hg-fleet-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:640px){
  .hg-fleet-section{
    padding:60px 16px;
  }

  .hg-fleet-grid{
    grid-template-columns:1fr;
  }

  .hg-fleet-img{
    height:230px;
  }

  .hg-fleet-body p{
    min-height:auto;
  }
}