diff --git a/templates/medication_guide_v2.html b/templates/medication_guide_v2.html
index 8db098f..56e38a4 100644
--- a/templates/medication_guide_v2.html
+++ b/templates/medication_guide_v2.html
@@ -350,8 +350,14 @@
{% endif %}
-
📅 투약
+
📅 투약 주기
{{ drug.dosing.interval }}
+ {% if drug.dosing.interval_reason %}
+
{{ drug.dosing.interval_reason }}
+ {% endif %}
+ {% if drug.dosing.minimum_age or drug.dosing.minimum_weight %}
+
최소 연령: {{ drug.dosing.minimum_age }} / 최소 체중: {{ drug.dosing.minimum_weight }}
+ {% endif %}
{% if drug.weight_products %}
{% for wp in drug.weight_products %}
{{ wp.size }}({{ wp.weight_range }})
{% endfor %}
@@ -361,7 +367,7 @@
{% elif drug.category == 'nsaid' %}
-
⚖️ 용량 ({{ drug.dosage.standard }})
+
⚖️ 체중별 용량 ({{ drug.dosage.standard }})
{% for row in drug.dosage_table[:6] %}
@@ -373,7 +379,7 @@
{% if drug.absolute_contraindications %}
-
🚫 절대 금기
+
⭕ 절대 금기
{% for c in drug.absolute_contraindications %}
- ❌ {{ c.item }} — {{ c.reason }}
@@ -382,6 +388,14 @@
{% endif %}
+ {% if drug.washout_period %}
+
+ ⏱️ 약물 전환 시 휴약기
+ • 다른 NSAIDs로: {{ drug.washout_period.to_other_nsaid }}
+ • 스테로이드로: {{ drug.washout_period.to_steroid }}
+
+ {% endif %}
+
{% elif drug.category == 'antibiotic' %}
@@ -402,11 +416,33 @@
-
-
급성구토: {{ drug.dosage.acute_vomiting.dose }} ({{ drug.dosage.acute_vomiting.duration }})
-
멀미예방: {{ drug.dosage.motion_sickness.dose }} ({{ drug.dosage.motion_sickness.timing }})
+
+
+
+
🤮 급성구토
+
{{ drug.dosage.acute_vomiting.dose }}
+
({{ drug.dosage.acute_vomiting.duration }})
+
+
+
🚗 멀미예방
+
{{ drug.dosage.motion_sickness.dose }}
+
({{ drug.dosage.motion_sickness.timing }})
+
+ {% if drug.available_strengths %}
+
+ 제품 규격: {{ drug.available_strengths | join(', ') }}
+
+ {% endif %}
+
+ {% if drug.clinical_notes %}
+
+ 💡 임상 참고
+ {% for note in drug.clinical_notes %}• {{ note }}
{% endfor %}
+
+ {% endif %}
+
{% else %}