/* =============================
   教育大數據分析計畫 - 三重點卡片competition.php追加樣式
============================= */

.program-feature-section {
  background:
    radial-gradient(circle at right top, rgba(166, 195, 145, .18), transparent 35%),
    linear-gradient(180deg, #F7FBFC, #ffffff);
}

.feature-card {
  height: 100%;
  background: #fff;
  border-radius: 28px;
  padding: 38px 32px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.feature-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, #5D98B4, #A6C391);
}



/*---------------------*/


.feature-card2 {
  height: 100%;
  background: #fff;
  border-radius: 28px;
  padding: 38px 32px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
  position: relative;
  overflow: hidden;
}

.feature-card2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 8px;
  /*background: linear-gradient(90deg, #5D98B4, #A6C391);*/
  background: linear-gradient(90deg, #b4795d, #e16565);
}

.feature-card2 h3 {
  color: #1F3F4D;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.45;
  margin-bottom: 18px;
}

/*---------------------*/


.feature-number {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5D98B4, #A6C391);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-card h3 {
  color: #1F3F4D;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.45;
  margin-bottom: 18px;
}

.feature-card p {
  color: #37474F;
  font-size: 1.02rem;
  line-height: 1.9;
  margin-bottom: 24px;
}

.program-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.program-tags span {
  padding: 8px 14px;
  border-radius: 50px;
  background: #F0F8F7;
  color: #1F3F4D;
  font-weight: 600;
  font-size: .9rem;
}

@media (max-width: 991px) {
  .feature-card {
    padding: 32px 26px;
  }
}