/* text information for the reading guide */


.reading-guide {
  max-width: 950px;
  margin: 40px auto;
  padding: 32px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
}

.guide-header {
  margin-bottom: 28px;
  text-align: center;
}

.guide-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #374151;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.guide-header h2 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.15;
  color: #111827;
}

.guide-header p {
  max-width: 720px;
  margin: 0 auto;
  color: #4b5563;
  font-size: 1.05rem;
  line-height: 1.8;
}

.guide-content {
  color: #374151;
  font-size: 1rem;
  line-height: 1.85;
}

.guide-content h3 {
  margin-top: 28px;
  margin-bottom: 10px;
  color: #111827;
  font-size: 1.25rem;
}

.guide-content p {
  margin-bottom: 16px;
}

.guide-highlight {
  margin: 24px 0;
  padding: 18px 20px;
  border-left: 5px solid #111827;
  border-radius: 14px;
  background: #f9fafb;
  color: #1f2937;
  font-size: 1rem;
}

.guide-note {
  margin-top: 30px;
  padding: 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f9fafb, #eef2ff);
  border: 1px solid #e5e7eb;
}

.guide-note p:last-child {
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .reading-guide {
    margin: 24px 12px;
    padding: 22px;
  }

  .guide-content {
    font-size: 0.98rem;
  }
}