.ftb-sheet {
  --ftb-primary: #123f6d;
  --ftb-accent: #e2a300;
  color: #182033;
  font-family: Arial, Helvetica, sans-serif;
  margin: 28px auto;
  max-width: 1060px;
}

.ftb-sheet * {
  box-sizing: border-box;
}

.ftb-actions {
  display: flex;
  justify-content: flex-end;
  margin: 0 0 12px;
}

.ftb-print-button {
  background: var(--ftb-primary);
  border: 0;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  min-height: 40px;
  padding: 0 16px;
}

.ftb-print-button:hover,
.ftb-print-button:focus {
  background: #0b2e50;
  color: #fff;
}

.ftb-sheet__paper {
  background: #fff;
  border: 1px solid #d3dce8;
  border-radius: 6px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}

.ftb-sheet__topline {
  background: linear-gradient(90deg, var(--ftb-primary), var(--ftb-accent));
  height: 10px;
}

.ftb-sheet__header {
  align-items: flex-start;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 30px 34px 18px;
}

.ftb-sheet__badge {
  color: var(--ftb-accent);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.ftb-sheet__heading h2 {
  color: var(--ftb-primary);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.02;
  margin: 0;
  text-transform: uppercase;
}

.ftb-sheet__heading p {
  color: #526071;
  font-size: 16px;
  line-height: 1.5;
  margin: 10px 0 0;
  max-width: 720px;
}

.ftb-sheet__model {
  background: #f7f9fc;
  border-left: 5px solid var(--ftb-accent);
  color: var(--ftb-primary);
  font-size: 20px;
  font-weight: 800;
  min-width: 132px;
  padding: 12px 14px;
  text-align: right;
  text-transform: uppercase;
}

.ftb-sheet__intro {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  padding: 0 34px 24px;
}

.ftb-sheet__copy {
  color: #263243;
  font-size: 15px;
  line-height: 1.62;
}

.ftb-sheet__copy > :first-child {
  margin-top: 0;
}

.ftb-sheet__copy > :last-child {
  margin-bottom: 0;
}

.ftb-sheet__image {
  align-self: start;
  background: #f8fafc;
  border: 1px solid #dce5ef;
  border-radius: 4px;
  margin: 0;
  padding: 14px;
}

.ftb-sheet__image img {
  display: block;
  height: auto;
  max-height: 260px;
  object-fit: contain;
  width: 100%;
}

.ftb-facts {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0 34px 26px;
}

.ftb-fact {
  background: #f7f9fc;
  border: 1px solid #dce5ef;
  border-radius: 4px;
  padding: 12px 14px;
}

.ftb-fact span {
  color: #667085;
  display: block;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.ftb-fact strong {
  color: #182033;
  display: block;
  font-size: 15px;
  line-height: 1.35;
}

.ftb-table-section {
  padding: 0 34px 26px;
}

.ftb-table-section h3 {
  background: var(--ftb-primary);
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
  margin: 0;
  padding: 12px 14px;
  text-transform: uppercase;
}

.ftb-table-wrap {
  overflow-x: auto;
}

.ftb-table {
  border-collapse: collapse;
  min-width: 720px;
  table-layout: auto;
  width: 100%;
}

.ftb-table th,
.ftb-table td {
  border: 1px solid #d6e0eb;
  font-size: 14px;
  line-height: 1.35;
  padding: 10px 11px;
  text-align: left;
  vertical-align: top;
}

.ftb-table th {
  background: #edf3f8;
  color: #1f2a3d;
  font-weight: 800;
}

.ftb-table tbody tr:nth-child(even) td {
  background: #f8fafc;
}

.ftb-notes {
  background: #fff8e5;
  border-top: 1px solid #efd37a;
  color: #533f03;
  font-size: 14px;
  line-height: 1.55;
  padding: 18px 34px;
}

@media (max-width: 780px) {
  .ftb-sheet {
    margin: 18px auto;
  }

  .ftb-sheet__header,
  .ftb-sheet__intro {
    grid-template-columns: 1fr;
  }

  .ftb-sheet__header {
    align-items: stretch;
    flex-direction: column;
    padding: 24px 20px 16px;
  }

  .ftb-sheet__heading h2 {
    font-size: 30px;
  }

  .ftb-sheet__model {
    text-align: left;
  }

  .ftb-sheet__intro,
  .ftb-facts,
  .ftb-table-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .ftb-facts {
    grid-template-columns: 1fr;
  }
}

@media print {
  @page {
    margin: 12mm;
    size: A4;
  }

  .ftb-actions {
    display: none !important;
  }

  .ftb-sheet {
    margin: 0;
    max-width: none;
  }

  .ftb-sheet__paper {
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .ftb-sheet__header {
    padding: 20px 0 12px;
  }

  .ftb-sheet__intro,
  .ftb-facts,
  .ftb-table-section {
    padding-left: 0;
    padding-right: 0;
  }

  .ftb-table {
    min-width: 0;
  }
}
