/* FamlyCare Tilknytningstjek - mobile first.
   Farver, fonte og radier er hentet fra FamlyCares eksisterende design tokens
   (Solace Customizer + fc-CSS). Der opfindes ingen ny visuel identitet. */

.fc-tt {
  --fc-tt-bg: #FDFBFA;
  --fc-tt-card: #FFFFFF;
  --fc-tt-soft: #FCF3F1;
  --fc-tt-soft-2: #FBF3F2;
  --fc-tt-rose: #F2D8D8;
  --fc-tt-border: #EEDCDB;
  --fc-tt-border-strong: #C79EA9;
  --fc-tt-heading: #4A2029;
  --fc-tt-text: #5C464B;
  --fc-tt-muted: #8A7176;
  --fc-tt-accent: #8A5265;
  --fc-tt-radius: 22px;
  --fc-tt-radius-sm: 16px;
  --fc-tt-shadow: 0 10px 30px rgba(74, 32, 41, .06);

  max-width: 720px;
  margin: 0 auto;
  box-sizing: border-box;
  font-family: Lato, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--fc-tt-text);
  overflow-x: clip;
}

.fc-tt *,
.fc-tt *::before,
.fc-tt *::after { box-sizing: inherit; }

.fc-tt p { margin: 0 0 16px; }
.fc-tt p:last-child { margin-bottom: 0; }

/* ---------- skaerme ---------- */

.fc-tt__screen { display: none; }
.fc-tt__screen.is-active { display: block; }

.fc-tt__card {
  background: var(--fc-tt-card);
  border: 1px solid var(--fc-tt-border);
  border-radius: var(--fc-tt-radius);
  box-shadow: var(--fc-tt-shadow);
  padding: 28px 22px 26px;
  /* Holder hoejden nogenlunde konstant mellem spoergsmaal, saa siden ikke hopper. */
  min-height: 420px;
  display: flex;
  flex-direction: column;
}

.fc-tt__card--intro,
.fc-tt__card--result { min-height: 0; }

/* ---------- typografi ---------- */

.fc-tt__eyebrow {
  font-size: 11px;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  color: var(--fc-tt-accent);
  margin: 0 0 12px;
}

.fc-tt__h1,
.fc-tt__h2,
.fc-tt__h3 {
  font-family: "EB Garamond", Georgia, serif;
  font-weight: 400;
  color: var(--fc-tt-heading);
  text-transform: none;
  margin: 0 0 14px;
}

.fc-tt__h1 { font-size: 28px; line-height: 1.2; }
.fc-tt__h2 { font-size: 23px; line-height: 1.28; }
.fc-tt__h3 { font-size: 20px; line-height: 1.3; margin-bottom: 10px; }

.fc-tt__lead { font-size: 17px; color: var(--fc-tt-heading); }
.fc-tt__help { font-size: 14.5px; color: var(--fc-tt-muted); line-height: 1.7; }
.fc-tt__fine { font-size: 13px; line-height: 1.65; color: var(--fc-tt-muted); margin-top: 16px; }
.fc-tt__context { font-size: 15.5px; color: var(--fc-tt-muted); }
.fc-tt__req { color: var(--fc-tt-accent); }

.fc-tt__link { color: var(--fc-tt-accent); text-decoration: underline; }
.fc-tt__link:hover,
.fc-tt__link:focus { color: var(--fc-tt-heading); }

/* ---------- intro ---------- */

.fc-tt__portrait {
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.fc-tt__portrait img {
  display: block;
  width: 132px;
  height: 132px;
  object-fit: cover;
  object-position: 50% 20%;
  border-radius: 50%;
  border: 5px solid var(--fc-tt-soft);
}
.fc-tt__portrait-text { min-width: 0; }
.fc-tt__portrait-name {
  margin: 0;
  font-family: "EB Garamond", Georgia, serif;
  font-size: 19px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fc-tt-heading);
}
.fc-tt__portrait-title {
  margin: 4px 0 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--fc-tt-accent);
}

/* Portraettet i bunden af introkortet: adskilt med en tynd streg i stedet
   for at fylde ovenover knappen. */
.fc-tt__portrait--bottom {
  margin: 24px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--fc-tt-border);
}

/* ---------- progressbar ---------- */

.fc-tt__progress { margin: 0 0 16px; }
.fc-tt__progress-bar {
  height: 6px;
  border-radius: 999px;
  background: var(--fc-tt-rose);
  overflow: hidden;
}
.fc-tt__progress-bar span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: var(--fc-tt-accent);
  transition: width .35s ease;
}
.fc-tt__progress-label {
  margin: 8px 0 0;
  font-size: 12.5px;
  letter-spacing: .6px;
  color: var(--fc-tt-accent);
}

/* ---------- svar som klikbare kort ---------- */

.fc-tt__options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 4px 0 22px;
}

.fc-tt__option {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  min-height: 56px;
  padding: 16px 18px;
  background: var(--fc-tt-card);
  border: 1px solid var(--fc-tt-border);
  border-radius: var(--fc-tt-radius-sm);
  cursor: pointer;
  font-size: 16px;
  line-height: 1.6;
  color: var(--fc-tt-text);
  transition: background-color .2s ease, border-color .2s ease;
}

.fc-tt__option:hover { background: var(--fc-tt-soft); }

/* Selve inputtet ligger skjult bag kortet - hele kortet er klikbart. */
.fc-tt__option input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
}

.fc-tt__mark {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border: 2px solid var(--fc-tt-border-strong);
  background: #fff;
  position: relative;
  transition: border-color .2s ease, background-color .2s ease;
}
.fc-tt__option--radio .fc-tt__mark { border-radius: 50%; }
.fc-tt__option--check .fc-tt__mark { border-radius: 7px; }

.fc-tt__option input:checked ~ .fc-tt__mark {
  border-color: var(--fc-tt-accent);
  background: var(--fc-tt-accent);
}
.fc-tt__option--radio input:checked ~ .fc-tt__mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: #fff;
}
.fc-tt__option--check input:checked ~ .fc-tt__mark::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Valgt tilstand vises baade med farve, ramme og markering - aldrig kun med farve. */
.fc-tt__option.is-selected {
  background: var(--fc-tt-soft);
  border-color: var(--fc-tt-accent);
  box-shadow: inset 0 0 0 1px var(--fc-tt-accent);
}

.fc-tt__option:focus-within {
  outline: 2px solid var(--fc-tt-accent);
  outline-offset: 2px;
}

/* ---------- felter ---------- */

.fc-tt__field { margin: 0 0 18px; }
.fc-tt__label {
  display: block;
  margin: 0 0 7px;
  font-size: 14.5px;
  color: var(--fc-tt-heading);
}
.fc-tt__input {
  width: 100%;
  min-height: 50px;
  padding: 13px 16px;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.4;
  color: var(--fc-tt-text);
  background: #fff;
  border: 1px solid var(--fc-tt-border);
  border-radius: 14px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.fc-tt__input:focus {
  outline: none;
  border-color: var(--fc-tt-border-strong);
  box-shadow: 0 0 0 3px rgba(162, 104, 122, .18);
}
.fc-tt__input[aria-invalid="true"] { border-color: #B3403F; }

.fc-tt__checkline {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 0 0 18px;
  font-size: 14.5px;
  line-height: 1.65;
}
.fc-tt__checkline input {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin: 3px 0 0;
  accent-color: var(--fc-tt-accent);
}
.fc-tt__checkline label { cursor: pointer; }
.fc-tt__checkline a { color: var(--fc-tt-accent); text-decoration: underline; }

/* Honeypot - skjult for oejet, men udfyldes af robotter. */
.fc-tt__hp {
  position: absolute !important;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------- knapper ---------- */

.fc-tt__nav {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 8px;
}

.fc-tt__btn {
  flex: 1 1 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 28px;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.3;
  color: #fff;
  background: var(--fc-tt-accent);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background-color .2s ease;
}
.fc-tt__btn:hover { background: var(--fc-tt-heading); color: #fff; }
.fc-tt__btn[disabled] { opacity: .6; cursor: default; }
.fc-tt__btn--link { flex: 0 0 auto; }

.fc-tt__back {
  flex: 0 0 auto;
  min-height: 48px;
  padding: 12px 6px;
  background: none;
  border: 0;
  font-family: inherit;
  font-size: 15px;
  color: var(--fc-tt-accent);
  cursor: pointer;
  text-decoration: underline;
}
.fc-tt__back:hover { color: var(--fc-tt-heading); }

.fc-tt__skip {
  display: block;
  margin: 14px auto 0;
  padding: 10px 6px;
  min-height: 44px;
  background: none;
  border: 0;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--fc-tt-muted);
  text-decoration: underline;
  cursor: pointer;
}
.fc-tt__skip:hover { color: var(--fc-tt-accent); }

.fc-tt__btn:focus-visible,
.fc-tt__back:focus-visible,
.fc-tt__skip:focus-visible,
.fc-tt__link:focus-visible {
  outline: 2px solid var(--fc-tt-accent);
  outline-offset: 3px;
}

/* ---------- beskeder ---------- */

.fc-tt__error {
  margin: 0 0 14px;
  padding: 12px 16px;
  background: #FBEDEC;
  border-left: 4px solid #B3403F;
  border-radius: 0 14px 14px 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: #7A2C2B;
}
.fc-tt__ok {
  margin: 0 0 14px;
  padding: 12px 16px;
  background: var(--fc-tt-soft);
  border-left: 4px solid var(--fc-tt-accent);
  border-radius: 0 14px 14px 0;
  font-size: 14.5px;
  color: var(--fc-tt-heading);
}

/* ---------- resultat ---------- */

.fc-tt__result { max-width: 640px; margin: 0 auto; }
.fc-tt__icon { font-size: 38px; line-height: 1; margin: 0 0 10px; }
.fc-tt__block { margin: 26px 0; }

.fc-tt__softbox {
  background: var(--fc-tt-soft-2);
  border-radius: var(--fc-tt-radius);
  padding: 24px 22px;
  margin: 26px 0;
}

.fc-tt__tips,
.fc-tt__articles { margin: 0; padding-left: 20px; }
.fc-tt__tips li,
.fc-tt__articles li { margin-bottom: 12px; }
.fc-tt__tips li::marker,
.fc-tt__articles li::marker { color: var(--fc-tt-accent); }

.fc-tt__cta {
  background: var(--fc-tt-soft);
  border-radius: var(--fc-tt-radius);
  padding: 28px 22px 24px;
  margin: 30px 0;
  box-shadow: var(--fc-tt-shadow);
}
.fc-tt__cta-actions { margin: 20px 0 12px; }
.fc-tt__cta .fc-tt__btn { width: 100%; }

.fc-tt__catrin {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  background: var(--fc-tt-soft-2);
  border-radius: var(--fc-tt-radius);
  padding: 28px 22px 24px;
  margin: 30px 0;
}
.fc-tt__avatar {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 4px solid #fff;
  box-shadow: 0 6px 18px rgba(74, 32, 41, .10);
  display: block;
  max-width: 100%;
}
.fc-tt__catrin-name { font-size: 19px; font-weight: 700; color: var(--fc-tt-heading); margin: 0 0 3px; }
.fc-tt__catrin-title { font-size: 15px; color: var(--fc-tt-accent); margin: 0 0 14px; }

.fc-tt__shareimg {
  margin: 0 0 24px;
  border-radius: var(--fc-tt-radius);
  overflow: hidden;
}
.fc-tt__shareimg-img {
  display: block;
  width: 100%;
  height: auto;
}

.fc-tt__instagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 6px 0 0;
  margin: 0 0 6px;
}
.fc-tt__instagram-lead {
  font-size: 14.5px;
  color: var(--fc-tt-muted);
  margin: 0;
}

.fc-tt__sent {
  font-size: 14.5px;
  color: var(--fc-tt-muted);
  text-align: center;
  margin: 22px 0;
}

/* ---------- tablet og desktop ---------- */

@media (min-width: 768px) {
  .fc-tt__card { padding: 38px 40px 34px; min-height: 460px; }
  .fc-tt__h1 { font-size: 34px; }
  .fc-tt__h2 { font-size: 27px; }
  .fc-tt__h3 { font-size: 21px; }
  .fc-tt__portrait { flex-direction: row; align-items: center; text-align: left; gap: 18px; }
  .fc-tt__portrait img { width: 96px; height: 96px; }
  .fc-tt__portrait-name { font-size: 21px; }
  .fc-tt__nav { gap: 20px; }
  .fc-tt__btn { flex: 0 0 auto; min-width: 220px; }
  .fc-tt__nav .fc-tt__btn { margin-left: auto; }
  .fc-tt__cta,
  .fc-tt__softbox,
  .fc-tt__catrin { padding: 32px 34px 28px; }
  .fc-tt__cta .fc-tt__btn { width: auto; }
  .fc-tt__catrin { flex-direction: row; align-items: flex-start; text-align: left; gap: 24px; }
  .fc-tt__instagram { flex-direction: row; text-align: left; gap: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .fc-tt *,
  .fc-tt *::before,
  .fc-tt *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}

/* ==========================================================================
   RESULTATSIDEN
   Erstatter de enkle resultatregler laengere oppe. Reglerne herunder staar
   sidst i filen og vinder derfor, hvor de overlapper.
   ========================================================================== */

.fc-tt__result {
  max-width: 660px;
  margin: 0 auto;
  animation: fc-tt-ind .5s ease both;
}

@keyframes fc-tt-ind {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

/* ---------- hero ---------- */

.fc-tt__hero {
  position: relative;
  background: linear-gradient(178deg, #FCF3F1 0%, #FDF7F5 46%, #FFFFFF 100%);
  border: 1px solid var(--fc-tt-border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 14px 38px rgba(74, 32, 41, .09);
  text-align: center;
}

.fc-tt__hero-img { line-height: 0; }
.fc-tt__hero-img img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: 50% 42%;
}

.fc-tt__hero-inner { padding: 0 24px 32px; }
.fc-tt__hero--noimg .fc-tt__hero-inner { padding-top: 34px; }

/* Ikonet sidder i en hvid cirkel, der loefter sig op over billedkanten. */
.fc-tt__badge {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  margin: -39px auto 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 26px rgba(74, 32, 41, .13);
  font-size: 34px;
  line-height: 1;
}
.fc-tt__hero--noimg .fc-tt__badge { margin-top: 0; }

.fc-tt__hero-title { margin-bottom: 12px; }

.fc-tt__hero .fc-tt__lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--fc-tt-text);
  max-width: 46ch;
  margin: 0 auto;
}

/* ---------- broedtekst ---------- */

.fc-tt__prose {
  padding: 30px 4px 4px;
  font-size: 16.5px;
  line-height: 1.85;
}

/* Graviditetskonteksten staar stille, med en tynd rosa streg som markering. */
.fc-tt__context {
  margin: 6px 0 30px;
  padding: 2px 0 2px 18px;
  border-left: 3px solid var(--fc-tt-rose);
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--fc-tt-muted);
}

/* ---------- overskrifter med lille rosa blad ---------- */

.fc-tt__h3--mark { position: relative; padding-left: 22px; }
.fc-tt__h3--mark::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 11px;
  height: 11px;
  border-radius: 50% 0 50% 50%;
  background: var(--fc-tt-accent);
  opacity: .85;
}

/* ---------- observation og citatboks ---------- */

.fc-tt__note {
  background: var(--fc-tt-soft-2);
  border: 1px solid #F3E4E2;
  border-radius: var(--fc-tt-radius);
  padding: 26px 24px 22px;
  margin: 28px 0;
}

.fc-tt__quote {
  position: relative;
  background: #fff;
  border: 1px solid var(--fc-tt-border);
  border-left: 4px solid var(--fc-tt-accent);
  border-radius: 0 var(--fc-tt-radius) var(--fc-tt-radius) 0;
  padding: 26px 26px 22px;
  margin: 28px 0;
  box-shadow: var(--fc-tt-shadow);
}

/* ---------- de tre smaa ting ---------- */

.fc-tt__tipcards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fc-tt__tipcard {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--fc-tt-border);
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow: 0 6px 18px rgba(74, 32, 41, .05);
}
.fc-tt__tipcard p { margin: 0; font-size: 15.5px; line-height: 1.75; }

.fc-tt__tipnum {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--fc-tt-rose);
  color: var(--fc-tt-heading);
  font-family: "EB Garamond", Georgia, serif;
  font-size: 18px;
  line-height: 1;
}

/* ---------- artikelkort ---------- */

.fc-tt__artgrid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.fc-tt__artcard {
  background: #fff;
  border: 1px solid var(--fc-tt-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(74, 32, 41, .06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.fc-tt__artcard:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(74, 32, 41, .10); }
.fc-tt__artcard a { display: block; text-decoration: none; color: inherit; }

.fc-tt__artthumb { display: block; line-height: 0; }
/* Bannerne har overskriften bagt ind i venstre side. Vi beskaerer mod hoejre,
   saa kun motivet vises - praecis som paa artikeloversigten. */
.fc-tt__artthumb img {
  display: block;
  width: 100%;
  height: 148px;
  object-fit: cover;
  object-position: right center;
}

.fc-tt__artbody { display: block; padding: 18px 20px 20px; }

.fc-tt__arttitle {
  display: block;
  font-family: "EB Garamond", Georgia, serif;
  font-size: 19px;
  line-height: 1.3;
  color: var(--fc-tt-heading);
  margin-bottom: 8px;
}
.fc-tt__artcard:hover .fc-tt__arttitle { color: var(--fc-tt-accent); }

.fc-tt__artmore {
  display: inline-block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--fc-tt-accent);
}
.fc-tt__artmore::after { content: " \2192"; display: inline-block; transition: transform .25s ease; }
.fc-tt__artcard:hover .fc-tt__artmore::after { transform: translateX(4px); }

/* Pil paa almindelige links, samme greb som resten af sitet. */
.fc-tt__arrow::after { content: " \2192"; }

/* ---------- CTA ---------- */

.fc-tt__cta {
  background: linear-gradient(170deg, #FCF3F1 0%, #F8E7E4 100%);
  border: 1px solid #F0DCD9;
  border-radius: 26px;
  padding: 32px 24px 28px;
  margin: 34px 0;
  box-shadow: 0 14px 34px rgba(74, 32, 41, .09);
  text-align: center;
}
.fc-tt__cta p { max-width: 48ch; margin-left: auto; margin-right: auto; }
.fc-tt__cta-actions { margin: 24px 0 14px; }
.fc-tt__cta .fc-tt__btn { width: 100%; box-shadow: 0 8px 20px rgba(138, 82, 101, .28); }
.fc-tt__cta-second { font-size: 15px; margin: 0; }

/* ---------- Catrin ---------- */

.fc-tt__catrin {
  background: #fff;
  border: 1px solid var(--fc-tt-border);
  border-radius: 26px;
  box-shadow: var(--fc-tt-shadow);
  padding: 30px 24px 26px;
}
.fc-tt__avatar { width: 112px; height: 112px; border-width: 5px; }

/* ---------- sendt-linje som blodt skilletegn ---------- */

.fc-tt__sent {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 30px 0;
  font-size: 14.5px;
  color: var(--fc-tt-muted);
  text-align: left;
}
.fc-tt__sent::before,
.fc-tt__sent::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--fc-tt-border), transparent);
}

.fc-tt__note--start { background: var(--fc-tt-soft); border-color: #F0DEDC; }

.fc-tt__fine--end {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--fc-tt-border);
  text-align: center;
}

/* ---------- tablet og desktop ---------- */

@media (min-width: 768px) {
  .fc-tt__hero-img img { height: 240px; }
  .fc-tt__hero-inner { padding: 0 40px 38px; }
  .fc-tt__hero--noimg .fc-tt__hero-inner { padding-top: 42px; }
  .fc-tt__badge { width: 88px; height: 88px; margin-top: -44px; font-size: 38px; }
  .fc-tt__prose { padding: 36px 6px 6px; font-size: 17px; }
  .fc-tt__note,
  .fc-tt__quote,
  .fc-tt__catrin { padding: 32px 34px 28px; }
  .fc-tt__cta { padding: 40px 40px 34px; }
  .fc-tt__cta .fc-tt__btn { width: auto; min-width: 280px; }
  .fc-tt__artgrid { gap: 18px; }
  .fc-tt__artcard a { display: flex; align-items: stretch; }
  .fc-tt__artthumb { flex: 0 0 200px; }
  .fc-tt__artthumb img { height: 100%; min-height: 132px; }
  .fc-tt__artbody { flex: 1 1 auto; align-self: center; padding: 20px 24px; }
  .fc-tt__tipcard { padding: 22px 26px; }
}

@media (prefers-reduced-motion: reduce) {
  .fc-tt__result { animation: none; }
  .fc-tt__artcard:hover { transform: none; }
}

/* ==========================================================================
   RETTELSER MOD TEMAETS EGNE REGLER
   Solace saetter farve paa alle <a> og har egne billedregler. Reglerne
   herunder er skrevet med hoejere specificitet, saa knaptekst og det runde
   portraet holder, uanset hvad temaet finder paa.
   ========================================================================== */

/* ---------- knapper: teksten skal altid vaere hvid og laesbar ---------- */

.fc-tt a.fc-tt__btn,
.fc-tt a.fc-tt__btn:link,
.fc-tt a.fc-tt__btn:visited,
.fc-tt button.fc-tt__btn {
  color: #FFFFFF !important;
  text-decoration: none !important;
  opacity: 1 !important;
}

.fc-tt a.fc-tt__btn:hover,
.fc-tt a.fc-tt__btn:focus,
.fc-tt a.fc-tt__btn:active,
.fc-tt button.fc-tt__btn:hover,
.fc-tt button.fc-tt__btn:focus {
  color: #FFFFFF !important;
  background: var(--fc-tt-heading);
  opacity: 1 !important;
  text-decoration: none !important;
}

/* Lange knaptekster som "Book en gratis afklaringssamtale" skal have lov
   at bryde i to linjer i stedet for at blive klippet af paa smalle skaerme. */
.fc-tt .fc-tt__btn {
  height: auto;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
  line-height: 1.35;
  padding: 15px 26px;
  max-width: 100%;
  text-shadow: none;
}

/* Sekundaere links maa heller ikke arve temaets gennemsigtighed paa hover. */
.fc-tt a.fc-tt__link:hover,
.fc-tt a.fc-tt__link:focus { opacity: 1 !important; }

/* ---------- portraet: en hard cirkel, uanset billedets format ---------- */

.fc-tt .fc-tt__catrin-img {
  flex: 0 0 auto;
  width: 124px;
  height: 124px;
  border-radius: 50% !important;
  overflow: hidden;
  background: var(--fc-tt-soft);
  border: 5px solid #FFFFFF;
  box-shadow: 0 8px 22px rgba(74, 32, 41, .14);
  line-height: 0;
}

.fc-tt .fc-tt__catrin-img img,
.fc-tt img.fc-tt__avatar {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: 50% 18% !important;
  border: 0 !important;
  border-radius: 50% !important;
  box-shadow: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

@media (min-width: 768px) {
  .fc-tt .fc-tt__catrin-img { width: 138px; height: 138px; }
}

/* ---------- ikonet i heroen maa heller ikke blive klippet ---------- */

.fc-tt .fc-tt__badge { overflow: visible; text-shadow: none; }
