/* ==========================================
   INDUSTRIES SECTION
========================================== */

.industries-section {
  padding: 80px 0 100px;
  background: #fff;
}

/* 与整个网站保持一致的宽度 */
.industries-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


/* ==========================================
   SECTION TITLE
========================================== */

.industries-section .section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.industries-section .section-title h2 {

  font-size: 40px;
  font-weight: 700;
  color: #0A2463;
  line-height: 1.2;
  margin-bottom: 18px;

}

.industries-section .section-title p {

  font-size: 18px;
  color: #555;
  line-height: 1.8;

}


/* ==========================================
   GRID
========================================== */

.industries-grid {

  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 40px;

}


/* ==========================================
   CARD
========================================== */

.industry-card {

  background: #fff;

  border: 1px solid #e8edf3;

  border-radius: 14px;

  overflow: hidden;

  box-shadow: 0 6px 20px rgba(0, 0, 0, .05);

  transition:
    transform .35s ease,
    box-shadow .35s ease;

}


/* Hover */

.industry-card:hover {

  transform: translateY(-8px);

  box-shadow: 0 16px 36px rgba(0, 0, 0, .10);

}


/* ==========================================
   IMAGE
========================================== */

.industry-image {

  width: 100%;

  aspect-ratio: 16 / 9;

  object-fit: cover;

  display: block;

  transition: transform .6s ease;

}

/* 图片轻微放大 */

.industry-card:hover .industry-image {

  transform: scale(1.05);

}


/* ==========================================
   CONTENT
========================================== */

.industry-content {

  padding: 28px;

}

.industry-content h3 {

  margin: 0 0 16px;

  font-size: 28px;

  font-weight: 700;

  color: #0A2463;

  line-height: 1.3;

}

.industry-content p {

  margin: 0;

  color: #444;

  font-size: 17px;

  line-height: 1.8;

}


/* ==========================================
   LINK
========================================== */

.industry-link {

  display: inline-flex;

  align-items: center;

  gap: 6px;

  margin-top: 22px;

  color: #0A2463;

  font-size: 16px;

  font-weight: 600;

  text-decoration: none;

  transition: .3s;

}

.industry-link:hover {

  color: #1b5ebc;

}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width:992px) {

  .industries-grid {

    gap: 30px;

  }

  .industry-content {

    padding: 24px;

  }

  .industry-content h3 {

    font-size: 24px;

  }

}

@media (max-width:768px) {

  .industries-section {

    padding: 60px 0 80px;

  }

  .industries-section .section-title {

    margin-bottom: 40px;

  }

  .industries-section .section-title h2 {

    font-size: 32px;

  }

  .industries-section .section-title p {

    font-size: 16px;

  }

  .industries-grid {

    grid-template-columns: 1fr;

    gap: 24px;

  }

  .industry-content {

    padding: 22px;

  }

  .industry-content h3 {

    font-size: 22px;

  }

  .industry-content p {

    font-size: 16px;

  }

}