@charset "utf-8";
/* CSS Document */

.durafold-thresholds{
  padding: 100px 0;
  background: #f6f7f8;
}

.durafold-thresholds .section-head{
  max-width: 820px;
  margin-bottom: 34px;
}

.durafold-thresholds .section-label{
  display: inline-block;
  margin-bottom: 10px;
  color: var(--duration-blue);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
}

.durafold-thresholds .section-head h2{
  margin: 0 0 12px;
  font-size: 42px;
  line-height: 1.15;
  color: #123257;
}

.durafold-thresholds .section-head p{
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: #5f6b76;
  max-width: 760px;
}

.threshold-group{
  background: #fff;
  border: 1px solid #dde3e8;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
  padding: 26px;
  margin-top: 28px;
}

.threshold-group:first-of-type{
  margin-top: 0;
}

.threshold-group__head{
  margin-bottom: 20px;
}

.threshold-group__head h3{
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
  color: #123257;
}

.threshold-group__head p{
  margin: 0;
  color: #66727d;
  line-height: 1.6;
  font-size: 15px;
}

.threshold-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.threshold-card{
  background: #f9fafb;
  border: 1px solid #e6ebef;
  border-radius: 14px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.threshold-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0,0,0,.08);
}

.threshold-card__image{
  position: relative;
  overflow: hidden;
}

.threshold-card__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.threshold-card__body{
  padding: 14px 14px 16px;
}

.threshold-card__body h4{
  margin: 0 0 6px;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700;
  color: #123257;
}

.threshold-card__body p{
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: #6b7680;
}

.threshold-note{
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(0,99,166,.06);
  border: 1px solid rgba(0,99,166,.14);
  font-size: 13px;
  line-height: 1.6;
  color: #36516b;
}

.threshold-disclaimer{
  margin-top: 34px;
  padding: 18px 20px;
  border-left: 4px solid var(--duration-blue);
  background: #fff;
  border-radius: 12px;
  color: #66727d;
  line-height: 1.65;
  box-shadow: 0 8px 24px rgba(0,0,0,.05);
  font-size: 14px;
}

/* tablet */
@media (max-width: 980px){
  .durafold-thresholds{
    padding: 80px 0;
  }

  .durafold-thresholds .section-head h2{
    font-size: 34px;
  }

  .threshold-grid{
    gap: 18px;
  }
}

/* mobile */
@media (max-width: 640px){
  .threshold-group{
    padding: 18px;
    border-radius: 14px;
  }

  .threshold-grid{
    grid-template-columns: 1fr;
  }

  .durafold-thresholds .section-head h2{
    font-size: 28px;
  }
}