@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");

:root {
  /* Colour palette: 091c63 2c487f 566582 5e77bf */
  --color-primary: #2c487f;
  --color-bg-page: #eef0f6;
  --color-bg-surface: #f5f6fa;

  --color-text: #000000;
  --color-muted: #566582;
  --color-border: #e5e7ef;
  --color-branch-btn-background: #f5f6fa;

  --max-width: 1100px;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --header-height: 96px;

  --hover-bg-invert: #161a2b;
  --hover-text-invert: #e6e7ee;
  --service-icon-color: var(--color-primary);
  --service-icon-hover: var(--hover-text-invert);

  --shadow-elevated: 0 6px 20px rgba(29, 33, 68, 0.15);
}

:root[data-theme="dark"] {
  --color-primary: #5e77bf;
  --color-bg-page: #0f1117;
  --color-bg-surface: #161a2b;

  --color-text: #e6e7ee;
  --color-muted: #566582;
  --color-border: #2a2d3d;

  --color-branch-btn-background: #e6e7ee;

  --hover-bg-invert: #ffffff;
  --hover-text-invert: #1a1a1a;
  --service-icon-color: #5e77bf;
  --service-icon-hover: var(--hover-text-invert);
}

/* =========================================================
   RESET & BASE
   ========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-text);
  background-color: var(--color-bg-page);
  line-height: 1.65;
}

h1,
h2,
h3 {
  letter-spacing: -0.02em;
  line-height: 1.25;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.1rem;
}

.byline-muted {
  color: var(--color-muted);
  font-size: 0.85rem;
}

p {
  margin-top: 0.75rem;
}

img {
  max-width: 500px;
  width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Prevent sticky header overlap on scroll */
section,
.hero,
.content {
  scroll-margin-top: var(--header-height);
}

/* So when you click on Services it scrolls down a bit more */
#services {
  scroll-margin-top: calc(var(--header-height) - 4.5rem);
}

/* =========================================================
   LAYOUT
   ========================================================= */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.content:first-of-type {
  padding-top: 2rem;
}

@media (max-width: 767px) {
  .content:first-of-type {
    padding-top: 1.5rem;
  }
}

.container.narrow {
  max-width: 700px;
}

.content {
  padding-top: 4rem;
  padding-bottom: 0;
}

@media (max-width: 767px) {
  .content {
    padding: 1.5rem 0;
  }
}

.content > .container {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/* =========================================================
   HEADER & NAVIGATION
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-bg-surface);
  border-bottom: 1px solid var(--color-border);
}

.trust-bar {
  background: var(--color-primary);
  color: var(--color-bg-surface);
  max-height: 64px;
  overflow: hidden;
  transition:
    max-height 0.25s ease,
    opacity 0.2s ease,
    border-color 0.2s ease;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: uppercase;
}

.trust-bar-separator {
  opacity: 0.65;
}

.site-header.shrink {
  box-shadow: var(--shadow-elevated);
}

.site-header.shrink .trust-bar {
  max-height: 0;
  opacity: 0;
}

.site-header .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 1rem 0;
  transition: padding 0.2s ease;
}

.theme-toggle {
  width: 32px;
  height: 32px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background-color: var(--color-bg-surface);
  border: 1px solid var(--color-primary);
  border-radius: 50%;

  padding: 0;
}

.theme-toggle .material-symbols-outlined {
  font-size: 20px;
  line-height: 1;
  color: var(--color-primary);
}

.theme-toggle-menu {
  display: none;
}

.site-header.shrink .nav {
  padding: 0.5rem 0;
}

.logo {
  height: 68px;
  transition: height 0.2s ease;
}

.site-header.shrink .logo {
  height: 56px;
}

.menu-toggle {
  font-size: 1.5rem;
  background: none;
  border: none;
  color: var(--color-primary);
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

:root[data-theme="dark"] .menu-toggle {
  color: var(--color-text);
}

/* This was used for when you tab and select different elements. Do not think I need it. 

.menu-toggle:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
} */

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nav-links a {
  font-weight: 500;
  color: var(--color-primary);
}

.nav-links .cta {
  font-weight: 600;
}

@media (min-width: 768px) {
  .nav-close {
    display: none;
  }
}

@media (max-width: 767px) {
  .trust-bar {
    max-height: 88px;
  }

  .trust-bar-inner {
    flex-direction: column;
    gap: 0.15rem;
    padding-top: 0.6rem;
    padding-bottom: 0.8rem;
    font-size: 0.72rem;
    letter-spacing: 0.02em;
  }

  .trust-bar-separator {
    display: none;
  }

  .site-header .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .menu-toggle {
    order: 3;
  }

  .logo-link {
    order: 2;
    margin: 0 auto;
  }

  .theme-toggle-header {
    order: 1;
    display: inline-flex;
    visibility: hidden;
  }

  .theme-toggle-menu {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
  }

  .theme-toggle-menu .material-symbols-outlined {
    font-size: 1.2rem;
    color: currentColor;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;

    width: 72%;
    max-width: 260px;

    background: var(--color-bg-surface);
    padding: 3.5rem 1.5rem 1.5rem;

    display: flex;
    flex-direction: column;
    gap: 1rem;

    transform: translateX(100%);
    transition: transform 0.25s ease;
    z-index: 1000;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-close {
    position: absolute;
    top: 1rem;
    right: 1rem;

    background: none;
    border: none;
    color: var(--color-primary);
    font-size: 1.5rem;
    cursor: pointer;
  }

  :root[data-theme="dark"] .nav-close {
    color: var(--color-text);
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 900;
  }

  body.nav-open {
    overflow: hidden;
  }
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  background-color: var(--color-bg-surface);
  padding-top: 1rem;
  padding-bottom: 1rem;
}

@media (max-width: 767px) {
  .hero {
    padding-top: 2rem;
  }
}

.hero h1 {
  color: var(--color-primary);
}

.hero p {
  max-width: 600px;
  font-size: 1.05rem;
}

/* =========================================================
   CALL TO ACTION BOOK A TEST NOW
   ========================================================= */

.hero-cta-layout {
  gap: 2.5rem;
}

.hero-cta-card {
  background: var(--color-bg-page);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  justify-self: center;
  width: fit-content;
  max-width: 100%;
}

.hero-cta-card h2 {
  margin-top: 0.25rem;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
}

.hero-cta-icon {
  display: inline-flex;
  margin-top: 0.25rem;
  font-size: 2.25rem;
  color: var(--color-primary);
}

.hero-cta-card p {
  max-width: none;
}

.hero-cta-card .byline-muted {
  color: var(--color-text);
}

@media (max-width: 767px) {
  .hero-cta-layout {
    gap: 0.3rem;
  }

  .hero-cta-layout .button.primary {
    margin-bottom: 0;
  }

  .hero-cta-card {
    margin-top: 0;
  }
}

/* =========================================================
   BUTTONS
   ========================================================= */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  border: none;
  border-radius: 999px;
  background: none;
  font-weight: 500;
  font-size: 0.95rem;
  margin-top: 1rem;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
  cursor: pointer;
}

.button.primary {
  background-color: var(--color-primary);
  color: var(--color-bg-surface);
  margin-bottom: 1.5rem;
}

@media (max-width: 767px) {
  .hero .button.primary {
    margin-left: auto;
    margin-right: auto;
    display: block;
    text-align: center;
  }
}

@media (hover: hover) {
  .button:hover {
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(29, 33, 68, 0.15);
  }
}

/* =========================================================
   CONTENT SECTIONS
   ========================================================= */

.content .container {
  background: var(--color-bg-surface);
  border-radius: var(--radius-lg);
}

.two-col {
  display: grid;
  gap: 2rem;
}

/* =========================================================
   CONTACT ACTIONS
   ========================================================= */

.actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.modal-intro {
  margin-bottom: 1rem;
  text-align: center;
}

.branch-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.branch-btn {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: var(--color-branch-btn-background);
  font-size: 0.85rem;
  cursor: pointer;
}

.branch-btn.active {
  background: var(--color-primary);
  color: var(--color-bg-surface);
  border-color: var(--color-primary);
}

.branch-details {
  border-top: 1px solid var(--color-border);
  padding-top: 1.5rem;
}

.branch-info {
  display: none;
  text-align: center;
}

.branch-info.active {
  display: block;
}

.branch-info p {
  margin: 0;
  line-height: 1.25;
}

.branch-info p + p {
  margin-top: 0.12rem;
}

.branch-info .footer-sub-location {
  margin: 0 0 0.12rem;
}

.branch-info .address {
  margin-top: 0.65rem;
}

.footer-branch .address {
  margin-top: 0.2rem;
  font-size: 0.8rem;
}

.address-link {
  text-decoration: none;
  cursor: pointer;
}

.address-link:hover {
  text-decoration: underline;
}

/* =========================================================
   FOOTER
   ========================================================= */

/* .site-footer {
  border-top: 1px solid var(--color-border);
  background-color: var(--color-bg-surface);
}

.site-footer p {
  font-size: 0.85rem;
  color: var(--color-muted);
  text-align: center;
} */

.footer-contact {
  margin-top: 5rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 767px) {
  .footer-contact {
    margin-top: 1rem;
  }
}

/* Row of branches */
.footer-branches {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-branch {
  display: inline-flex;
  flex-direction: column;
  gap: 0.08rem;
  min-width: 180px;
  font-size: 0.8rem;
}

/* Branch title */
.footer-branch strong {
  display: block;
  color: var(--color-primary);
  font-size: 1rem;
  font-weight: 600;
}

.footer-branch a:hover {
  text-decoration: underline;
}

/* Sub-location (e.g. Pretoria) */
.footer-sub-location {
  margin: -0.1rem 0 0;
  font-size: 0.9rem;
}

.footer-branch a {
  line-height: 1.2;
}

/* Address block */
.address {
  display: block;
  margin-top: 0.9rem;
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.05;
}

.address-line {
  display: block;
  line-height: 1.02;
}

/* Footer copyright */
.footer-copy {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--color-muted);
  text-align: center;
}

/* Full-width footer */
.site-footer .container {
  max-width: none;
}

/* =========================================================
   DESKTOP ENHANCEMENTS
   ========================================================= */

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    margin-top: 0;
  }

  .two-col {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  h1 {
    font-size: 2.6rem;
  }
}

/* =========================================================
   SERVICES BUTTONS AND POPUPS
   ========================================================= */

.services-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--color-bg-surface);
  color: var(--color-text);
  /* atodo maybe delete border if not exist */
  border: var(--color-text);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  cursor: pointer;

  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

@media (hover: none) {
  .service-card {
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }

  .service-card:hover,
  .service-card:active {
    transform: none;
    background-color: var(--color-bg-surface);
    color: var(--color-text);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }

  .service-card:hover .icon,
  .service-card:active .icon {
    color: var(--service-icon-color);
  }
}

.service-card .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;

  color: var(--service-icon-color);

  font-variation-settings:
    "wght" 600,
    "FILL" 0;

  transition: color 0.2s ease;
  font-size: 4rem;
}

.service-card h3 {
  color: inherit;
}

.service-card p {
  margin: 0;
  color: inherit;
  font-size: 0.95rem;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.modal.open {
  display: flex;
}

.modal-content {
  background: var(--color-bg-surface);
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 90%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  line-height: 1.7;
  overflow: hidden;
}

@media (max-width: 767px) {
  .modal-content {
    font-size: 1.05rem;
    -webkit-overflow-scrolling: touch;
  }
}

.modal-header {
  position: sticky;
  top: 0;
  z-index: 2;
  margin: 0;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding-top: 1rem;
  padding-left: 1.25rem;
  padding-bottom: 0.5rem;
  background: var(--color-bg-surface);
  border-bottom: 1px solid var(--color-border);
  padding-right: 1rem;
  font-size: 1.2rem;
  line-height: 1.3;
}

.modal-header h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.3;
}

.modal-body {
  padding: 1rem 1.5rem 1.5rem;
  overflow-y: auto;
}

@media (max-width: 767px) {
  .modal-body {
    padding: 1.25rem;
    -webkit-overflow-scrolling: touch;
  }
}

body.modal-open {
  overflow: hidden;
}

.modal-close {
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
}

:root[data-theme="dark"] .modal-close {
  color: var(--color-text);
}

/* =========================================================
   FAQ
   ========================================================= */

.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 1.25rem 0;
}

.faq h3 {
  margin-top: 2rem;
  color: var(--color-primary);
}

.faq p {
  margin-top: 0.5rem;
  color: var(--color-muted);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--color-primary);
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  font-size: 1.25rem;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-content {
  overflow: hidden;
  /* display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease; */
}

.faq-content > * {
  overflow: hidden;
}

.faq-item p {
  margin-top: 0.75rem;
  color: var(--color-muted);
  max-width: 700px;
}

/* =========================================================
   CONTACT INFO
   ========================================================= */
.branch {
  padding: 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg-surface);
}

.branch h3 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--color-primary);
}

.branch p {
  margin: 0;
}

.branch .branch-meta {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin: 0;
}

/* =========================================================
   NEWSLETTER BUTTONS
   ========================================================= */

.button.secondary {
  background-color: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  cursor: pointer;
}

.actions-inline {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: nowrap;
}

.actions-inline .button {
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
  white-space: nowrap;
  flex: 1;
  min-width: 0;
}

@media (max-width: 767px) {
  .actions-inline .button {
    padding: 0.55rem 1rem;
    font-size: 0.8rem;
  }
}

/* =========================================================
   NEWSLETTER LINKS
   ========================================================= */

.newsletter-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.newsletter-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
}

.newsletter-list a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-primary);
  text-decoration: none;
}

.newsletter-list a:hover {
  text-decoration: underline;
}

.newsletter-meta {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.8rem;
  color: var(--color-muted);
}

.process-list {
  margin: 2rem 0 0;
  padding-left: 1.35rem;
}

.process-list li + li {
  margin-top: 0.9rem;
}

.newsletter-meta a {
  font-size: inherit;
}

/* =========================================================
   Logos
   ========================================================= */

.affiliate-logo {
  display: block;
  max-height: 300px;
  max-width: 100%;
  width: auto;
}

.client-logo-row {
  flex-wrap: wrap;
  overflow-x: visible;
  justify-content: center;
  gap: 1.25rem;
  padding-bottom: 0.25rem;
}

.client-logo-row > div {
  flex: 0 1 auto;
}

.client-logo {
  max-height: 60px;
  width: auto;
}

.two-col > a {
  display: flex;
  justify-content: center;
  width: 100%;
  justify-self: center;
}

.two-col img {
  justify-self: center;
}

@media (max-width: 767px) {
  .affiliate-logo {
    max-height: 180px;
  }

  .client-logo {
    max-height: 48px;
  }
}

.not-found-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.not-found-icon {
  font-size: clamp(7rem, 18vw, 14rem);
  color: var(--color-primary);
  opacity: 0.18;
  line-height: 1;
}

/* =========================================================
   SUBSCRIBE POP UP
   ========================================================= */

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.newsletter-form label {
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
  font-weight: 500;
}

.newsletter-form input {
  margin-top: 0.25rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  font-size: 0.9rem;
}

/* =========================================================
   EXAMINERS PAGE
   ========================================================= */

.examiner-alt-three-hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .examiner-alt-three-hero-grid {
    grid-template-columns: 1fr auto;
  }
}

.examiner-directory-grid {
  margin-top: 2rem;
}

.examiner-service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-height: 220px;
  padding: 2rem;
  text-align: center;
}

.examiner-service-card h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.25;
}

.examiner-service-region {
  margin: 0;
  font-size: 0.78rem;
  color: var(--color-muted);
}

.examiner-service-count {
  margin-top: 0.25rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.examiner-summary-card {
  cursor: default;
  background:
    linear-gradient(145deg, rgba(59, 69, 138, 0.14), rgba(201, 162, 77, 0.12)),
    var(--color-bg-surface);
}

.examiner-summary-card h3 {
  font-size: 2rem;
  color: var(--color-primary);
}

@media (hover: hover) and (pointer: fine) {
  .service-card:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    background-color: var(--hover-bg-invert);
    color: var(--hover-text-invert);
  }

  .service-card:hover .icon {
    color: var(--service-icon-hover);
  }

  .examiner-summary-card:hover {
    transform: none;
    box-shadow: none;
    background:
      linear-gradient(
        145deg,
        rgba(59, 69, 138, 0.14),
        rgba(201, 162, 77, 0.12)
      ),
      var(--color-bg-surface);
    color: var(--color-text);
  }
}

.examiner-modal-contact {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.examiner-modal-contact-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0.5rem;
  border-top: none;
  border-bottom: 1px solid var(--color-border);
}

.examiner-modal-contact-icon {
  font-size: 3rem;
  line-height: 1;
  color: var(--color-primary);
}

.examiner-modal-contact-personal {
  min-width: 0;
}

.examiner-modal-contact h4 {
  margin: 0 0 0.25rem;
  color: var(--color-primary);
}

.examiner-modal-contact p {
  margin: 0;
}

.examiner-modal-contact-personal p {
  font-size: 0.875rem;
}

.examiner-modal-contact-personal p + p {
  margin-top: 0.08rem;
}

.examiner-modal-contact-personal p:last-child {
  margin-bottom: 0.75rem;
}

.examiner-modal-contact .branch-meta {
  margin-bottom: 0.35rem;
  font-size: 0.8375rem;
  color: var(--color-muted);
}

.examiner-modal-contact > p:not(.branch-meta) {
  font-size: 0.875rem;
}

.examiner-modal-contact > p:not(.branch-meta) + p:not(.branch-meta) {
  margin-top: 0.2rem;
}
