/* ==================== ABOUT SECTION THREE ==================== */
.box-about-3 {
  display: flex;
  overflow: hidden;
}

.box-about-3 .num {
  width: 100%;
  font-size: 138px;
  line-height: 108px;
  font-weight: 700;
  margin-bottom: 15px;
  color: rgba(6, 83, 159, 0.1);
}

.box-about-3 .title {
  width: 100%;
  margin-bottom: 10px;
  font-size: 26px;
  font-weight: 700;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.box-about-3 .summary {
  width: 100%;
  line-height: 1.5;
  margin-bottom: 10px;
}

.box-about-3 .content-img img {
  width: 100%;
  height: auto;
}

/* List Policy 2 */
.box-about-3 .list-policy2 {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px 24px;
  padding-left: 0;
}

.box-about-3 .list-policy2 span {
  width: 100%;
  margin: 0;
  position: relative;
  transition: padding-left 0.3s ease, color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}

.box-about-3 .list-policy2 span:hover {
  padding-left: 10px;
  color: var(--primary-color);
}

.box-about-3 .list-policy2 .list-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: static;
}

/* Responsive - iPad */
@media (min-width: 768px) and (max-width: 991px) {
  .box-about-3 .content-img {
    text-align: center;
    margin-top: 30px;
  }

  .box-about-3 .content-img .img {
    max-width: 70%;
    margin: 0 auto;
  }

  .box-about-3 .content-img img {
    max-width: 100%;
  }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .box-about-3 .num {
    font-size: 80px;
    line-height: 60px;
    margin-bottom: 10px;
  }

  .box-about-3 .title {
    font-size: 22px;
  }

  .box-about-3 .list-policy2 {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}
