/* ================================================
   FAST FUNDED: TOOLS.CSS
   Free tools under /tools/. Loaded after style.css
   and blog.css (breadcrumb, FAQ, article typography).
   tp-*  = shared tool page shell, form controls and
           result panel (wrapper .tp-tool)
   dlc-* = daily loss calculator only
   ccc-* = challenge cost calculator only
   (.tool-card / .tools-grid belong to the homepage)
   ================================================ */

.tool-page {
  position: relative;
  z-index: 1;
  padding: 7.5rem 0 3rem;
}

.tool-page [hidden],
.tp-sticky[hidden] {
  display: none !important;
}

/* === HERO === */
.tp-hero {
  margin-bottom: 2rem;
}

.tp-hero > * {
  max-width: 780px;
}

.tp-hero__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(243, 156, 18, 0.06);
  border: 1px solid var(--border-orange);
  border-radius: 20px;
  padding: 0.25rem 0.8rem;
  margin-bottom: 1rem;
}

.tp-hero__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.tp-hero__lead {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === CARDS & FORM CONTROLS (shared) === */
.tp-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 0 0 1.25rem;
  min-width: 0;
}

/* float trick: the legend lays out as a normal block inside the fieldset */
.tp-card__title {
  float: left;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0;
  margin-bottom: 1.1rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-primary);
}

.tp-card__title + * {
  clear: both;
}

.tp-card__title span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(243, 156, 18, 0.12);
  color: var(--orange);
  font-size: 0.85rem;
}

.tp-card__h {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.tp-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1rem;
}

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

.tp-field {
  margin-bottom: 1.1rem;
  min-width: 0;
}

.tp-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.45rem;
}

.tp-help {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-top: 0.4rem;
}

.tp-input {
  display: flex;
  align-items: center;
  background: #0D0D0D;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.tp-input:focus-within {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow);
}

.tp-input input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--text-primary);
  font: 600 1rem 'Plus Jakarta Sans', sans-serif;
  padding: 0.7rem 0.85rem;
  font-variant-numeric: tabular-nums;
  -moz-appearance: textfield;
  appearance: textfield;
}

.tp-input input::-webkit-outer-spin-button,
.tp-input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.tp-input input::placeholder {
  color: var(--text-muted);
  font-weight: 500;
}

.tp-input__pre,
.tp-input__post {
  color: var(--text-muted);
  font-size: 0.875rem;
  white-space: nowrap;
}

.tp-input__pre { padding-left: 0.85rem; }
.tp-input__pre + input { padding-left: 0.35rem; }
.tp-input__post { padding-right: 0.85rem; }

.tp-input--sub {
  margin-top: 0.5rem;
}

.tp-sub {
  margin-top: 0.75rem;
  max-width: 200px;
}

.tp-select {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  background: #0D0D0D url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23AAAAAA' stroke-width='1.6'/%3E%3C/svg%3E") no-repeat right 0.85rem center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--text-primary);
  font: 500 0.9rem 'Plus Jakarta Sans', sans-serif;
  padding: 0.72rem 2.2rem 0.72rem 0.85rem;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.tp-select:focus {
  outline: 0;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow);
}

.tp-select option {
  background: #151515;
  color: #FFFFFF;
}

/* segmented control */
.tp-seg {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 3px;
  padding: 3px;
  background: #0D0D0D;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.tp-seg label {
  position: relative;
  cursor: pointer;
}

.tp-seg input,
.tp-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.tp-seg span {
  display: block;
  padding: 0.5rem 0.95rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: background var(--transition), color var(--transition);
}

.tp-seg label:hover span { color: var(--text-primary); }
.tp-seg input:checked + span { background: var(--orange); color: #000; }
.tp-seg input:focus-visible + span,
.tp-choice input:focus-visible + .tp-choice__box {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

/* radio cards: stacked, side by side only when the form column is wide */
.tp-choices {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

@media (min-width: 1200px) {
  .tp-choices { grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
}

.tp-choice {
  position: relative;
  display: block;
  cursor: pointer;
}

.tp-choice__box {
  display: block;
  height: 100%;
  background: #0D0D0D;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.85rem 0.9rem;
  transition: border-color var(--transition), background var(--transition);
}

.tp-choice:hover .tp-choice__box { border-color: rgba(255, 255, 255, 0.22); }

.tp-choice input:checked + .tp-choice__box {
  border-color: var(--orange);
  background: rgba(243, 156, 18, 0.07);
}

.tp-choice__title {
  position: relative;
  display: block;
  padding-left: 1.4rem;
  margin-bottom: 0.3rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
}

.tp-choice__title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.18rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.25);
  transition: border var(--transition);
}

.tp-choice input:checked + .tp-choice__box .tp-choice__title::before {
  border: 4px solid var(--orange);
}

.tp-choice__desc {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* chips */
.tp-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.5rem;
}

.tp-chip {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--text-muted);
  font: 600 0.75rem 'Plus Jakarta Sans', sans-serif;
  padding: 0.25rem 0.65rem;
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.tp-chip:hover { color: var(--text-primary); border-color: rgba(255, 255, 255, 0.2); }
.tp-chip:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }
.tp-chip.is-on { color: var(--orange); border-color: var(--border-orange); background: rgba(243, 156, 18, 0.07); }

/* advanced options */
.tp-more {
  border-top: 1px solid var(--border);
  margin-top: 0.25rem;
  padding-top: 0.9rem;
}

.tp-more summary {
  cursor: pointer;
  list-style: none;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.tp-more summary::-webkit-details-marker { display: none; }

.tp-more summary::before {
  content: '+';
  display: inline-block;
  width: 1rem;
  color: var(--orange);
  font-weight: 700;
  transition: transform var(--transition);
}

.tp-more[open] summary { margin-bottom: 1rem; }
.tp-more[open] summary::before { transform: rotate(45deg); }
.tp-more summary:hover { color: var(--text-primary); }

/* === TOOL LAYOUT & RESULT PANEL (shared) === */
.tp-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 1.5rem;
  align-items: start;
}

/* sticky; scrolls inside itself when taller than a short laptop screen */
.tp-out {
  position: sticky;
  top: calc(var(--nav-h) + 1rem);
  max-height: calc(100vh - var(--nav-h) - 2rem);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(243, 156, 18, 0.3) transparent;
  background: linear-gradient(180deg, rgba(243, 156, 18, 0.07) 0%, rgba(243, 156, 18, 0.015) 45%), var(--bg-card);
  border: 1px solid var(--border-orange);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}

.tp-loaded {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.tp-result__label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.tp-result__value {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin: 0.35rem 0 0.5rem;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
}

.dlc.is-breached .tp-result__value { color: var(--red); }

.tp-result__why {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.tp-result__why strong { color: var(--text-primary); }

.tp-result__note {
  font-size: 0.75rem;
  font-style: italic;
  color: var(--text-muted);
  margin-top: 0.7rem;
  padding-top: 0.7rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
}

.tp-incomplete {
  display: none;
  font-size: 0.9rem;
  color: #F5B041;
  line-height: 1.55;
  margin: 0.5rem 0;
}

.tp-tool.is-incomplete .tp-incomplete { display: block; }

.tp-tool.is-incomplete .tp-result__value,
.tp-tool.is-incomplete .tp-result__why,
.tp-tool.is-incomplete .tp-block,
.tp-tool.is-incomplete .tp-extra {
  display: none;
}

.tp-block {
  border-top: 1px solid var(--border);
  margin-top: 0.95rem;
  padding-top: 0.95rem;
}

.tp-kicker {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

/* gauge: green = room left, red = used today */
.dlc-gauge__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.dlc-gauge__head strong {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--green);
  font-variant-numeric: tabular-nums;
}

.dlc.is-breached .dlc-gauge__head strong { color: var(--red); }

.dlc-gauge__track {
  height: 10px;
  background: rgba(231, 76, 60, 0.22);
  border-radius: 6px;
  overflow: hidden;
  margin: 0.6rem 0 0.45rem;
}

.dlc-gauge__fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #27AE60, #2ECC71);
  border-radius: 6px;
  transition: width 0.35s ease;
}

.dlc-gauge__fill.is-low { background: linear-gradient(90deg, #E67E22, #F39C12); }

.dlc-gauge__sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.tp-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.9rem;
}

.tp-stats div {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  padding: 0.6rem 0.75rem;
}

.tp-stats span {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.tp-stats strong {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.dlc-trade__value {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--orange);
  font-variant-numeric: tabular-nums;
}

.dlc-trade__why {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-top: 0.4rem;
}

.dlc-trade__why strong { color: var(--text-primary); }

.dlc-reset__main {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.dlc-reset__main strong {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-right: 0.3rem;
}

.dlc-reset__line {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.dlc-reset__line strong { color: var(--text-primary); }

.tp-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-top: 1.25rem;
}

.tp-share__btn {
  padding: 0.6rem 1.1rem;
  font-size: 0.85rem;
}

.tp-linkbtn {
  background: none;
  border: 0;
  color: var(--text-muted);
  font: 500 0.8rem 'Plus Jakarta Sans', sans-serif;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.tp-linkbtn:hover { color: var(--text-primary); }

.tp-share__out {
  flex-basis: 100%;
}

.tp-share__out p {
  font-size: 0.78rem;
  color: var(--green);
  margin-bottom: 0.4rem;
}

.tp-share__out input {
  width: 100%;
  background: #0D0D0D;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text-secondary);
  font: 0.75rem ui-monospace, SFMono-Regular, Menlo, monospace;
  padding: 0.5rem 0.6rem;
}

/* comparison + insights: side by side only when the table fits */
.tp-extra {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 1.25rem;
}

@media (min-width: 1200px) {
  .tp-extra { grid-template-columns: 1.1fr 1fr; }
}

.tp-table-wrap {
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
}

.tp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  font-variant-numeric: tabular-nums;
}

.tp-table th,
.tp-table td {
  text-align: left;
  padding: 0.6rem 0.5rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  white-space: nowrap;
}

.tp-table thead th {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.tp-table tbody th {
  color: var(--text-primary);
  font-weight: 600;
}

.tp-table tr.is-sel th,
.tp-table tr.is-sel td {
  background: rgba(243, 156, 18, 0.07);
  color: var(--text-primary);
}

.tp-table td.is-neg { color: var(--red); }

.tp-tag {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.05rem 0.45rem;
  border: 1px solid var(--border-orange);
  border-radius: 20px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--orange);
  vertical-align: 1px;
}

.tp-insights {
  display: grid;
  gap: 0.75rem;
}

.tp-insights li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.tp-insights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.tp-insights strong { color: var(--text-primary); }

.tp-tool .tp-cta { margin: 0 0 1rem; }

/* a card that spans the whole extra grid */
.tp-card--wide { grid-column: 1 / -1; }

/* === CHALLENGE COST CALCULATOR === */
/* range: first try (left) to the 9-in-10 case (right), typical and average marked */
.ccc-range__track {
  position: relative;
  height: 10px;
  margin: 0.7rem 0 0.9rem;
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(46, 204, 113, 0.55) 0%, rgba(243, 156, 18, 0.55) 55%, rgba(231, 76, 60, 0.55) 100%);
}

.ccc-range__mark {
  position: absolute;
  top: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: left 0.35s ease;
}

.ccc-range__mark--mid {
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.55);
}

.ccc-range__mark--avg {
  background: transparent;
  border: 3px solid var(--orange);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.55);
}

.ccc-range__labels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.ccc-range__labels div:nth-child(2) { text-align: center; }
.ccc-range__labels div:nth-child(3) { text-align: right; }

.ccc-range__labels span,
.ccc-range__labels em {
  display: block;
  font-size: 0.72rem;
  font-style: normal;
  color: var(--text-muted);
}

.ccc-range__labels strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.ccc-range__legend {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.6rem;
}

.ccc-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  margin: 0 0.3rem 0 0.6rem;
  vertical-align: -1px;
}

.ccc-dot:first-child { margin-left: 0; }
.ccc-dot--mid { background: #FFFFFF; }
.ccc-dot--avg { border: 2px solid var(--orange); }

.ccc-cap strong { font-size: 1rem; }

.ccc-zero { color: var(--green); }

.ccc-guarantee__note {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-top: 0.7rem;
}

/* cumulative chance bars in the attempt table */
.ccc-barcell {
  font-variant-numeric: tabular-nums;
}

.ccc-bar {
  display: inline-block;
  width: 90px;
  height: 6px;
  margin-right: 0.6rem;
  vertical-align: middle;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.ccc-bar span {
  display: block;
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, #27AE60, #2ECC71);
}

/* === GUIDE === */
.tp-guide {
  max-width: 780px;
  padding-top: 2.5rem;
}

.article-body .tp-formula {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.85rem;
  color: var(--text-primary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  overflow-x: auto;
  white-space: nowrap;
}

.tp-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

/* === MOBILE SUMMARY BAR === */
.tp-sticky { display: none; }

/* === RESPONSIVE === */
@media (max-width: 1023px) {
  .tp-grid { grid-template-columns: 1fr; gap: 0; }
  .tp-out { position: static; max-height: none; overflow: visible; }

  .tp-sticky {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 900;
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    background: rgba(17, 17, 17, 0.96);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-orange);
    border-radius: 12px;
    padding: 0.7rem 0.9rem;
    color: var(--text-secondary);
    font: 500 0.78rem 'Plus Jakarta Sans', sans-serif;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .tp-sticky strong { color: var(--text-primary); font-weight: 700; }

  .tp-result-visible .tp-sticky {
    opacity: 0;
    transform: translateY(130%);
    pointer-events: none;
  }

  .tool-body .footer { padding-bottom: 6rem; }
}

/* wide tables become stacked cards on phones; compact ones (3 short columns) stay tables */
@media (max-width: 600px) {
  .tp-table:not(.tp-table--compact) thead { display: none; }
  .tp-table:not(.tp-table--compact),
  .tp-table:not(.tp-table--compact) tbody,
  .tp-table:not(.tp-table--compact) tr,
  .tp-table:not(.tp-table--compact) th,
  .tp-table:not(.tp-table--compact) td { display: block; width: 100%; }
  .tp-table:not(.tp-table--compact) tr { border-bottom: 1px solid var(--border); padding: 0.55rem 0; }
  .tp-table:not(.tp-table--compact) th,
  .tp-table:not(.tp-table--compact) td { border: 0; padding: 0.2rem 0.6rem; white-space: normal; }
  .tp-table:not(.tp-table--compact) td { display: flex; justify-content: space-between; gap: 1rem; }
  .tp-table:not(.tp-table--compact) td::before { content: attr(data-label); color: var(--text-muted); font-size: 0.78rem; }
  .tp-table--compact th,
  .tp-table--compact td { padding: 0.5rem 0.35rem; font-size: 0.8rem; white-space: normal; }
  .tp-table--compact thead th { font-size: 0.66rem; }
  .ccc-bar { width: 44px; margin-right: 0.4rem; }
}

@media (max-width: 767px) {
  .tool-page { padding-top: 6.5rem; }
  .tp-row,
  .tp-row--3 { grid-template-columns: 1fr; }
  .tp-card,
  .tp-out { padding: 1.15rem; }
  .tp-seg { display: flex; }
  .tp-seg label { flex: 1; text-align: center; }
}
