/* FinderLib modern layer */
:root {
  --fl-ink: #101827;
  --fl-blue: #173b63;
  --fl-red: #e8414f;
  --fl-amber: #f5a524;
  --fl-teal: #13b8a6;
  --fl-green: #63c77a;
  --fl-soft: #f6f7fb;
  --fl-line: #d9e1ea;
  --fl-text: #263244;
  --fl-muted: #6d7787;
  --fl-white: #ffffff;
  --fl-shadow: 0 18px 45px rgba(16, 24, 39, .16);
}

body.finderlib-boost {
  margin: 0;
  color: var(--fl-text);
  background: var(--fl-white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

body.finderlib-boost a {
  color: #14548f;
}

body.finderlib-boost img {
  max-width: 100%;
  height: auto;
}

.fl-container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.fl-top {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,.96);
  color: var(--fl-ink);
  border-bottom: 1px solid var(--fl-line);
  box-shadow: 0 8px 26px rgba(16,24,39,.08);
  backdrop-filter: blur(12px);
}

.fl-top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
}

.fl-logo {
  display: inline-flex;
  align-items: center;
  padding: 6px 9px;
  border-radius: 8px;
  background: var(--fl-ink);
  box-shadow: 0 8px 18px rgba(16,24,39,.16);
  line-height: 0;
}

.fl-logo img {
  display: block;
  width: 174px;
  max-width: 42vw;
  height: auto;
}

.fl-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.fl-nav a {
  color: var(--fl-blue) !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 11px;
  border: 1px solid transparent;
  border-radius: 8px;
}

.fl-nav a:hover {
  background: var(--fl-soft);
  border-color: var(--fl-line);
}

.fl-nav .fl-nav__cta {
  background: var(--fl-red);
  border-color: var(--fl-red);
  color: var(--fl-white) !important;
  box-shadow: 0 8px 18px rgba(232,65,79,.24);
}

.fl-hero {
  min-height: 650px;
  background-color: var(--fl-ink);
  color: var(--fl-white);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.fl-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(90deg, rgba(8,14,26,.68) 0%, rgba(8,14,26,.3) 50%, rgba(8,14,26,.58) 100%),
    url("../../images/hero-profile-patchwork-20260715.jpg");
  background-size: cover;
  background-position: center 38%;
  opacity: 1;
}

.fl-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(232,65,79,.14), transparent 32%),
    linear-gradient(180deg, rgba(8,14,26,.02), rgba(8,14,26,.24));
  pointer-events: none;
}

.fl-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, .72fr);
  gap: 38px;
  align-items: center;
  padding: 74px 0 62px;
}

.fl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--fl-amber);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 14px;
}

.fl-hero h1,
.fl-page-hero h1 {
  color: var(--fl-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5.4vw, 62px);
  line-height: 1.02;
  margin: 0 0 18px;
  letter-spacing: 0;
}

.fl-hero__lead {
  font-size: 20px;
  line-height: 1.55;
  margin: 0 0 24px;
  max-width: 700px;
  color: rgba(255,255,255,.92);
}

.fl-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 700px;
  margin: 28px 0 0;
}

.fl-proof span {
  display: block;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  color: var(--fl-white);
  font-weight: 800;
  font-size: 13px;
}

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

.fl-button,
.fl-button:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid transparent;
}

.fl-button--primary {
  color: var(--fl-white) !important;
  background: var(--fl-red);
}

.fl-button--secondary {
  color: var(--fl-white) !important;
  border-color: rgba(255,255,255,.42);
  background: rgba(255,255,255,.10);
}

.fl-conversion-box {
  background: rgba(255,255,255,.94);
  border-radius: 8px;
  padding: 20px;
  box-shadow: var(--fl-shadow);
  color: var(--fl-text);
  border: 1px solid rgba(255,255,255,.65);
}

.fl-conversion-box h2,
.fl-conversion-box h3 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.18;
  color: var(--fl-ink);
}

.fl-conversion-box p {
  margin: 0 0 16px;
  color: var(--fl-muted);
  font-size: 14px;
}

body.finderlib-boost #formuser {
  min-height: 306px;
}

body.finderlib-boost .ptprelinker-register-form,
body.finderlib-boost .ptprelinker--box {
  max-width: 100% !important;
}

body.finderlib-boost .ptprelinker-button-success {
  background: var(--fl-red) !important;
  border-color: var(--fl-red) !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
}

.fl-section {
  padding: 58px 0;
}

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

.fl-section--dark {
  background: var(--fl-ink);
  color: var(--fl-white);
}

.fl-section h2,
.fl-section h3 {
  color: var(--fl-ink);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.18;
  letter-spacing: 0;
}

.fl-section--dark h2,
.fl-section--dark h3 {
  color: var(--fl-white);
}

.fl-section__head {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.fl-section__head h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin: 0 0 12px;
}

.fl-section__head p {
  margin: 0;
  color: var(--fl-muted);
}

.fl-section--dark .fl-section__head p {
  color: rgba(255,255,255,.78);
}

.fl-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.fl-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fl-card {
  background: var(--fl-white);
  border: 1px solid var(--fl-line);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 8px 22px rgba(16,24,39,.06);
}

.fl-card h3 {
  font-size: 22px;
  margin: 0 0 10px;
}

.fl-card p {
  margin: 0;
}

.fl-card a {
  font-weight: 900;
  text-decoration: none;
}

.fl-card--accent {
  border-top: 4px solid var(--fl-red);
}

.fl-card--teal {
  border-top: 4px solid var(--fl-teal);
}

.fl-card--amber {
  border-top: 4px solid var(--fl-amber);
}

.fl-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.fl-link-grid a,
.fl-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--fl-line);
  background: var(--fl-white);
  text-decoration: none;
  font-weight: 900;
  color: var(--fl-blue) !important;
  text-align: center;
}

.fl-link-grid a:hover,
.fl-pill:hover {
  border-color: var(--fl-red);
  color: var(--fl-red) !important;
}

.fl-profile-zone {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  overflow: visible;
}

body.finderlib-boost .approfil {
  width: auto !important;
  min-width: 0 !important;
  height: auto !important;
  min-height: 0 !important;
  border: 1px solid var(--fl-line) !important;
  border-radius: 8px !important;
  background: var(--fl-white) !important;
  box-shadow: 0 7px 18px rgba(16,24,39,.07) !important;
  margin: 0 !important;
  padding: 13px !important;
  color: var(--fl-text) !important;
  float: none !important;
}

body.finderlib-boost .approfil a {
  color: var(--fl-blue) !important;
}

body.finderlib-boost .avatarstyle {
  filter: none !important;
  border-radius: 999px;
}

body.finderlib-boost .approfil.fl-generated-profile {
  display: grid !important;
  grid-template-columns: 50px minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 10px;
  row-gap: 7px;
}

.fl-generated-profile__top {
  grid-column: 1;
  grid-row: 1 / span 2;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 50px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

body.finderlib-boost .fl-generated-profile__avatar {
  width: 48px !important;
  height: 48px !important;
  object-fit: cover;
  display: block;
  border-radius: 999px;
  border: 2px solid #ffffff;
  box-shadow: 0 6px 14px rgba(16,24,39,.14);
  filter: none !important;
  image-rendering: auto;
}

.fl-generated-profile__gender {
  position: absolute;
  right: -3px;
  bottom: -2px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 4px 12px rgba(16,24,39,.14);
}

.fl-generated-profile__gender img {
  width: 12px;
  height: 12px;
}

.fl-generated-profile__name {
  grid-column: 2 / 4;
  grid-row: 1;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
  font-weight: 900;
  color: var(--fl-blue);
  min-width: 0;
  overflow: hidden;
  align-self: end;
}

.fl-generated-profile__name strong {
  min-width: 0;
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fl-generated-profile__name span {
  flex: 0 0 auto;
  font-size: 13px;
  color: var(--fl-muted);
  font-weight: 800;
}

.fl-generated-profile__zone {
  grid-column: 2 / 4;
  grid-row: 2;
  margin: 0;
  color: var(--fl-muted);
  font-size: 12px;
  line-height: 1.3;
  align-self: start;
}

.fl-generated-profile__chips {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  min-height: 23px;
}

.fl-generated-profile__chips span {
  padding: 4px 7px;
  border-radius: 999px;
  background: var(--fl-soft);
  color: var(--fl-blue);
  font-size: 11px;
  font-weight: 800;
}

.fl-generated-profile__chips span:nth-child(n+3) {
  display: none;
}

.fl-generated-profile__facts {
  grid-column: 1 / -1;
  display: block;
  margin: 0;
  padding: 8px 9px;
  border: 1px solid var(--fl-line);
  border-radius: 8px;
  background: #f8fafc;
}

.fl-generated-profile__facts div {
  display: none;
}

.fl-generated-profile__facts div:nth-child(3),
.fl-generated-profile__facts div:nth-child(4) {
  min-width: 0;
  display: flex;
  align-items: baseline;
  gap: 7px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.fl-generated-profile__facts div:nth-child(4) {
  margin-top: 4px;
}

.fl-generated-profile__facts dt {
  flex: 0 0 64px;
  margin: 0 0 2px;
  color: var(--fl-muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.fl-generated-profile__facts dd {
  margin: 0;
  color: var(--fl-text);
  font-size: 12px;
  font-weight: 800;
  overflow-wrap: anywhere;
  line-height: 1.25;
}

.fl-profile-cta {
  grid-column: 1 / -1;
  display: block;
  margin-top: 2px;
  padding: 8px 10px;
  border-radius: 8px;
  background: var(--fl-red);
  color: #fff !important;
  text-align: center;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(225,29,72,.14);
}

.fl-two {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .55fr);
  gap: 32px;
  align-items: start;
}

.fl-copy {
  font-size: 17px;
}

.fl-copy h2 {
  font-size: 34px;
  margin: 0 0 14px;
}

.fl-copy h3 {
  font-size: 26px;
  margin: 24px 0 10px;
}

.fl-copy p {
  margin: 0 0 16px;
}

.fl-sidebar {
  position: sticky;
  top: 18px;
}

.fl-mini-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fl-mini-list li {
  padding: 12px 14px;
  background: var(--fl-soft);
  border-left: 4px solid var(--fl-teal);
  border-radius: 8px;
  font-weight: 700;
}

.fl-faq details {
  background: var(--fl-white);
  border: 1px solid var(--fl-line);
  border-radius: 8px;
  padding: 16px 18px;
  margin-bottom: 10px;
}

.fl-faq summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--fl-ink);
}

.fl-faq p {
  margin: 12px 0 0;
}

.fl-page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--fl-ink);
  color: var(--fl-white);
  padding: 62px 0 54px;
}

.fl-page-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(90deg, rgba(8,14,26,.72) 0%, rgba(8,14,26,.38) 52%, rgba(8,14,26,.62) 100%),
    url("../../images/hero-profile-patchwork-20260715.jpg");
  background-size: cover;
  background-position: center 38%;
  opacity: 1;
}

.fl-page-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(232,65,79,.14), transparent 34%),
    linear-gradient(180deg, rgba(8,14,26,.02), rgba(8,14,26,.18));
  pointer-events: none;
}

.fl-page-hero > .fl-container {
  position: relative;
  z-index: 1;
}

.fl-page-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 34px;
  align-items: center;
}

.fl-page-hero__copy {
  min-width: 0;
}

.fl-hero-form {
  min-width: 0;
}

.fl-hero-form .fl-conversion-box {
  margin: 0;
  box-shadow: 0 20px 46px rgba(0,0,0,.22);
}

.fl-page-hero .fl-hero-form p {
  max-width: none;
  color: var(--fl-text);
  font-size: 15px;
}

.fl-page-hero p {
  max-width: 820px;
  font-size: 19px;
  color: rgba(255,255,255,.86);
}

.fl-page-hero .fl-updated {
  display: inline-flex;
  width: auto;
  max-width: 100%;
  margin: 0 0 16px;
  padding: 7px 10px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.09);
  color: rgba(255,255,255,.84);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 800;
}

.fl-breadcrumb {
  font-size: 13px;
  margin-bottom: 18px;
  color: rgba(255,255,255,.72);
}

.fl-breadcrumb a {
  color: rgba(255,255,255,.92) !important;
}

.fl-cta-band {
  background: var(--fl-blue);
  color: var(--fl-white);
  padding: 34px;
  border-radius: 8px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.fl-cta-band h2,
.fl-cta-band p {
  color: var(--fl-white);
  margin: 0;
}

.fl-cta-band p {
  color: rgba(255,255,255,.82);
  margin-top: 6px;
}

.fl-footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 24px auto;
  max-width: 980px;
}

.fl-footer-links a {
  color: #ffffff !important;
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.08);
}

.fl-site-footer {
  background: #111827;
  color: rgba(255,255,255,.82);
  padding-top: 44px;
}

.fl-site-footer__grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.45fr) repeat(4, minmax(130px, 1fr));
  gap: 28px;
  align-items: start;
}

.fl-site-footer__brand img {
  display: block;
  width: 190px;
  max-width: 100%;
  margin-bottom: 16px;
}

.fl-site-footer__brand p {
  margin: 0;
  max-width: 340px;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.6;
}

.fl-site-footer__col h2 {
  margin: 0 0 12px;
  color: var(--fl-white);
  font-size: 13px;
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0;
}

.fl-site-footer__col a {
  display: block;
  color: rgba(255,255,255,.78) !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.35;
  padding: 6px 0;
}

.fl-site-footer__col a:hover {
  color: var(--fl-white) !important;
}

.fl-site-footer__bottom {
  margin-top: 36px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 18px 0;
}

.fl-site-footer__bottom p {
  margin: 0;
  color: rgba(255,255,255,.62);
  font-size: 13px;
}

.fl-table-wrap {
  overflow-x: auto;
  margin: 0 0 24px;
  border: 1px solid var(--fl-line);
  border-radius: 8px;
  background: var(--fl-white);
  box-shadow: 0 10px 28px rgba(16,24,39,.07);
}

.fl-compare-table {
  width: 100%;
  min-width: 740px;
  border: 0;
  border-collapse: collapse;
  margin: 0;
  table-layout: fixed;
  font-size: 15px;
}

.fl-compare-table th,
.fl-compare-table td {
  border: 0;
  border-bottom: 1px solid var(--fl-line);
  padding: 16px;
  text-align: left;
  vertical-align: top;
}

.fl-compare-table th {
  background: var(--fl-ink);
  color: var(--fl-white);
  font-weight: 900;
}

.fl-compare-table td:first-child {
  color: var(--fl-ink);
  font-weight: 900;
}

.fl-compare-table tr:last-child td {
  border-bottom: 0;
}

.fl-editorial-grid {
  align-items: stretch;
}

.fl-check-list,
.fl-warning-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fl-check-list li,
.fl-warning-list li {
  position: relative;
  padding-left: 28px;
}

.fl-check-list li:before,
.fl-warning-list li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
}

.fl-check-list li:before {
  content: "✓";
  background: rgba(19,184,166,.14);
  color: #0c746c;
}

.fl-warning-list li:before {
  content: "!";
  background: rgba(245,165,36,.18);
  color: #96620c;
}

.fl-section--trust {
  background: #111a28;
  color: var(--fl-white);
}

.fl-trust-panel {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: center;
}

.fl-trust-panel h2 {
  color: var(--fl-white);
  font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 10px;
}

.fl-trust-panel p {
  color: rgba(255,255,255,.78);
  margin: 0;
}

.fl-trust-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.fl-trust-links a {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.22);
  color: var(--fl-white) !important;
  text-decoration: none;
  text-align: center;
  font-weight: 900;
  background: rgba(255,255,255,.08);
}

.fl-trust-links a:hover {
  background: rgba(255,255,255,.15);
}

.fl-contact-box {
  margin-top: 30px;
  padding: 22px;
  border-radius: 8px;
  border: 1px solid var(--fl-line);
  background: var(--fl-soft);
}

.fl-contact-form {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.fl-contact-form label {
  color: var(--fl-ink);
  font-weight: 900;
}

.fl-contact-form input,
.fl-contact-form select,
.fl-contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--fl-line);
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--fl-text);
  background: var(--fl-white);
  font: inherit;
}

.fl-contact-form textarea {
  resize: vertical;
}

.fl-contact-form button {
  width: fit-content;
  cursor: pointer;
}

.fl-contact-note {
  color: var(--fl-muted);
  font-size: 14px;
  margin: 14px 0 0;
}

body.finderlib-boost .fieldset_home2,
body.finderlib-boost .fieldset_home04 {
  border-radius: 8px !important;
}

@media (max-width: 920px) {
  .fl-top__inner,
  .fl-hero__inner,
  .fl-page-hero__inner,
  .fl-two,
  .fl-cta-band {
    grid-template-columns: 1fr;
  }

  .fl-top__inner {
    display: grid;
    text-align: center;
    padding: 14px 0;
  }

  .fl-logo {
    margin: 0 auto;
  }

  .fl-logo img {
    width: 160px;
  }

  .fl-nav {
    justify-content: center;
  }

  .fl-hero {
    min-height: 0;
  }

  .fl-hero__inner {
    padding: 42px 0;
  }

  .fl-proof,
  .fl-grid,
  .fl-grid--4,
  .fl-profile-zone,
  .fl-link-grid,
  .fl-footer-links,
  .fl-site-footer__grid,
  .fl-trust-panel {
    grid-template-columns: 1fr 1fr;
  }

  .fl-sidebar {
    position: static;
  }
}

@media (max-width: 560px) {
  body.finderlib-boost {
    font-size: 15px;
  }

  .fl-container {
    width: min(100% - 24px, 1120px);
  }

  .fl-nav a {
    font-size: 12px;
    padding: 8px 9px;
  }

  .fl-top__inner {
    gap: 10px;
  }

  .fl-logo {
    margin: 0 auto;
    padding: 6px 9px;
  }

  .fl-logo img {
    width: 150px;
    max-width: 58vw;
  }

  .fl-table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .fl-compare-table {
    display: block;
    min-width: 0;
    font-size: 14px;
  }

  .fl-compare-table thead {
    display: none;
  }

  .fl-compare-table tbody,
  .fl-compare-table tr,
  .fl-compare-table td {
    display: block;
    width: 100%;
  }

  .fl-compare-table tr {
    overflow: hidden;
    margin: 0 0 12px;
    border: 1px solid var(--fl-line);
    border-radius: 8px;
    background: var(--fl-white);
    box-shadow: 0 8px 20px rgba(16,24,39,.06);
  }

  .fl-compare-table th,
  .fl-compare-table td {
    padding: 12px 14px;
  }

  .fl-compare-table td {
    border-bottom: 1px solid var(--fl-line);
  }

  .fl-compare-table tr td:last-child {
    border-bottom: 0;
  }

  .fl-compare-table td:first-child {
    background: var(--fl-ink);
    color: var(--fl-white);
  }

  .fl-compare-table td:not(:first-child):before {
    content: attr(data-label);
    display: block;
    margin: 0 0 4px;
    color: var(--fl-blue);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .fl-hero h1,
  .fl-page-hero h1 {
    font-size: 34px;
  }

  .fl-hero__lead,
  .fl-page-hero p {
    font-size: 17px;
  }

  .fl-proof,
  .fl-grid,
  .fl-grid--4,
  .fl-profile-zone,
  .fl-link-grid,
  .fl-footer-links,
  .fl-site-footer__grid,
  .fl-trust-panel,
  .fl-trust-links {
    grid-template-columns: 1fr;
  }

  .fl-conversion-box {
    padding: 14px;
  }

  body.finderlib-boost .approfil {
    width: auto !important;
    min-width: 0 !important;
  }

  .fl-section {
    padding: 42px 0;
  }
}
