/* =========================================================
   EMARK GLOBAL - MAIN STYLESHEET
   Brand Blue:  #083E7F
   Brand Green: #00A86B

   Performance choices:
   - No external font files
   - No CSS framework
   - No icon library
   - Minimal animations
   ========================================================= */

:root {
  --blue: #083E7F;
  --blue-dark: #062f60;
  --blue-900: #061f3f;
  --green: #00A86B;
  --green-dark: #008c59;
  --ink: #182236;
  --text: #596372;
  --muted: #7b8491;
  --line: #e5ebf2;
  --soft: #f5f8fc;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(8, 62, 127, 0.09);
  --radius: 22px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: var(--ink);
  font-weight: 750;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.55rem, 5vw, 4.9rem);
  max-width: 14ch;
}

h2 {
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  max-width: 16ch;
}

h3 {
  font-size: 1.28rem;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 100px 0;
}

.section--soft {
  background: var(--soft);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(229, 235, 242, 0.9);
  backdrop-filter: blur(14px);
}

.topbar {
  color: rgba(255, 255, 255, 0.86);
  background: var(--blue-900);
  font-size: 0.82rem;
}

.topbar__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar p {
  margin: 0;
}

.topbar a {
  color: var(--white);
  font-weight: 700;
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand__mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--blue), var(--green));
  border-radius: 12px;
  font-size: 1.25rem;
  font-weight: 850;
  box-shadow: 0 8px 22px rgba(8, 62, 127, 0.16);
}

.brand__text {
  display: grid;
  line-height: 1;
}

.brand__text strong {
  color: var(--blue);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

.brand__text small {
  margin-top: 5px;
  color: var(--green-dark);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #344056;
  font-size: 0.94rem;
  font-weight: 650;
}

.primary-nav > a:not(.btn) {
  position: relative;
  padding: 28px 0;
}

.primary-nav > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 19px;
  height: 2px;
  background: var(--green);
  transition: right 180ms ease;
}

.primary-nav > a:not(.btn):hover::after,
.primary-nav > a[aria-current="page"]::after {
  right: 0;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  border-radius: 10px;
}

/* Reusable */
.eyebrow {
  margin-bottom: 14px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #8ff0cc;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  color: var(--white);
  background: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 12px;
  font-weight: 750;
  line-height: 1.2;
  box-shadow: 0 10px 24px rgba(8, 62, 127, 0.14);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.btn:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(8, 62, 127, 0.2);
}

.btn--small {
  min-height: 42px;
  padding: 9px 16px;
}

.btn--ghost {
  color: var(--blue);
  background: transparent;
  box-shadow: none;
}

.btn--ghost:hover {
  color: var(--white);
  background: var(--blue);
}

.btn--light {
  color: var(--blue-900);
  background: var(--white);
  border-color: var(--white);
}

.btn--light:hover {
  color: var(--blue-900);
  background: #eef7ff;
}

.text-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin-top: 8px;
  color: var(--blue);
  font-weight: 800;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 96px;
  background:
    radial-gradient(circle at 86% 18%, rgba(0,168,107,0.10), transparent 26%),
    radial-gradient(circle at 18% 16%, rgba(8,62,127,0.08), transparent 28%),
    linear-gradient(180deg, #fbfdff 0%, #ffffff 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  gap: 72px;
  align-items: center;
}

.hero__lead {
  max-width: 650px;
  margin-top: 26px;
  color: var(--text);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  color: #536074;
  font-size: 0.9rem;
  font-weight: 650;
}

.hero__points li::before {
  content: "✓";
  margin-right: 7px;
  color: var(--green);
  font-weight: 900;
}

.hero__visual {
  min-height: 475px;
  position: relative;
  display: grid;
  place-items: center;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}

.hero-orb--one {
  width: 330px;
  height: 330px;
  background: rgba(8, 62, 127, 0.06);
}

.hero-orb--two {
  width: 190px;
  height: 190px;
  right: 5%;
  bottom: 6%;
  background: rgba(0, 168, 107, 0.08);
}

.visual-card {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(8, 62, 127, 0.09);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.visual-card--main {
  width: min(100%, 410px);
  min-height: 285px;
  padding: 32px;
  border-radius: 28px;
  transform: rotate(-2deg);
}

.visual-card__label,
.visual-card--floating span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-card--main strong {
  display: block;
  max-width: 10ch;
  margin-top: 12px;
  color: var(--blue-900);
  font-size: 2rem;
  line-height: 1.1;
}

.chart {
  height: 105px;
  display: flex;
  align-items: end;
  gap: 12px;
  margin-top: 26px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.chart span {
  flex: 1;
  height: var(--h);
  min-height: 18px;
  background: linear-gradient(180deg, var(--green), var(--blue));
  border-radius: 7px 7px 3px 3px;
  opacity: 0.92;
}

.visual-card--floating {
  position: absolute;
  min-width: 158px;
  padding: 18px 20px;
  border-radius: 18px;
}

.visual-card--floating strong {
  display: block;
  margin-top: 4px;
  color: var(--blue);
  font-size: 1rem;
}

.visual-card--tax {
  top: 8%;
  right: 0;
  transform: rotate(4deg);
}

.visual-card--invoice {
  left: 0;
  bottom: 11%;
  transform: rotate(3deg);
}

.visual-card--invoice strong {
  color: var(--green-dark);
}

/* Trust strip */
.trust-strip {
  border-bottom: 1px solid var(--line);
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-strip__grid > div {
  padding: 26px 28px;
  border-right: 1px solid var(--line);
}

.trust-strip__grid > div:first-child {
  border-left: 1px solid var(--line);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--blue);
  font-size: 0.98rem;
}

.trust-strip span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.82rem;
}

/* About */
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: start;
}

.split > div:last-child {
  max-width: 670px;
  color: var(--text);
  font-size: 1.08rem;
}

/* Section Heading */
.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 44px;
}

.section-heading > p {
  max-width: 550px;
  color: var(--text);
}

.section-heading--compact {
  grid-template-columns: 1fr;
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 245px;
  position: relative;
  padding: 30px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #e9eef5;
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(18, 44, 74, 0.035);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  right: -45px;
  bottom: -45px;
  background: rgba(8, 62, 127, 0.035);
  border-radius: 50%;
  transition: transform 180ms ease, background 180ms ease;
}

.service-card:hover {
  border-color: rgba(8, 62, 127, 0.16);
  box-shadow: 0 18px 40px rgba(18, 44, 74, 0.08);
  transform: translateY(-4px);
}

.service-card:hover::after {
  background: rgba(0, 168, 107, 0.07);
  transform: scale(1.2);
}

.service-card__number {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.service-card h3 {
  max-width: 18ch;
  margin-bottom: 13px;
}

.service-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: var(--text);
  font-size: 0.94rem;
}

.service-card--featured {
  color: var(--white);
  background: linear-gradient(145deg, var(--blue), #0d539c);
  border-color: transparent;
}

.service-card--featured h3,
.service-card--featured p {
  color: var(--white);
}

.service-card--featured p {
  color: rgba(255, 255, 255, 0.78);
}

.service-card--featured .service-card__number {
  color: #91f2ce;
}

.service-card__tag {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 5px 9px;
  color: #053f2d;
  background: #9ff3d3;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* E-invoicing */
.einvoicing {
  color: var(--white);
  background:
    radial-gradient(circle at 12% 45%, rgba(0,168,107,0.2), transparent 28%),
    linear-gradient(125deg, var(--blue-900), var(--blue));
}

.einvoicing__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  align-items: center;
}

.einvoicing h2 {
  color: var(--white);
  max-width: 18ch;
}

.einvoicing p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.einvoicing__visual {
  min-height: 340px;
  display: grid;
  place-items: center;
}

.invoice-sheet {
  width: min(100%, 300px);
  min-height: 330px;
  position: relative;
  padding: 34px;
  background: var(--white);
  border-radius: 24px;
  transform: rotate(-5deg);
  box-shadow: 0 30px 70px rgba(0,0,0,0.22);
}

.invoice-sheet__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 58px;
}

.invoice-sheet__top span:first-child {
  width: 74px;
  height: 14px;
  background: var(--blue);
  border-radius: 6px;
}

.invoice-sheet__top span:last-child {
  width: 35px;
  height: 35px;
  background: rgba(0,168,107,0.12);
  border-radius: 9px;
}

.invoice-line {
  width: 58%;
  height: 9px;
  margin: 17px 0;
  background: #dce5ee;
  border-radius: 6px;
}

.invoice-line--wide {
  width: 100%;
}

.invoice-total {
  width: 52%;
  height: 12px;
  margin-top: 40px;
  margin-left: auto;
  background: var(--blue);
  border-radius: 7px;
}

.invoice-check {
  width: 52px;
  height: 52px;
  position: absolute;
  right: -16px;
  bottom: 32px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border: 6px solid var(--white);
  border-radius: 50%;
  font-weight: 900;
}

/* Why EMARK */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.feature-grid article {
  padding: 26px 24px;
  border-top: 3px solid var(--blue);
  background: var(--soft);
  border-radius: 0 0 16px 16px;
}

.feature-grid span {
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.feature-grid h3 {
  margin: 14px 0 10px;
  font-size: 1.1rem;
}

.feature-grid p {
  margin: 0;
  color: var(--text);
  font-size: 0.92rem;
}

/* FAQ */
.faq {
  border-top: 1px solid var(--line);
}

.faq__grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
  align-items: start;
}

.faq__grid > div:first-child > p:last-child {
  max-width: 460px;
  margin-top: 22px;
  color: var(--text);
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  position: relative;
  padding: 22px 42px 22px 0;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  font-weight: 750;
}

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

.accordion summary::after {
  content: "+";
  position: absolute;
  top: 18px;
  right: 0;
  color: var(--green-dark);
  font-size: 1.45rem;
  font-weight: 400;
}

.accordion details[open] summary::after {
  content: "−";
}

.accordion details p {
  padding: 0 36px 22px 0;
  color: var(--text);
}

/* Contact */
.contact-section {
  padding: 90px 0;
  color: var(--white);
  background: var(--blue);
}

.contact-section__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.contact-section h2 {
  color: var(--white);
}

.contact-section__grid > div > p:last-child {
  max-width: 480px;
  margin-top: 22px;
  color: rgba(255,255,255,0.76);
}

.contact-form {
  padding: 28px;
  color: var(--ink);
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 24px 65px rgba(0,0,0,0.15);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: #39445a;
  font-size: 0.82rem;
  font-weight: 750;
}

.field input,
.field textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfcfe;
  border: 1px solid #dfe6ee;
  border-radius: 10px;
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(8,62,127,0.1);
}

.field textarea {
  resize: vertical;
}

.hp-field {
  position: absolute;
  left: -9999px;
}

.form-note {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.form-note code {
  font-size: 0.74rem;
}

/* Footer */
.site-footer {
  padding: 68px 0 24px;
  color: #aeb9c8;
  background: #061a34;
}

.site-footer .brand__text strong {
  color: var(--white);
}

.site-footer .brand__text small {
  color: #89eac5;
}

.site-footer p {
  max-width: 320px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 0.75fr 1fr;
  gap: 54px;
}

.footer-heading {
  max-width: none;
  margin-bottom: 18px;
  color: var(--white);
  font-size: 0.92rem;
  letter-spacing: 0;
}

.footer-grid > div:not(:first-child) a {
  display: block;
  margin: 9px 0;
  color: #b8c3d0;
  font-size: 0.9rem;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-grid > div:first-child > p {
  margin-top: 18px;
  font-size: 0.9rem;
}

.footer-grid > div:last-child p {
  margin: 8px 0;
  font-size: 0.9rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
}

.footer-bottom p {
  margin: 0;
}

/* Focus */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(0,168,107,0.42);
  outline-offset: 3px;
}

/* Responsive */
@media (max-width: 1000px) {
  .hero__grid,
  .einvoicing__grid,
  .contact-section__grid {
    grid-template-columns: 1fr;
  }

  .hero__content {
    max-width: 760px;
  }

  .hero__visual {
    min-height: 390px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .topbar {
    display: none;
  }

  .nav-wrap {
    min-height: 70px;
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: 70px;
    left: 20px;
    right: 20px;
    display: none;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: grid;
  }

  .primary-nav > a:not(.btn) {
    padding: 11px 12px;
    border-radius: 8px;
  }

  .primary-nav > a:not(.btn)::after {
    display: none;
  }

  .primary-nav > a:not(.btn):hover {
    background: var(--soft);
  }

  .split,
  .section-heading,
  .faq__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .trust-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip__grid > div {
    border-bottom: 1px solid var(--line);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 76px 0;
  }

  .hero {
    padding: 64px 0 72px;
  }

  .hero__grid {
    gap: 34px;
  }

  .hero__visual {
    min-height: 340px;
  }

  .visual-card--main {
    min-height: 250px;
    padding: 26px;
  }

  .visual-card--tax {
    top: 3%;
    right: -3%;
  }

  .visual-card--invoice {
    left: -2%;
    bottom: 4%;
  }

  .hero__actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .trust-strip__grid,
  .service-grid,
  .feature-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip__grid > div,
  .trust-strip__grid > div:first-child {
    border-left: 1px solid var(--line);
  }

  .service-card {
    min-height: auto;
  }

  .einvoicing__grid {
    gap: 40px;
  }

  .invoice-sheet {
    min-height: 300px;
  }

  .contact-section {
    padding: 70px 0;
  }

  .contact-form {
    padding: 22px;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* =========================================================
   RELATED INSIGHT
   ========================================================= */

.emark-related-insight {
  width: min(100%, 1080px);

  margin:
    38px auto
    0;

  display: flex;

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

  gap: 38px;

  padding:
    27px
    30px;

  background:
    linear-gradient(
      135deg,
      #F7FAFC,
      #F3F8F6
    );

  border:
    1px solid #E2E9EF;

  border-radius: 15px;
}


.emark-related-insight__content {
  max-width: 720px;
}


.emark-related-insight__content > span {
  display: block;

  margin-bottom: 8px;

  color: #00A86B;

  font-size: 0.56rem;
  font-weight: 850;

  letter-spacing: 0.10em;
}


.emark-related-insight h2,
.emark-related-insight h3 {
  margin: 0;

  color: #172238;

  font-size:
    clamp(
      1.05rem,
      1.8vw,
      1.35rem
    );

  line-height: 1.4;

  letter-spacing: -0.015em;
}


.emark-related-insight p {
  max-width: 680px;

  margin:
    9px
    0
    0;

  color: #5F6B7A;

  font-size: 0.77rem;

  line-height: 1.65;
}


.emark-related-insight > a {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 9px;

  flex: 0 0 auto;

  min-height: 44px;

  padding:
    0
    16px;

  color: #FFFFFF;

  background: #083E7F;

  border-radius: 9px;

  text-decoration: none;

  font-size: 0.73rem;
  font-weight: 800;

  transition:
    transform 180ms ease,
    background 180ms ease;
}


@media (hover: hover) and (pointer: fine) {

  .emark-related-insight > a:hover {
    transform: translateY(-2px);

    background: #06366E;
  }

}


@media (max-width: 700px) {

  .emark-related-insight {
    flex-direction: column;

    align-items: flex-start;

    gap: 20px;

    padding:
      24px
      22px;
  }


  .emark-related-insight > a {
    width: 100%;
  }

}

/* =========================================================
   RELATED INSIGHT - DESKTOP WIDTH REFINEMENT
   ========================================================= */

.emark-related-insight__content {
  flex: 1 1 auto;

  min-width: 0;
  max-width: none;
}


.emark-related-insight
.emark-related-insight__content h2,

.emark-related-insight
.emark-related-insight__content h3 {
  width: 100%;
  max-width: 760px;

  margin: 0;

  color: #172238;

  font-size:
    clamp(
      1.2rem,
      1.55vw,
      1.55rem
    );

  line-height: 1.3;

  letter-spacing: -0.02em;

  font-weight: 800;
}


.emark-related-insight
.emark-related-insight__content p {
  width: 100%;
  max-width: 780px;

  margin:
    11px
    0
    0;

  color: #5F6B7A;

  font-size: 0.8rem;

  line-height: 1.65;
}


.emark-related-insight > a {
  margin-left: auto;
}


/* Mobile */

@media (max-width: 700px) {

  .emark-related-insight
  .emark-related-insight__content h2,

  .emark-related-insight
  .emark-related-insight__content h3 {
    max-width: none;

    font-size: 1.18rem;
  }


  .emark-related-insight > a {
    margin-left: 0;
  }

}