.tclf-page {
  --tclf-ink: #18221e;
  --tclf-muted: #66716c;
  --tclf-line: #d8e0da;
  --tclf-soft: #f3f6f3;
  --tclf-green: #215e42;
  --tclf-green-dark: #0e2b1f;
  --tclf-lime: #c9e36b;
  --tclf-amber: #c4842b;
  --tclf-max: 1240px;
  color: var(--tclf-ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

.tclf-page,
.tclf-page * {
  box-sizing: border-box;
}

.tclf-page img {
  display: block;
  max-width: 100%;
}

.tclf-page a {
  color: inherit;
}

.tclf-page h1,
.tclf-page h2,
.tclf-page h3,
.tclf-page p {
  margin-top: 0;
}

.tclf-page h1,
.tclf-page h2,
.tclf-page h3 {
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.tclf-page h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 5vw, 68px);
}

.tclf-page h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 50px);
}

.tclf-page h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

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

.tclf-eyebrow {
  margin-bottom: 10px;
  color: var(--tclf-green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.tclf-hero {
  position: relative;
  overflow: hidden;
  padding: 22px 0 58px;
  color: #fff;
  background:
    radial-gradient(circle at 76% 12%, rgba(93, 145, 113, 0.26), transparent 31%),
    linear-gradient(135deg, #102019, #122d21 52%, #0c1813);
}

.tclf-hero::after {
  content: "";
  position: absolute;
  right: -170px;
  bottom: -240px;
  width: 580px;
  height: 580px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.02), 0 0 0 140px rgba(255, 255, 255, 0.018);
  pointer-events: none;
}

.tclf-breadcrumb {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding-bottom: 26px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.tclf-breadcrumb a {
  text-decoration: none;
}

.tclf-breadcrumb a:hover,
.tclf-breadcrumb strong {
  color: #fff;
}

.tclf-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 1fr);
  gap: 46px;
  align-items: start;
}

.tclf-hero-copy .tclf-eyebrow,
.tclf-section--dark .tclf-eyebrow {
  color: var(--tclf-lime);
}

.tclf-hero-copy h1 {
  max-width: 610px;
  margin-bottom: 14px;
  font-size: clamp(40px, 4vw, 56px);
  line-height: 1.02;
}

.tclf-lead {
  max-width: 660px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.55;
}

.tclf-lead strong {
  color: #fff;
}

.tclf-checks {
  display: grid;
  gap: 7px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.5;
}

.tclf-checks li {
  position: relative;
  padding-left: 26px;
}

.tclf-checks li::before {
  content: "✓";
  position: absolute;
  top: 1px;
  left: 0;
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--tclf-lime);
  color: #18301e;
  font-size: 10px;
  font-weight: 900;
}

.tclf-checks strong {
  color: #fff;
}

.tclf-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tclf-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.tclf-button:hover {
  transform: translateY(-2px);
}

.tclf-button--primary {
  color: #162314;
  background: var(--tclf-lime);
  box-shadow: 0 13px 28px rgba(201, 227, 107, 0.2);
}

.tclf-button--ghost {
  border-color: rgba(255, 255, 255, 0.38);
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.tclf-boundary {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  max-width: 650px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.57);
  font-size: 12px;
}

.tclf-status-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--tclf-lime);
  box-shadow: 0 0 0 5px rgba(201, 227, 107, 0.1);
}

.tclf-reference-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.tclf-reference-row > div {
  padding: 9px 11px;
  border-left: 2px solid var(--tclf-lime);
  background: rgba(255, 255, 255, 0.055);
}

.tclf-reference-row span {
  display: block;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.tclf-reference-row strong {
  font-size: 12px;
}

.tclf-text-action {
  margin: 9px 0 0;
  padding: 0;
  border: 0;
  background: none;
  color: rgba(255, 255, 255, 0.84);
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
}

.tclf-text-action span {
  color: var(--tclf-lime);
  font-size: 16px;
}

.tclf-gallery,
.tclf-hero-copy {
  min-width: 0;
}

.tclf-gallery-main {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.tclf-gallery-main > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.18s ease, transform 0.35s ease;
}

.tclf-gallery-main.is-switching > img {
  opacity: 0;
  transform: scale(0.985);
}

.tclf-gallery-badge {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(14, 43, 31, 0.9);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tclf-gallery-zoom {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--tclf-line);
  border-radius: 50%;
  background: #fff;
  color: var(--tclf-green-dark);
  cursor: pointer;
  font-size: 25px;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(20, 43, 32, 0.18);
}

.tclf-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.tclf-thumb {
  overflow: hidden;
  min-width: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  text-align: left;
}

.tclf-thumb img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  background: #fff;
}

.tclf-thumb span {
  display: block;
  overflow: hidden;
  padding: 6px 7px;
  font-size: 10px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tclf-thumb.is-active {
  border-color: var(--tclf-lime);
  color: #fff;
  box-shadow: 0 0 0 1px var(--tclf-lime);
}

.tclf-visual-card figcaption,
.tclf-image-grid figure figcaption {
  padding: 10px 14px;
  color: #66716c;
  background: #fff;
  font-size: 11px;
}

.tclf-image-dialog {
  width: min(1100px, calc(100% - 30px));
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.4);
}

.tclf-image-dialog::backdrop {
  background: rgba(5, 12, 8, 0.78);
  backdrop-filter: blur(4px);
}

.tclf-image-dialog img {
  width: 100%;
  max-height: 88vh;
  object-fit: contain;
}

.tclf-image-dialog button {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(13, 30, 20, 0.88);
  color: #fff;
  cursor: pointer;
  font-size: 25px;
}

.tclf-facts {
  position: relative;
  z-index: 3;
  margin-top: -30px;
}

.tclf-facts-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  overflow: hidden;
  border: 1px solid var(--tclf-line);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(16, 39, 27, 0.14);
}

.tclf-facts-grid > div {
  min-height: 98px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px;
  border-right: 1px solid var(--tclf-line);
}

.tclf-facts-grid > div:last-child {
  border-right: 0;
}

.tclf-facts span {
  margin-bottom: 4px;
  color: var(--tclf-muted);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.tclf-facts strong {
  font-size: 14px;
  line-height: 1.35;
}

.tclf-section {
  padding: 104px 0;
}

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

.tclf-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.55fr);
  gap: 54px;
  align-items: end;
  margin-bottom: 44px;
}

.tclf-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.tclf-heading > p {
  margin-bottom: 5px;
  color: var(--tclf-muted);
}

.tclf-system-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 34px;
  align-items: stretch;
}

.tclf-visual-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--tclf-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 20px 52px rgba(17, 37, 27, 0.12);
}

.tclf-visual-card img {
  width: 100%;
  height: calc(100% - 43px);
  object-fit: cover;
}

.tclf-component-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.tclf-component-grid article,
.tclf-decision-grid article {
  position: relative;
  padding: 25px;
  border: 1px solid var(--tclf-line);
  border-radius: 15px;
  background: #fff;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.tclf-component-grid article:hover,
.tclf-decision-grid article:hover {
  transform: translateY(-3px);
  border-color: #aabbb0;
  box-shadow: 0 16px 34px rgba(17, 37, 27, 0.09);
}

.tclf-component-grid article > span {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 50%;
  color: var(--tclf-green-dark);
  background: var(--tclf-lime);
  font-size: 11px;
  font-weight: 900;
}

.tclf-component-grid h3,
.tclf-decision-grid h3 {
  font-size: 19px;
}

.tclf-component-grid p,
.tclf-decision-grid p {
  margin-bottom: 0;
  color: var(--tclf-muted);
  font-size: 14px;
}

.tclf-spec-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  gap: 26px;
  align-items: stretch;
}

.tclf-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--tclf-line);
  border-radius: 16px;
  background: #fff;
}

.tclf-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 780px;
}

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

.tclf-table th {
  color: #fff;
  background: var(--tclf-green-dark);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.tclf-table td:first-child {
  width: 18%;
  color: var(--tclf-green-dark);
  font-weight: 800;
}

.tclf-table td:nth-child(2) {
  width: 34%;
}

.tclf-table td:last-child {
  color: var(--tclf-muted);
  font-size: 14px;
}

.tclf-spec-aside {
  overflow: hidden;
  padding: 0;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(145deg, #133325, #0d2118);
  box-shadow: 0 20px 48px rgba(17, 37, 27, 0.18);
}

.tclf-spec-aside-media {
  overflow: hidden;
  height: 230px;
  margin: 0;
  background: #e7ece8;
}

.tclf-spec-aside-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tclf-spec-aside-content {
  padding: 30px;
}

.tclf-spec-aside h3 {
  font-size: 28px;
}

.tclf-spec-aside dl {
  display: grid;
  gap: 0;
  margin: 26px 0;
}

.tclf-spec-aside dl div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.tclf-spec-aside dt {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.tclf-spec-aside dd {
  margin: 0;
  font-size: 13px;
  font-weight: 750;
}

.tclf-spec-aside-content > p:not(.tclf-eyebrow) {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.tclf-text-link {
  color: var(--tclf-lime) !important;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.tclf-source-note {
  margin-top: 20px;
  padding: 18px 22px;
  border: 1px solid var(--tclf-line);
  border-radius: 12px;
  background: #fff;
}

.tclf-source-note summary {
  color: var(--tclf-green-dark);
  cursor: pointer;
  font-weight: 850;
}

.tclf-source-note p {
  margin: 15px 0 0;
  color: var(--tclf-muted);
  font-size: 13px;
}

.tclf-source-note a {
  color: var(--tclf-green);
}

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

.tclf-decision-grid article > span {
  display: block;
  margin-bottom: 10px;
  color: var(--tclf-amber);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tclf-section--image {
  background: linear-gradient(180deg, #f5f7f5, #fff);
}

.tclf-image-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 54px;
  align-items: center;
}

.tclf-image-grid figure {
  overflow: hidden;
  margin: 0;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(16, 39, 27, 0.14);
}

.tclf-image-grid figure img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.tclf-application-list {
  display: grid;
  gap: 13px;
}

.tclf-application-list article {
  padding: 16px 18px;
  border-left: 3px solid var(--tclf-green);
  background: #fff;
}

.tclf-application-list strong {
  display: block;
  margin-bottom: 3px;
}

.tclf-application-list p {
  margin-bottom: 0;
  color: var(--tclf-muted);
  font-size: 14px;
}

.tclf-alert {
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid #e8d2ac;
  border-radius: 10px;
  color: #6d4c1f;
  background: #fff9ed;
  font-size: 13px;
}

.tclf-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tclf-process li {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 27px;
  border-radius: 17px;
  color: #fff;
  background: var(--tclf-green-dark);
}

.tclf-process li > span {
  color: var(--tclf-lime);
  font-size: 30px;
  font-weight: 900;
}

.tclf-process h3 {
  color: #fff;
}

.tclf-process p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.tclf-proof-links {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 26px;
}

.tclf-proof-links a {
  color: var(--tclf-green);
  font-weight: 850;
  text-decoration: none;
}

.tclf-section--dark {
  color: #fff;
  background: #0d1e16;
}

.tclf-packing-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 56px;
  align-items: center;
}

.tclf-packing-grid > div > p:not(.tclf-eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

.tclf-packing-grid ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.8);
}

.tclf-packing-grid figure {
  overflow: hidden;
  margin: 0;
  border-radius: 18px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.32);
}

.tclf-packing-grid figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.tclf-visual-disclosure {
  margin-top: 20px;
  font-size: 11px !important;
}

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

.tclf-rfq-grid > div {
  padding: 23px;
  border: 1px solid var(--tclf-line);
  border-radius: 14px;
  background: #fff;
}

.tclf-rfq-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--tclf-green);
  font-size: 20px;
  font-weight: 900;
}

.tclf-rfq-grid strong {
  display: block;
  margin-bottom: 7px;
}

.tclf-rfq-grid p {
  margin-bottom: 0;
  color: var(--tclf-muted);
  font-size: 14px;
}

.tclf-faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.tclf-faq-layout > div:first-child {
  position: sticky;
  top: 100px;
}

.tclf-faq-layout > div:first-child > p:not(.tclf-eyebrow) {
  color: var(--tclf-muted);
}

.tclf-faq {
  display: grid;
  gap: 12px;
}

.tclf-faq details {
  border: 1px solid var(--tclf-line);
  border-radius: 13px;
  background: #fff;
}

.tclf-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  color: var(--tclf-green-dark);
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}

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

.tclf-faq summary span {
  color: var(--tclf-green);
  font-size: 24px;
  font-weight: 500;
  transition: transform 0.2s ease;
}

.tclf-faq details[open] summary span {
  transform: rotate(45deg);
}

.tclf-faq details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--tclf-muted);
}

.tclf-related {
  padding: 88px 0;
  background: var(--tclf-soft);
}

.tclf-related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.tclf-related-grid a {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 23px;
  border: 1px solid var(--tclf-line);
  border-radius: 15px;
  background: #fff;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tclf-related-grid a:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(17, 37, 27, 0.09);
}

.tclf-related-grid span {
  color: var(--tclf-amber);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tclf-related-grid strong {
  font-size: 18px;
}

.tclf-related-grid i {
  color: var(--tclf-green);
  font-style: normal;
  font-size: 23px;
}

@media (max-width: 1080px) {
  .tclf-hero-grid,
  .tclf-system-grid,
  .tclf-image-grid,
  .tclf-packing-grid {
    grid-template-columns: 1fr;
  }

  .tclf-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }

  .tclf-gallery-main {
    min-height: 420px;
  }

  .tclf-facts-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .tclf-facts-grid > div:nth-child(3) {
    border-right: 0;
  }

  .tclf-facts-grid > div:nth-child(-n + 3) {
    border-bottom: 1px solid var(--tclf-line);
  }

  .tclf-spec-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 800px) {
  .tclf-wrap {
    width: min(100% - 28px, var(--tclf-max));
  }

  .tclf-hero {
    padding-bottom: 52px;
  }

  .tclf-hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .tclf-hero-copy {
    grid-row: 1;
  }

  .tclf-gallery {
    grid-row: 2;
  }

  .tclf-gallery-main {
    min-height: 390px;
  }

  .tclf-page h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .tclf-page h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .tclf-lead {
    font-size: 16px;
  }

  .tclf-section {
    padding: 78px 0;
  }

  .tclf-heading {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
  }

  .tclf-component-grid,
  .tclf-decision-grid,
  .tclf-rfq-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tclf-faq-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .tclf-faq-layout > div:first-child {
    position: static;
  }
}

@media (max-width: 560px) {
  .tclf-actions,
  .tclf-button {
    width: 100%;
  }

  .tclf-reference-row {
    grid-template-columns: 1fr;
  }

  .tclf-gallery-main {
    min-height: 300px;
  }

  .tclf-gallery-thumbs {
    grid-template-columns: repeat(5, 86px);
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .tclf-facts {
    margin-top: -18px;
  }

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

  .tclf-facts-grid > div,
  .tclf-facts-grid > div:nth-child(3) {
    border-right: 1px solid var(--tclf-line);
    border-bottom: 1px solid var(--tclf-line);
  }

  .tclf-facts-grid > div:nth-child(even) {
    border-right: 0;
  }

  .tclf-facts-grid > div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .tclf-component-grid,
  .tclf-decision-grid,
  .tclf-rfq-grid,
  .tclf-process,
  .tclf-related-grid {
    grid-template-columns: 1fr;
  }

  .tclf-process li {
    min-height: 210px;
  }

  .tclf-source-note,
  .tclf-faq summary,
  .tclf-faq details p {
    padding-right: 17px;
    padding-left: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tclf-page *,
  .tclf-page *::before,
  .tclf-page *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
