/* lesson-lv6.css — Level 6: Real Korean */

/* =====================================================
   6-0 CULTURE WARM-UP
   ===================================================== */
.culture-card {
  background: #fff;
  border: 1.5px solid #f3c6dd;
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 14px;
}
.culture-card-title { font-size: 15px; font-weight: 700; color: #993556; margin-bottom: 8px; }
.culture-card-text { font-size: 13px; color: #444; line-height: 1.7; margin: 0; }

.culture-phrase {
  background: #fdf2f8;
  border: 1px solid #f3c6dd;
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 12px;
}
.cp-kr { font-size: 17px; font-weight: 700; color: #1a1a2e; display: flex; align-items: center; gap: 8px; }
.cp-rom { font-size: 12px; color: #b08; margin: 2px 0 8px; }
.cp-literal { font-size: 12px; color: #999; font-style: italic; margin-bottom: 6px; }
.cp-real { font-size: 13px; color: #444; line-height: 1.6; }

.culture-reflect {
  background: #fff8ed;
  border: 1.5px solid #fcd9a4;
  border-radius: 12px;
  padding: 16px 18px;
  margin: 18px 0;
}
.culture-reflect-title { font-size: 14px; font-weight: 700; color: #92400e; margin-bottom: 6px; }
.culture-reflect p { font-size: 13px; color: #555; line-height: 1.6; margin: 0; }

/* =====================================================
   STAGE LABELS (Grammar → Reading → Quiz → Speaking → Writing)
   ===================================================== */
.stage-label {
  display: inline-block;
  background: #993556;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 14px;
  border-radius: 20px;
  margin: 28px 0 14px;
}

/* =====================================================
   6-1 WRITING PRACTICE
   ===================================================== */
.writing-prompt {
  background: #fff;
  border: 1.5px solid #e4eaf3;
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 14px;
}
.wp-question { font-size: 14px; color: #1a1a2e; line-height: 1.6; margin-bottom: 12px; }
.wp-reveal-btn {
  background: #ede9fe;
  border: 1.5px solid #ddd6fe;
  color: #5b21b6;
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}
.wp-reveal-btn:hover { background: #ddd6fe; }
.wp-sample {
  display: none;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
  font-size: 14px;
  font-weight: 600;
  color: #042C53;
}
.wp-sample.show { display: block; }
.wp-sample-eng { display: block; font-size: 12px; font-weight: 400; color: #888; margin-top: 4px; }

/* =====================================================
   PHRASE CARDS — for fixed expressions / discourse markers
   that don't conjugate (used in 6-2, 6-3, 6-4)
   ===================================================== */
.phrase-card {
  background: #fff;
  border: 1.5px solid #e4eaf3;
  border-radius: 14px;
  margin-bottom: 16px;
  overflow: hidden;
}
.phrase-card-header {
  background: #993556;
  color: #fff;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
}
.phrase-card-header .pc-badge {
  background: rgba(255,255,255,0.2);
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 14px;
}
.phrase-card-body { padding: 16px 18px; }
.phrase-card-desc { font-size: 13px; color: #555; line-height: 1.6; margin: 0 0 12px; }
.phrase-ex-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid #f4f7fb;
  font-size: 14px;
}
.phrase-ex-row:last-child { border-bottom: none; }
.phrase-ex-kr { font-weight: 600; color: #185FA5; flex: 1; }
.phrase-ex-eng { font-size: 12px; color: #888; flex: 1; }
