/* ===== AUDITS & PARTICIPATION REDESIGN ===== */
.audit-section-custom{
  padding: 22px 0 18px !important;
  background: #f8fafc;
}

.audit-section-custom .audit-title{
  text-align: center;
  margin-bottom: 12px !important;
}

.audit-section-custom .audit-title h2{
  margin: 0 !important;
  font-size: 42px;
  line-height: 1.08;
  font-weight: 800;
  color: #1a1a1a;
  position: relative;
  display: inline-block;
}

.audit-section-custom .audit-title::after{
  display: none;
  content: none;
}
.audit-section-custom .audit-title h2::before{
  display: none;
  content: none;
}
.audit-section-custom .audit-subtitle{
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  color: #d76335;
}
/* REMOVE ALL DEFAULT UNDERLINES */
.audit-section-custom .theme_title::after,
.audit-section-custom .theme_title_common::after,
.audit-section-custom .theme_title h2::after,
.audit-section-custom .theme_title h2::before{
  display: none;
  content: none;
}
.audit-section-custom .audit-title h2::after{
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -14px;
  width: 90px;
  height: 4px;
  border-radius: 10px;
  background: #fe4d29;
  margin-top: 10px;
}

.audit-section-custom .audit-subtitle{
  text-align: center;
  margin: 18px auto 22px auto;
  max-width: 760px;
  font-size: 16px;
  line-height: 1.7;
  color: #d76335;
}
.audit-section-custom .audit_slider{
  margin-top: -40px;
}
/* card */
.audit-card{
  padding: 0;
}
.audit-thumb-wrap{
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  border: none;
  box-shadow: 0 12px 30px rgba(11,31,58,0.08);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
  aspect-ratio: 16/10;
  height: auto;
  max-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.audit-thumb-wrap img{
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 18px;
}
/* shine sweep animation */
.audit-thumb-wrap::before{
  content: "";
  position: absolute;
  top: 0;
  left: -85%;
  width: 52%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.30) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-18deg);
  z-index: 2;
  transition: left 0.7s ease;
  pointer-events: none;
}
.audit-thumb-wrap:hover::before{
  left: 135%;
}
.audit-thumb-wrap:hover{
  transform: translateY(-6px);
  border-color: rgba(254,77,41,0.28);
  box-shadow: 0 20px 42px rgba(11,31,58,0.14);
}
.audit-thumb{
  width: 100%;
  height: 100%;
  object-fit: cover;      /* fills complete box */
  object-position: center;
  display: block;
  background: transparent;
  border-radius: 18px;
}
.audit_slider .item{
  padding: 6px;
}
.audit-thumb-wrap:hover .audit-thumb{
  transform: scale(1.03);
}
/* badge */
.audit-badge{
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(11,31,58,0.78);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* owl nav */
.audit-section-custom .owl-nav{
  position: absolute;
  top: -78px;
  right: 0;
  margin: 0 !important;
}

.audit-section-custom .owl-prev,
.audit-section-custom .owl-next{
  width: 52px;
  height: 52px;
  border-radius: 50% !important;
  border: 1px solid #e7ebf1 !important;
  background: #fff !important;
  color: #0b1f3a !important;
  font-size: 22px !important;
  margin-left: 10px !important;
  transition: all 0.25s ease;
}

.audit-section-custom .owl-prev:hover,
.audit-section-custom .owl-next:hover{
  background: #0b1f3a !important;
  border-color: #0b1f3a !important;
  color: #fff !important;
}

/* dots */
.audit-section-custom .owl-dots{
  margin-top: 18px;
  text-align: center;
}

.audit-section-custom .owl-dot span{
  width: 10px;
  height: 10px;
  margin: 5px;
  background: #cfd7e3;
}

.audit-section-custom .owl-dot.active span{
  background: #fe4d29;
}

/* tablet */
@media (max-width: 991px){
  .audit-section-custom{
    padding: 18px 0 14px !important;
  }

  .audit-section-custom .audit-title h2{
    font-size: 30px;
  }

  .audit-section-custom .audit-subtitle{
    font-size: 15px;
    margin: 16px auto 18px auto;
  }

  .audit-thumb{
    height: 255px;
  }

  .audit-section-custom .owl-nav{
    top: -68px;
  }

  .audit-section-custom .owl-prev,
  .audit-section-custom .owl-next{
    width: 46px;
    height: 46px;
    font-size: 20px !important;
  }
}

/* mobile */
@media (max-width: 767px){
  .audit-section-custom{
    padding: 16px 0 10px !important;
  }

  .audit-section-custom .audit-title{
    margin-bottom: 10px !important;
  }
  .audit-section-custom .audit-title h2{
    font-size: 28px;
  }
  .audit-section-custom .audit-title h2::after{
    width: 72px;
    height: 3px;
    bottom: -12px;
  }
  .audit-section-custom .audit-subtitle{
    font-size: 14px;
    margin: 14px auto 16px auto;
    padding: 0 12px;
  }
  .audit-thumb{
    width: 100%;
    height: 100% !important;
    max-height: 180px !important;
    object-fit: contain !important;
    border-radius: 14px !important;
  }
  .audit-thumb-wrap{
    aspect-ratio: auto !important;
    max-height: none !important;
    min-height: auto !important;
    border-radius: 14px !important;
    overflow: hidden;
  }
  .audit-badge{
    font-size: 11px;
    padding: 6px 10px;
  }
  .audit-section-custom .owl-nav{
    position: static;
    text-align: center;
    margin-top: 14px !important;
  }
  .audit-section-custom .owl-prev,
  .audit-section-custom .owl-next{
    width: 42px;
    height: 42px;
    margin: 0 6px !important;
  }
}