/* 伴讀特色 */
.course-section {
  /* background: #f4faff; */
  padding: 80px 20px;
}

.reading-wrapper {
  background: url('/ver2/images/dot-grid.jpg') repeat;
  border: 3px solid #ffb8c6;
  border-radius: 30px;
  padding: 00px 20px 60px;
  max-width: 1200px;
  margin: 0px auto 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.reading-section {
  background: url('../images/dot-grid.jpg') repeat;
}

.reading-header {
  text-align: center;
  padding: 20px 20px 30px;
  background: url('/ver2/images/dot-grid.jpg') repeat;
}

.reading-header img {
  height: 80px;
  margin-bottom: 10px;
}

.reading-header h2 {
  font-size: 28px;
  font-weight: bold;
  color: #1c95b4;
  margin: 0;
}

.reading-title {
  font-size: 22px;
  color: #3061A0;
  font-weight: bold;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff;
  padding: 12px 30px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  margin: 0 auto 40px;
}

.reading-title img {
  width: 30px;
  height: auto;
}

.reading-content {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.reading-image {
  flex: 1 1 40%;
  text-align: center;
}
.reading-image img {
  max-width: 100%;
  border-radius: 20px;
}

.reading-text {
  flex: 1 1 55%;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}
.reading-text strong {
  color: #EB801B;
}

@media (max-width: 768px) {
  .reading-content {
    flex-direction: column;
  }
  .reading-title {
    font-size: 18px;
    padding: 10px 20px;
    margin-bottom: 30px;
  }
  .reading-title img {
    width: 24px;
  }
}