/* ── COMMON ── */
.container {
  max-width: 1240px;
  margin: 0 auto;
}
.slabel {
  font-family: var(--fm);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 500;
}
.slabel::before {
  content: "";
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--teal);
}
.stitle {
  font-family: var(--fd);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.stitle em {
  font-style: italic;
  color: var(--teal);
}
.sbody {
  font-size: 1.05rem;
  color: rgba(245, 244, 240, 0.68);
  max-width: 62ch;
  line-height: 1.75;
  font-weight: 300;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.f1 {
  animation: fadeUp 0.7s ease both;
}
.f2 {
  animation: fadeUp 0.7s ease 0.12s both;
}
.f3 {
  animation: fadeUp 0.7s ease 0.24s both;
}
.f4 {
  animation: fadeUp 0.7s ease 0.36s both;
}
.f5 {
  animation: fadeUp 0.7s ease 0.48s both;
}

/* ── HERO ── */
#contact-hero {
  padding: 9rem 4vw 5rem;
  background: radial-gradient(
      ellipse 60% 55% at 85% 40%,
      rgba(37, 99, 235, 0.09) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 35% at 5% 80%,
      rgba(37, 99, 235, 0.06) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #0a0a0a 0%, #0d1117 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(37, 99, 235, 0.035) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(37, 99, 235, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(
    ellipse 90% 100% at 90% 0%,
    black 20%,
    transparent 80%
  );
  pointer-events: none;
}
#contact-hero .container {
  position: relative;
  z-index: 1;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.hero-title {
  font-family: var(--fd);
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  color: var(--teal);
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(245, 244, 240, 0.62);
  line-height: 1.8;
  font-weight: 300;
  max-width: 50ch;
  margin-bottom: 2.5rem;
}
.hero-meta-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hm-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.hm-icon {
  width: 2.2rem;
  height: 2.2rem;
  flex-shrink: 0;
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fm);
  font-size: 0.65rem;
  color: var(--teal);
}
.hm-body {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.hm-label {
  font-family: var(--fm);
  font-size: 0.56rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.hm-value {
  font-size: 0.9rem;
  color: rgba(245, 244, 240, 0.8);
}
.hm-value a {
  color: var(--teal);
  text-decoration: none;
}
.hm-value a:hover {
  text-decoration: underline;
}

/* Right panel - quick-route cards */
.route-cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.route-card {
  background: var(--slate);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  text-decoration: none;
  color: inherit;
}
.route-card:hover {
  border-color: rgba(37, 99, 235, 0.4);
  background: rgba(37, 99, 235, 0.06);
  transform: translateX(4px);
}
.route-card.active-route {
  border-color: var(--teal);
  background: rgba(37, 99, 235, 0.08);
}
.rc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot-gov {
  background: #22c55e;
}
.dot-hosp {
  background: #2563eb;
}
.dot-inv {
  background: #8b5cf6;
}
.dot-press {
  background: #d4882a;
}
.dot-tech {
  background: #e05252;
}
.dot-dist {
  background: #06b6d4;
}
.rc-info {
  flex: 1;
}
.rc-title {
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.2rem;
}
.rc-desc {
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.4;
}
.rc-arrow {
  font-family: var(--fm);
  font-size: 0.7rem;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.route-card:hover .rc-arrow {
  transform: translateX(4px);
}

/* ── MAIN CONTACT SECTION ── */
#contact-main {
  padding: 9rem 4vw 7rem;
  background: var(--ink);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  max-width: 1240px;
  margin: 0 auto;
}
@media (max-width: 1060px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ── MAIN FORM ── */
/* .contact-form-wrap {
} */
.form-header {
  margin-bottom: 2.5rem;
}
.form-header h2 {
  font-family: var(--fd);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.form-header h2 em {
  font-style: italic;
  color: var(--teal);
}
.form-header p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 58ch;
}

/* Audience selector (visual tabs) */
.audience-selector {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-bottom: 2rem;
}
@media (max-width: 680px) {
  .audience-selector {
    grid-template-columns: repeat(2, 1fr);
  }
}
.aud-btn {
  background: var(--slate);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 0.85rem 0.6rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
}
.aud-btn:hover {
  border-color: rgba(37, 99, 235, 0.3);
  background: rgba(37, 99, 235, 0.05);
}
.aud-btn.selected {
  border-color: var(--teal);
  background: rgba(37, 99, 235, 0.1);
}
.aud-btn .ab-icon {
  font-size: 1.5rem;
  line-height: 1;
  color: #ccdcff;
}
.aud-btn .ab-label {
  font-family: var(--fm);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.3;
}
.aud-btn.selected .ab-label {
  color: var(--teal);
}

/* Context hint */
.context-hint {
  background: rgba(37, 99, 235, 0.07);
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 3px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.75rem;
  display: none;
}
.context-hint.visible {
  display: block;
}
.ch-label {
  font-family: var(--fm);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.35rem;
}
.ch-text {
  font-size: 0.82rem;
  color: rgba(245, 244, 240, 0.6);
  line-height: 1.6;
}

/* Form fields */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1.5rem;
}
@media (max-width: 560px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-field.full {
  grid-column: 1 / -1;
}
.form-field label {
  font-family: var(--fm);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: var(--fb);
  font-size: 0.9rem;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: rgba(37, 99, 235, 0.05);
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(107, 114, 128, 0.7);
}
.form-field select option {
  background: var(--slate);
  color: var(--white);
}
.form-field textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.6;
}
.form-field .field-note {
  font-family: var(--fm);
  font-size: 0.56rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

/* Privacy row */
.privacy-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1.5rem 0;
}
.privacy-row input[type="checkbox"] {
  margin-top: 0.15rem;
  accent-color: var(--teal);
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.privacy-row label {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.55;
  cursor: pointer;
}
.privacy-row a {
  color: var(--teal);
  text-decoration: none;
}

/* Submit */
.form-submit-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--teal);
  color: var(--black);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.02em;
  font-family: var(--fb);
}
.submit-btn:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}
.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.submit-note {
  font-family: var(--fm);
  font-size: 0.6rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  line-height: 1.6;
}

/* ── SUCCESS STATE ── */
.form-success {
  display: none;
  text-align: center;
  padding: 4rem 2rem;
  background: var(--slate);
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: 4px;
}
.form-success.visible {
  display: block;
}
.success-icon {
  width: 4rem;
  height: 4rem;
  border: 2px solid var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--teal);
  margin: 0 auto 1.5rem;
}
.form-success h3 {
  font-family: var(--fd);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}
.form-success p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 48ch;
  margin: 0 auto;
}

/* ── SIDEBAR ── */
/* .contact-sidebar {
} */
.sb-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}
.sb-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.sb-label {
  font-family: var(--fm);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
}
.sb-label::before {
  content: "";
  display: block;
  width: 1.2rem;
  height: 1px;
  background: var(--teal);
}

/* Direct contacts */
.direct-contact {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.direct-contact:last-child {
  border-bottom: none;
}
.dc-icon {
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  background: var(--slate);
}
.dc-body {
  flex: 1;
}
.dc-label {
  font-family: var(--fm);
  font-size: 0.56rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}
.dc-value {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(245, 244, 240, 0.8);
}
.dc-value a {
  color: var(--teal);
  text-decoration: none;
}
.dc-value a:hover {
  text-decoration: underline;
}
.dc-note {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

/* Response SLA */
.sla-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.sla-item {
  background: var(--slate);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 1rem;
}
.sla-tier {
  font-family: var(--fm);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.3rem;
}
.sla-time {
  font-family: var(--fd);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.sla-desc {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.4;
}

/* Office card */
.office-card {
  background: var(--slate);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.office-map-placeholder {
  height: 160px;
  background: linear-gradient(135deg, #0d1e38 0%, #0a1220 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.office-map-placeholder svg {
  opacity: 0.18;
}
.omp-label {
  position: absolute;
  bottom: 0.75rem;
  left: 1rem;
  font-family: var(--fm);
  font-size: 0.56rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgb(255 255 255);
}
.office-details {
  padding: 1.25rem;
}
.od-name {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.65rem;
}
.od-row {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-bottom: 0.6rem;
}
.od-row:last-child {
  margin-bottom: 0;
}
.od-key {
  font-family: var(--fm);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.od-val {
  font-size: 0.82rem;
  color: rgba(245, 244, 240, 0.65);
}

/* ── ENQUIRY TYPE BANDS ── */
#enquiry-types {
  padding: 6rem 4vw;
  background: var(--black);
  border-top: 1px solid var(--border);
}
.et-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 3.5rem;
}
@media (max-width: 900px) {
  .et-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .et-grid {
    grid-template-columns: 1fr;
  }
}
.et-card {
  background: var(--ink);
  padding: 2.5rem;
  transition: background 0.2s;
  cursor: pointer;
}
.et-card:hover {
  background: rgba(37, 99, 235, 0.06);
}
.et-emoji {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  display: block;
  line-height: 1;
}
.et-tag {
  font-family: var(--fm);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.18rem 0.55rem;
  border-radius: 2px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 1rem;
}
.et-title {
  font-family: var(--fd);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}
.et-title em {
  font-style: italic;
  color: var(--teal);
}
.et-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.et-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.et-list li {
  font-family: var(--fm);
  font-size: 0.62rem;
  color: rgba(245, 244, 240, 0.55);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.et-list li::before {
  content: "-";
  color: var(--teal);
  flex-shrink: 0;
}
.et-action {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
  font-family: var(--fm);
  font-size: 0.65rem;
  color: var(--teal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: gap 0.2s, color 0.2s;
  font-weight: 500;
}
.et-action:hover {
  gap: 0.8rem;
  color: var(--white);
}

/* Tags for enquiry types */
.et-tag-gov {
  background: rgba(34, 197, 94, 0.1);
  color: var(--green);
  border: 1px solid rgba(34, 197, 94, 0.25);
}
.et-tag-hosp {
  background: rgba(37, 99, 235, 0.12);
  color: var(--teal);
  border: 1px solid rgba(37, 99, 235, 0.3);
}
.et-tag-inv {
  background: rgba(139, 92, 246, 0.12);
  color: var(--purple);
  border: 1px solid rgba(139, 92, 246, 0.3);
}
.et-tag-press {
  background: rgba(212, 136, 42, 0.12);
  color: var(--amber);
  border: 1px solid rgba(212, 136, 42, 0.3);
}
.et-tag-tech {
  background: rgba(224, 82, 82, 0.1);
  color: var(--red);
  border: 1px solid rgba(224, 82, 82, 0.25);
}
.et-tag-dist {
  background: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
  border: 1px solid rgba(6, 182, 212, 0.25);
}

/* ── DOCUMENT ACCESS ── */
#documents {
  padding: 6rem 4vw;
  background: var(--ink);
  border-top: 1px solid var(--border);
}
.doc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
@media (max-width: 860px) {
  .doc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .doc-grid {
    grid-template-columns: 1fr;
  }
}
.doc-card {
  background: var(--slate);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color 0.2s, background 0.2s;
}
.doc-card:hover {
  border-color: rgba(37, 99, 235, 0.3);
  background: rgba(37, 99, 235, 0.04);
}
.doc-tier-badge {
  font-family: var(--fm);
  font-size: 0.56rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  display: inline-block;
  width: fit-content;
  font-weight: 600;
}
.tier-1 {
  background: rgba(34, 197, 94, 0.1);
  color: var(--green);
  border: 1px solid rgba(34, 197, 94, 0.25);
}
.tier-2 {
  background: rgba(212, 136, 42, 0.1);
  color: var(--amber);
  border: 1px solid rgba(212, 136, 42, 0.25);
}
.tier-3 {
  background: rgba(224, 82, 82, 0.1);
  color: var(--red);
  border: 1px solid rgba(224, 82, 82, 0.25);
}
.doc-icon {
  color: var(--teal);
  font-size: 1.5rem;
  line-height: 1;
}
.doc-title {
  font-family: var(--fd);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.25;
}
.doc-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}
.doc-action {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--fm);
  font-size: 0.62rem;
  color: var(--teal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: gap 0.2s, color 0.2s;
  font-weight: 500;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--fm);
}
.doc-action:hover {
  gap: 0.8rem;
  color: var(--white);
}

/* ── FAQ ── */
#faq {
  padding: 6rem 4vw;
  background: var(--black);
  border-top: 1px solid var(--border);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 3rem;
}
@media (max-width: 760px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}
.faq-item {
  background: var(--ink);
  padding: 2rem;
  transition: background 0.2s;
}
.faq-item:hover {
  background: rgba(37, 99, 235, 0.04);
}
.faq-q {
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 0.65rem;
  line-height: 1.35;
  color: var(--white);
}
.faq-a {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
}
.faq-a a {
  color: var(--teal);
  text-decoration: none;
}
.faq-a a:hover {
  text-decoration: underline;
}

/* ── SUCCESS TOAST ── */
#toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 500;
  background: var(--slate);
  border: 1px solid var(--teal);
  border-radius: 4px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transform: translateY(120%);
  transition: transform 0.35s ease;
  max-width: 340px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}
#toast.show {
  transform: translateY(0);
}
.toast-icon {
  color: var(--teal);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.toast-body {
  flex: 1;
}
.toast-title {
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.2rem;
}
.toast-msg {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.45;
}
