/* Consulate checklist pages */
.breadcrumb { padding: 16px 0; font-size: 0.82rem; color: var(--text-muted); }
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--green-700); }
.breadcrumb span { margin: 0 6px; }
.warn-box { background: #fff8e6; border: 1px solid var(--gold-200); border-left: 4px solid var(--gold-600); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 14px 18px; margin: 20px 0; font-size: 0.88rem; color: #7a5a10; line-height: 1.7; }
.consulate-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
.checklist { list-style: none; counter-reset: chk; margin: 0; padding: 0; }
.checklist li { counter-increment: chk; position: relative; padding: 14px 16px 14px 52px; border-bottom: 1px solid var(--green-100); font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; }
.checklist li:last-child { border-bottom: none; }
.checklist li::before { content: counter(chk); position: absolute; left: 12px; top: 14px; width: 26px; height: 26px; border-radius: 50%; background: var(--green-800); color: var(--ivory); font-weight: 700; font-size: 0.75rem; display: flex; align-items: center; justify-content: center; }
.consulate-card { background: #fff; border: 1px solid var(--green-100); border-radius: var(--radius-lg); padding: 24px; }
.consulate-meta { margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--green-100); font-size: 0.82rem; color: var(--text-mid); line-height: 1.7; }
.consulate-meta strong { color: var(--green-800); }
.faq-item { background: #fff; border: 1px solid var(--green-100); border-radius: var(--radius-md); padding: 18px; margin-bottom: 12px; }
.faq-item h3 { font-size: 0.95rem; color: var(--green-900); margin-bottom: 6px; }
.faq-item p { font-size: 0.87rem; color: var(--text-mid); line-height: 1.7; margin: 0; }
.consulate-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.consulate-tile { display: block; background: #fff; border: 1px solid var(--green-100); border-radius: var(--radius-md); padding: 20px; text-decoration: none; transition: box-shadow 0.15s, transform 0.15s; }
.consulate-tile:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.consulate-tile h3 { font-family: var(--font-display); font-size: 1.05rem; color: var(--green-900); margin-bottom: 4px; }
.consulate-tile .jur { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }
@media (max-width: 860px) {
  .consulate-layout { grid-template-columns: 1fr; }
  .consulate-grid { grid-template-columns: 1fr; }
}
