/* ============================================================
   brand-page.css — Components for brand / "Warum FELSFO" pages
   ============================================================ */

/* ---------------------------------------------------------------
   0. Brand-page card overrides
   --------------------------------------------------------------- */

.ffo-brand-hero ~ .ffo-section .ffo-card__body {
  text-align: center;
}

/* ---------------------------------------------------------------
   2. Topic Grid / Topic Card  (broker.html — knowledge topics)
   --------------------------------------------------------------- */

.ffo-topic-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.ffo-topic-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px;
  background: var(--ffo-white);
  border: 1px solid var(--ffo-neutral-200);
  border-radius: var(--ffo-radius-md);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.ffo-topic-card:hover {
  box-shadow: var(--ffo-shadow-hover);
  transform: translateY(-2px);
}

.ffo-topic-card__icon {
  width: 48px;
  height: 48px;
}

.ffo-topic-card__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ffo-primary);
  background: var(--ffo-primary-light-12);
  padding: 4px 10px;
  border-radius: 100px;
  width: fit-content;
}

.ffo-topic-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ffo-dark);
  margin: 0;
}

.ffo-topic-card__desc {
  font-size: 15px;
  color: var(--ffo-neutral-400);
  line-height: 1.5;
}

.ffo-topic-card__link {
  font-size: 15px;
  font-weight: 600;
  color: var(--ffo-primary);
  text-decoration: none;
  margin-top: auto;
}

.ffo-topic-card__link:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .ffo-topic-grid {
    grid-template-columns: 1fr;
  }
}


/* ---------------------------------------------------------------
   3. Quote Banner (erfahrungen/unternehmer.html)
   Full-width blockquote with decorative quote mark
   --------------------------------------------------------------- */

.ffo-quote-banner {
  padding: 64px 0;
}

.ffo-quote-banner--neutral {
  background: var(--ffo-neutral-100);
}

.ffo-quote-banner--primary-light {
  background: var(--ffo-primary-light-12);
}

.ffo-quote-banner .ffo-container {
  max-width: 900px;
}

.ffo-quote-banner__mark {
  font-size: 80px;
  line-height: 1;
  color: var(--ffo-primary);
  font-family: Georgia, serif;
  margin-bottom: 16px;
}

.ffo-quote-banner blockquote {
  margin: 0;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.6;
  font-weight: 600;
  color: var(--ffo-dark);
}

.ffo-quote-banner__attribution {
  margin-top: 24px;
  font-size: 15px;
  color: var(--ffo-neutral-400);
}

@media (max-width: 767px) {
  .ffo-quote-banner {
    padding: 40px 0;
  }

  .ffo-quote-banner__mark {
    font-size: 56px;
  }
}


/* ---------------------------------------------------------------
   4. Prose — long-form text styling
   --------------------------------------------------------------- */

.ffo-prose {
  max-width: 800px;
  margin-inline: auto;
}

.ffo-prose p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ffo-dark);
  margin-bottom: 24px;
}

.ffo-prose p:last-child {
  margin-bottom: 0;
}

.ffo-prose a {
  color: var(--ffo-primary);
  text-decoration: underline;
}

.ffo-prose a:hover {
  color: var(--ffo-dark);
}

.ffo-prose blockquote {
  margin: 32px 0;
  padding: 24px 32px;
  border-left: 4px solid var(--ffo-primary);
  background: var(--ffo-primary-light-12);
  border-radius: 0 var(--ffo-radius-sm) var(--ffo-radius-sm) 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ffo-dark);
}

.ffo-prose h2,
.ffo-prose h3 {
  margin-top: 48px;
  margin-bottom: 16px;
}

.ffo-prose ul,
.ffo-prose ol {
  padding-left: 24px;
  margin-bottom: 24px;
}

.ffo-prose li {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 8px;
}


/* ---------------------------------------------------------------
   5. Timeline (ueber-uns.html)
   Horizontal milestone cards
   --------------------------------------------------------------- */

.ffo-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  position: relative;
}

.ffo-timeline::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--ffo-neutral-200);
}

.ffo-timeline__item {
  position: relative;
  padding-top: 64px;
  text-align: center;
}

.ffo-timeline__item::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: var(--ffo-primary);
  border-radius: 50%;
  border: 3px solid var(--ffo-white);
  box-shadow: 0 0 0 2px var(--ffo-primary);
}

.ffo-timeline__year {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ffo-primary);
  margin-bottom: 12px;
}

.ffo-timeline__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
}

.ffo-timeline__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ffo-dark);
  margin-bottom: 8px;
}

.ffo-timeline__desc {
  font-size: 14px;
  color: var(--ffo-neutral-400);
  line-height: 1.5;
}

@media (max-width: 767px) {
  .ffo-timeline {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .ffo-timeline::before {
    top: 0;
    bottom: 0;
    left: 20px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .ffo-timeline__item {
    padding-top: 0;
    padding-left: 56px;
    padding-bottom: 32px;
    text-align: left;
  }

  .ffo-timeline__item::before {
    top: 4px;
    left: 20px;
    transform: translateX(-50%);
  }

  .ffo-timeline__icon {
    margin: 0 0 12px;
  }
}


/* ---------------------------------------------------------------
   6a. Stat Box (presse.html)
   Key metric + label — used in a 4-column grid
   --------------------------------------------------------------- */

.ffo-stat-box {
  text-align: center;
  padding: 32px 16px;
}

.ffo-stat-box__value {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--ffo-primary);
  line-height: 1.2;
  margin-bottom: 8px;
  white-space: nowrap;
}

.ffo-stat-box__label {
  font-size: 15px;
  color: var(--ffo-neutral-400);
  line-height: 1.4;
}


/* ---------------------------------------------------------------
   6. Press Table (presse.html)
   3-column press articles table
   --------------------------------------------------------------- */

.ffo-press-table {
  width: 100%;
  border-collapse: collapse;
}

.ffo-press-table thead th {
  text-align: left;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ffo-neutral-400);
  border-bottom: 2px solid var(--ffo-neutral-200);
}

.ffo-press-table tbody td {
  padding: 16px;
  font-size: 15px;
  color: var(--ffo-dark);
  border-bottom: 1px solid var(--ffo-neutral-200);
  vertical-align: top;
}

.ffo-press-table tbody tr:hover {
  background: var(--ffo-neutral-100);
}

.ffo-press-table__date {
  white-space: nowrap;
  color: var(--ffo-neutral-400);
  font-size: 14px;
}

.ffo-press-table__publisher {
  font-weight: 600;
  white-space: nowrap;
}

.ffo-press-table__title a {
  color: var(--ffo-dark);
  text-decoration: none;
  font-weight: 500;
}

.ffo-press-table__title a:hover {
  color: var(--ffo-primary);
  text-decoration: underline;
}

@media (max-width: 767px) {
  .ffo-press-table thead {
    display: none;
  }

  .ffo-press-table tbody tr {
    display: flex;
    flex-direction: column;
    padding: 16px 0;
    border-bottom: 1px solid var(--ffo-neutral-200);
  }

  .ffo-press-table tbody td {
    padding: 4px 0;
    border: none;
  }

  .ffo-press-table__date {
    order: -1;
    font-size: 13px;
  }
}


/* ---------------------------------------------------------------
   7. Contact Card (presse.html)
   Team member card — image + name + role + email
   --------------------------------------------------------------- */

.ffo-contact-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px;
  background: var(--ffo-white);
  border: 1px solid var(--ffo-neutral-200);
  border-radius: var(--ffo-radius-md);
}

.ffo-contact-card__image {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.ffo-contact-card__name {
  font-size: 18px;
  font-weight: 700;
  color: var(--ffo-dark);
  margin-bottom: 4px;
}

.ffo-contact-card__role {
  font-size: 14px;
  color: var(--ffo-neutral-400);
  margin-bottom: 8px;
}

.ffo-contact-card__email a {
  font-size: 15px;
  color: var(--ffo-primary);
  text-decoration: none;
  font-weight: 600;
}

.ffo-contact-card__email a:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .ffo-contact-card {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
}
