/* banner img */
.banner-bg {
  background: url('/ver2/images/trial/banner-1.webp') center center / cover no-repeat;
}

.trial-bg {
    border: 1px solid #ff88a2
}

/* 免費試讀體驗 */
.experience-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  gap: 40px;
}
.experience-item img {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
}
.experience-item h3 {
  font-size: 18px;
  color: #f26a6d;
  margin-bottom: 8px;
}
.experience-item p {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

.experience-wrapper {
  padding: 0px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
/* 試讀提醒 */
.trial-reminder {
  background: rgba(255,136,162,0.2);
  /* border: 2px solid #ffb3c0; */
  border-radius: 40px;
  padding: 30px 60px;
  margin-top: 40px;
}

.reminder-title {
  font-size: 20px;
  font-weight: bold;
  color: #444;
  text-align: center;
  margin-bottom: 20px;
}

.reminder-list {
  list-style: decimal;
  padding-left: 20px;
  margin-bottom: 30px;
  font-size: 15px;
  color: #333;
  line-height: 1.8;
}

.reminder-list li{
  text-align: left;
}

.reminder-btn-wrap {
  text-align: center;
}

.reminder-btn {
  background-color: #ff88a2;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
}

.reminder-btn:hover {
  background-color: #f26a6d;
}

/* 設備需求 */
.device-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 20px;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  margin-top: 20px;
}

.device-item img {
  width: 70px;
  height: auto;
  margin-bottom: 10px;
}

.device-item h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 4px;
  color: #333;
}

.device-item p {
  font-size: 14px;
  line-height: 1.4;
  color: #333;
}

.device-note {
  font-size: 13px;
  color: #333;
  text-align: left;
  margin-top: 30px;
  background: #f2f2f2;
  padding: 15px 20px;
  border-radius: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}



/* rwd */
@media screen and (max-width: 768px) {
  /* 免費試讀體驗 */
  .experience-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* 試讀提醒 */
  .trial-reminder {
    padding: 30px 10px;
  }

  /* 設備需求 */
  .device-grid {
    grid-template-columns: repeat(2, 1fr);
  }  
}