
main { flex: 1; max-width: 760px; margin: 0 auto; padding: 52px 32px; width: 100%; }
h1 {
  font-family: var(--serif); font-size: 30px; font-weight: 700;
  color: var(--text); letter-spacing: -0.6px; margin-bottom: 8px;
}
.page-sub { font-size: 13px; color: var(--muted); margin-bottom: 28px; }
h2 {
  font-size: 12px; font-weight: 700; color: var(--text);
  text-transform: uppercase; letter-spacing: 0.6px;
  margin: 36px 0 10px;
  padding-bottom: 6px; border-bottom: 1px solid var(--border);
}
h3 { font-size: 14px; font-weight: 700; color: var(--text2); margin: 20px 0 6px; }
p  { font-size: 13px; color: var(--muted); line-height: 1.75; margin-bottom: 10px; }
p strong { color: var(--text2); font-weight: 600; }
ul { font-size: 13px; color: var(--muted); line-height: 1.75; margin: 0 0 12px 20px; }
ul li { margin-bottom: 4px; }

/* External link style */
a.ext { color: var(--green); border-bottom: 1px solid var(--green-mid); text-decoration: none; }
a.ext:hover { border-bottom-color: var(--green); }

/* Age / alert badges */
.age-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--red-lt); border: 1px solid var(--red-mid);
  border-radius: var(--r-sm); padding: 4px 10px;
  font-size: 12px; font-weight: 700; color: var(--red);
  margin-bottom: 24px; letter-spacing: 0.3px;
}
.rg-alert {
  background: var(--amber-lt); border: 1px solid var(--amber-mid);
  border-left: 4px solid var(--amber);
  border-radius: var(--r-md); padding: 16px 20px; margin-bottom: 28px;
}
.rg-alert p { color: var(--amber); margin-bottom: 0; }
.rg-alert strong { color: var(--amber); }

/* Numbered tips */
.rg-tips { list-style: none; padding: 0; margin: 0 0 24px 0; }
.rg-tip {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 12px 0; border-bottom: 1px solid var(--border);
}
.rg-tip:last-child { border-bottom: none; }
.rg-tip-num {
  font-size: 11px; font-weight: 700; color: var(--green);
  background: var(--green-lt); border: 1px solid var(--green-mid);
  border-radius: 50%; min-width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.rg-tip-title { font-size: 13px; font-weight: 700; color: var(--text2); margin-bottom: 3px; }
.rg-tip-desc  { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* Warning signs */
.rg-signs { list-style: none; padding: 0; margin: 0 0 24px 0; }
.rg-sign {
  display: flex; gap: 10px; padding: 9px 0;
  border-bottom: 1px dotted var(--border);
  font-size: 13px; color: var(--muted); line-height: 1.6; align-items: flex-start;
}
.rg-sign:last-child { border-bottom: none; }
.rg-sign-icon { flex-shrink: 0; color: var(--amber); font-style: normal; margin-top: 1px; }

/* Regional cards (main page) */
.rg-region-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px; margin: 20px 0 32px;
}
.rg-region-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 20px 16px;
  text-decoration: none; display: block;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.rg-region-card:hover {
  border-color: var(--green-mid); transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06); text-decoration: none;
}
.rg-region-flag { font-size: 26px; margin-bottom: 10px; display: block; }
.rg-region-title { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 5px; }
.rg-region-desc  { font-size: 12px; color: var(--muted); line-height: 1.55; }
.rg-region-cta {
  font-size: 11px; font-weight: 700; color: var(--green);
  margin-top: 10px; display: block; letter-spacing: 0.2px;
}

/* FAQ */
.rg-faq-q { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.rg-faq-a { font-size: 13px; color: var(--muted); line-height: 1.75; margin-bottom: 28px; }

/* Resource cards (regional pages) */
.rg-resource {
  border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 16px 18px; margin-bottom: 12px;
  background: var(--surface);
}
.rg-resource-name { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.rg-resource-detail { font-size: 12px; color: var(--muted); line-height: 1.65; }
.rg-resource-detail a { color: var(--green); text-decoration: none; }
.rg-resource-detail a:hover { text-decoration: underline; }
.rg-phone {
  display: inline-block; margin-top: 5px;
  font-size: 13px; font-weight: 700; color: var(--text);
  background: var(--green-lt); border: 1px solid var(--green-mid);
  border-radius: var(--r-sm); padding: 2px 8px;
}

/* Country block (EU page) */
.rg-country {
  border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 18px 20px 12px; margin-bottom: 14px;
  background: var(--surface);
}
.rg-country-header {
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
  padding-bottom: 10px; border-bottom: 1px solid var(--border);
}
.rg-country-flag { font-size: 20px; }
.rg-country-name { font-size: 14px; font-weight: 700; color: var(--text); }

/* Breadcrumb */
.rg-breadcrumb {
  font-size: 12px; color: var(--muted); margin-bottom: 24px;
  display: flex; align-items: center; gap: 4px; flex-wrap: wrap;
}
.rg-breadcrumb a { color: var(--green); text-decoration: none; }
.rg-breadcrumb a:hover { text-decoration: underline; }
.rg-breadcrumb .sep { opacity: 0.4; }

/* "Also see" internal link block */
.rg-also {
  background: var(--surface); border: 1px solid var(--border);
  border-left: 3px solid var(--green); border-radius: var(--r-md);
  padding: 14px 18px; margin: 28px 0;
  font-size: 13px; color: var(--muted);
}
.rg-also strong { color: var(--text2); display: block; margin-bottom: 6px; font-size: 13px; }
.rg-also ul { margin: 0; list-style: none; padding: 0; }
.rg-also ul li { margin: 4px 0; }
.rg-also a { color: var(--green); text-decoration: none; }
.rg-also a:hover { text-decoration: underline; }

/* Final thought callout */
.rg-final {
  background: var(--green-lt); border: 1px solid var(--green-mid);
  border-radius: var(--r-md); padding: 20px 24px; margin-top: 36px;
}
.rg-final p { color: var(--text2); margin-bottom: 0; font-size: 14px; line-height: 1.75; }
.rg-final strong { color: var(--text); }

@media (max-width: 600px) {
  main { padding: 32px 16px; }
  .rg-region-grid { grid-template-columns: 1fr; }
}
