.bible-list {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

.bible-section {
  margin-bottom: 40px;
}

.section-title {
  text-align: left;
  color: #1e5799;
  border-bottom: 2px solid #1e5799;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.chapter-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
}

.chapter-item {
  padding: 15px;
  border-radius: 8px;
  background: #f9f9f9;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
}

.chapter-item:hover {
  background: #eef5ff;
  transform: translateY(-3px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
}

.chapter-number {
  background: #1e5799;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-weight: bold;
  font-size: 14px;
}

.chapter-name {
  font-weight: 500;
}
/* 上一节、下一节导航样式 */
.prev-next {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
  padding: 20px 0;
}

.prev-next-item {
  display: inline-block;
  padding: 12px 24px;
  background-color: #1e5799;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-weight: 500;
  text-align: center;
  flex: 1;
}

.prev-next-item:hover {
  background-color: #164275;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.prev-next-item:active {
  transform: translateY(0);
}

.prev-next-item:first-child {
  margin-right: auto;
}

.prev-next-item:last-child {
  margin-left: auto;
}
.audio-player-container {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  text-align: center;
}

.audio-player {
  width: 100%;
  margin-top: 20px;
}

.content-area {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

.content-area h2 {
  color: #1e5799;
  border-bottom: 2px solid #1e5799;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.content-text {
  line-height: 1.8;
  font-size: 16px;
}

.content-text p {
  margin-bottom: 15px;
}

.content-text p::first-letter {
  color: #1e5799;
  font-size: 2em; /* 调整为原始大小的两倍 */
  font-weight: bold; /* 可选：加粗 */
}

.content-text verse {
  display: block;
  margin: 10px 0;
  padding: 5px 10px;
  border-left: 3px solid #1e5799;
  background-color: #f9f9f9;
}

.content-text verse .verse-number {
  font-weight: bold;
  color: #1e5799;
  margin-right: 5px;
}
/* 响应式设计 */
@media (max-width: 768px) {
  .chapter-list {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
  .prev-next {
    flex-direction: column;
    gap: 15px;
  }

  .prev-next-item {
    width: 100%;
  }
}
