/* =========================
   ADDITIVE PACKAGE CATEGORY HERO
========================= */
/* transmission PAGE */
.transmission{
  background:#0b1f3a;
  color:#fff;
  
}
.ap-category-hero{
  position: relative;
  background: #0b1f3a;
  padding: 310px 0 60px;
  overflow: hidden;
}

.ap-category-hero__soft{
  position: absolute;
  top: 100px;
  left: 54px;
  width: 74%;
  height: 430px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left top;
  opacity: .03;
  pointer-events: none;
  z-index: 0;
}

.ap-category-hero__mesh{
  position: absolute;
  top: 0;
  right: 0;
  width: 34%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right top;
  opacity: .75;
  pointer-events: none;
  z-index: 0;
}

.ap-category-hero__inner{
  width: min(1320px, calc(100% - 120px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.ap-category-hero__top{
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 70px;
  align-items: start;
  margin-bottom: 34px;
}

.ap-category-hero__eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.95);
  margin-bottom: 16px;
}

.ap-category-hero__dot{
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #FEC233;
  flex: 0 0 auto;
}

.ap-category-hero__title{
  margin: 0 0 28px 0;
  font-size: 60px;
  line-height: .95;
  font-weight: 800;
  letter-spacing: -.8px;
  color: #fff;
}

.ap-category-hero__stat{
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.ap-category-hero__statIcon{
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #2b457a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  isolation: isolate;
  z-index: 1;
  transition: background .28s ease, transform .28s ease;
}

.ap-category-hero__statIcon:hover{
  background: #FEC233;
  transform: translateY(-1px);
  color: #fff;
}

.ap-category-hero__statIcon img{
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}
.ap-category-hero__statText{
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ap-category-hero__statText strong{
  font-size: 18px;
  font-weight: 700;
  color: #FEC233;
  line-height: 1.2;
}

.ap-category-hero__statText span{
  font-size: 16px;
  color: #fff;
  line-height: 1.3;
}

.ap-category-hero__right{
  padding-top: 138px;
}

.ap-category-hero__lead{
  margin: 0;
  max-width: 760px;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255,255,255,.96);
}

.ap-category-hero__media{
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}

.ap-category-hero__media img{
  width: 100%;
  height: 485px;
  object-fit: cover;
  display: block;
}

/* responsive */
@media (max-width: 1100px){
  .ap-category-hero__inner{
    width: min(1320px, calc(100% - 60px));
  }

  .ap-category-hero__top{
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ap-category-hero__right{
    padding-top: 0;
  }
}

@media (max-width: 768px){
  .ap-category-hero{
    padding: 120px 0 50px;
  }

  .ap-category-hero__inner{
    width: min(1320px, calc(100% - 40px));
  }

  .ap-category-hero__title{
    font-size: 46px;
  }

  .ap-category-hero__lead{
    font-size: 16px;
    line-height: 1.55;
  }

  .ap-category-hero__media img{
    height: 280px;
  }

  .ap-category-hero__stat{
    align-items: flex-start;
  }

  .ap-category-hero__statText strong{
    font-size: 17px;
  }

  .ap-category-hero__statText span{
    font-size: 15px;
  }
}

/* =========================
   transmission PRODUCTS GRID
========================= */
.ap-products{
  position: relative;
  background: #0b1f3a;
  padding: 44px 0 120px;
  overflow: hidden;
}

.ap-products__inner{
  width: min(1320px, calc(100% - 120px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.ap-products__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.ap-products__card{
  position: relative;
  display: block;
  text-decoration: none;
  color: #fff;
  background: #1d2f52;
  border-radius: 26px;
  overflow: visible;
  min-height: 360px;
  transition: transform .25s ease, background .25s ease;
}

.ap-products__card:hover{
  transform: translateY(-4px);
}

.ap-products__media{
  height: 150px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 22px 20px 0;
}

.ap-products__media img{
  max-width: 72%;
  max-height: 118px;
  object-fit: contain;
  display: block;
}

.ap-products__body{
  padding: 18px 30px 42px;
}

.ap-products__code{
  margin: 0 0 8px 0;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
  color: #fff;
}

.ap-products__name{
  font-size: 15px;
  line-height: 1.45;
  font-weight: 600;
  color: #fff;
}

.ap-products__tags{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.ap-products__tag{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  background: #162c57;
  color: #dfe8ff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.ap-products__arrow{
  position: absolute;
  right: -12px;
  bottom: -12px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #162c57;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 26px;
  line-height: 1;
  transition: transform .25s ease, background .25s ease;
}

.ap-products__card:hover .ap-products__arrow{
  background: #c89b2f;
  color: #fff;
  transform: scale(1.06);
}

/* responsive */
@media (max-width: 1100px){
  .ap-products__inner{
    width: min(1320px, calc(100% - 60px));
  }

  .ap-products__grid{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px){
  .ap-products{
    padding: 36px 0 80px;
  }

  .ap-products__inner{
    width: min(1320px, calc(100% - 40px));
  }

  .ap-products__grid{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .ap-products__card{
    min-height: 300px;
  }

  .ap-products__body{
    padding: 18px 22px 40px;
  }

  .ap-products__code{
    font-size: 17px;
  }

  .ap-products__name{
    font-size: 14px;
  }

  .ap-products__arrow{
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}