.tkf-app,
.tkf-app * {
  box-sizing: border-box;
}

.tkf-app {
  --tkf-blue: #1e3a8a;
  --tkf-blue-soft: #eaf2ff;
  --tkf-green: #18a957;
  --tkf-green-dark: #108243;
  --tkf-text: #172033;
  --tkf-muted: #64748b;
  --tkf-line: #e5eaf2;
  --tkf-soft: #f6f8fb;
  --tkf-card: #ffffff;
  --tkf-danger: #d93025;
  color: var(--tkf-text);
  font-family: inherit;
}

.tkf-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 1.4rem;
  align-items: start;
}

.tkf-filter-panel {
  position: sticky;
  top: 1rem;
  align-self: start;
  background: #ffffff;
  border: 1px solid var(--tkf-line);
  border-radius: 18px;
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.tkf-filter-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.tkf-eyebrow {
  margin: 0 0 .15rem;
  color: var(--tkf-muted);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.tkf-filter-head h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.2;
  color: var(--tkf-blue);
}

.tkf-icon-button {
  display: none;
  appearance: none;
  border: 0;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--tkf-soft);
  color: var(--tkf-text);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.tkf-filter-block {
  padding: .72rem 0;
  border-top: 1px solid var(--tkf-line);
}

.tkf-filter-label {
  display: block;
  margin: 0 0 .55rem;
  font-size: .86rem;
  font-weight: 800;
  color: var(--tkf-text);
}

.tkf-filter-select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--tkf-line);
  border-radius: 12px;
  background: #fff;
  color: var(--tkf-text);
  padding: .62rem 2.15rem .62rem .75rem;
  font: inherit;
  font-weight: 750;
  cursor: pointer;
}

.tkf-filter-select:focus {
  outline: 2px solid rgba(30, 58, 138, .18);
  border-color: #93b4f5;
}

.tkf-filter-help {
  margin: .45rem 0 0;
  color: var(--tkf-muted);
  font-size: .8rem;
  line-height: 1.35;
}

.tkf-chip {
  position: relative;
  display: flex;
  align-items: center;
  gap: .55rem;
  width: 100%;
  min-height: 39px;
  margin: 0 0 .38rem;
  padding: .52rem .62rem;
  border: 1px solid var(--tkf-line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.tkf-chip:hover {
  border-color: #b8c7df;
  background: #fbfdff;
}

.tkf-chip input {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin: 0;
  accent-color: var(--tkf-blue);
}

.tkf-chip span {
  flex: 1 1 auto;
  font-size: .91rem;
  font-weight: 650;
  line-height: 1.25;
}

.tkf-chip em {
  flex: 0 0 auto;
  min-width: 25px;
  padding: .18rem .45rem;
  border-radius: 999px;
  background: var(--tkf-soft);
  color: var(--tkf-muted);
  font-size: .76rem;
  font-style: normal;
  font-weight: 800;
  text-align: center;
}

.tkf-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .42rem;
}

.tkf-feature-grid .tkf-chip {
  min-height: 38px;
  margin: 0;
  padding: .48rem .5rem;
  gap: .4rem;
}

.tkf-feature-grid .tkf-chip span {
  font-size: .76rem;
  line-height: 1.15;
}

.tkf-feature-grid .tkf-chip em {
  min-width: 22px;
  padding: .12rem .34rem;
  font-size: .7rem;
}

.tkf-rating-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .38rem;
}

.tkf-rating-pill {
  justify-content: center;
  min-height: 38px;
  margin: 0;
  padding: .48rem .45rem;
}

.tkf-rating-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.tkf-rating-pill span {
  flex: 0 1 auto;
  text-align: center;
  font-size: .78rem;
  line-height: 1.1;
}

.tkf-chip:has(input:checked) {
  border-color: #93b4f5;
  background: var(--tkf-blue-soft);
}

.tkf-panel-actions {
  display: grid;
  gap: .55rem;
  padding-top: .85rem;
  border-top: 1px solid var(--tkf-line);
}

.tkf-apply-filter,
.tkf-reset {
  width: 100%;
  appearance: none;
  border-radius: 12px;
  padding: .78rem 1rem;
  font-weight: 850;
  cursor: pointer;
}

.tkf-apply-filter {
  display: none;
  border: 0;
  background: var(--tkf-blue);
  color: #fff;
}

.tkf-reset {
  border: 1px solid var(--tkf-line);
  background: var(--tkf-soft);
  color: var(--tkf-text);
}

.tkf-reset:hover {
  background: #eef3f8;
}

.tkf-feed-wrap {
  min-width: 0;
}

.tkf-toolbar {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.tkf-filter-toggle {
  display: none;
  appearance: none;
  border: 0;
  min-height: 38px;
  border-radius: 999px;
  background: var(--tkf-blue);
  color: #fff;
  padding: .46rem .62rem;
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(30, 58, 138, .18);
  line-height: 1;
  white-space: nowrap;
}

.tkf-filter-toggle em {
  margin-left: .3rem;
  padding: .18rem .36rem;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  color: #fff;
  font-size: .72rem;
  font-style: normal;
  font-weight: 800;
}

.tkf-filter-toggle strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  margin-left: .28rem;
  border-radius: 999px;
  background: #fff;
  color: var(--tkf-blue);
  font-size: .7rem;
}

.tkf-toolbar-meta {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-left: auto;
}

.tkf-result-count {
  margin: 0;
  color: var(--tkf-muted);
  font-size: .9rem;
  font-weight: 700;
  white-space: nowrap;
}

.tkf-sort-label {
  display: flex;
  align-items: center;
  gap: .45rem;
  color: var(--tkf-muted);
  font-size: .86rem;
  font-weight: 800;
}

.tkf-sort-label select {
  min-height: 42px;
  max-width: 220px;
  border: 1px solid var(--tkf-line);
  border-radius: 12px;
  background: #fff;
  color: var(--tkf-text);
  padding: .55rem 2rem .55rem .7rem;
  font: inherit;
  font-weight: 700;
}

.tkf-active-summary {
  margin: 0 0 1rem;
  padding: .75rem .9rem;
  border: 1px solid #cfe0ff;
  border-radius: 12px;
  background: var(--tkf-blue-soft);
  color: var(--tkf-blue);
  font-size: .9rem;
  font-weight: 750;
}

.tkf-card-list {
  display: grid;
  gap: 1.3rem;
}

.tkf-card {
  display: grid;
  grid-template-columns: minmax(210px, 290px) minmax(0, 1fr);
  gap: 1.3rem;
  width: 100%;
  border: 1px solid var(--tkf-line);
  border-radius: 20px;
  padding: 1.25rem;
  background: var(--tkf-card);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.055);
}

.tkf-card[hidden] {
  display: none !important;
}

.tkf-card-media {
  min-width: 0;
}

.tkf-card-image {
  display: block;
  width: 100%;
  max-width: 260px;
  aspect-ratio: 250 / 157;
  object-fit: contain;
  margin: 0 0 1rem;
  padding: .65rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #eaf7fb, #f7fbff);
}

.tkf-score {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .7rem;
  margin-bottom: .75rem;
  padding: .7rem .75rem;
  border-radius: 12px;
  background: var(--tkf-soft);
}

.tkf-score span {
  color: var(--tkf-muted);
  font-size: .83rem;
  font-weight: 750;
}

.tkf-stars {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: .4rem;
  line-height: 1;
  white-space: nowrap;
}

.tkf-stars-wrap {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 5.55em;
  height: 1.05em;
  line-height: 1;
  overflow: hidden;
}

.tkf-stars-bg,
.tkf-stars-fill {
  position: absolute;
  inset: 0 auto auto 0;
  display: block;
  width: 5.55em;
  overflow: hidden;
  color: #d5deea;
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: .08em;
  white-space: nowrap;
}

.tkf-stars-fill {
  color: #f4b400;
  text-shadow: 0 1px 0 rgba(120, 75, 0, .12);
}

.tkf-stars strong {
  display: block;
  margin: 0;
  color: var(--tkf-blue);
  font-size: .82rem;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}

.tkf-primary-button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  margin-bottom: .65rem;
  padding: .8rem 1rem;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--tkf-green), var(--tkf-green-dark));
  color: #fff !important;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(24, 169, 87, .18);
  transition: transform .18s ease, box-shadow .18s ease;
}

.tkf-primary-button:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.28) 45%, transparent 70%);
  transform: translateX(-115%);
  transition: transform .55s ease;
}

.tkf-primary-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(24, 169, 87, .24);
}

.tkf-primary-button:hover:before {
  transform: translateX(115%);
}

.tkf-ad-disclaimer {
  margin: -.35rem 0 .55rem;
  color: var(--tkf-muted);
  font-size: .72rem;
  line-height: 1.35;
  text-align: center;
}

.tkf-review-link {
  display: inline-flex;
  color: var(--tkf-blue);
  font-size: .92rem;
  font-weight: 800;
  text-decoration: none;
}

.tkf-review-link:hover {
  text-decoration: underline;
}

.tkf-card-content {
  min-width: 0;
}

.tkf-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .65rem;
}

.tkf-title-row h2 {
  margin: 0;
  color: var(--tkf-blue);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.18;
}

.tkf-fee-pill {
  flex: 0 0 auto;
  max-width: 160px;
  padding: .38rem .6rem;
  border-radius: 999px;
  background: #ecfdf3;
  color: #157347;
  font-size: .78rem;
  font-weight: 850;
  text-align: center;
}

.tkf-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .42rem;
  margin-bottom: .85rem;
}

.tkf-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: .32rem .58rem;
  border: 1px solid var(--tkf-line);
  border-radius: 999px;
  background: #fff;
  color: #334155;
  font-size: .8rem;
  font-weight: 750;
}

.tkf-description {
  margin: 0 0 1rem;
  color: #334155;
  font-size: 1rem;
  line-height: 1.55;
}

.tkf-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .75rem;
  margin-bottom: 1rem;
}

.tkf-facts div {
  min-width: 0;
  padding: .78rem .8rem;
  border: 1px solid var(--tkf-line);
  border-radius: 14px;
  background: var(--tkf-soft);
}

.tkf-facts span {
  display: block;
  margin-bottom: .18rem;
  color: var(--tkf-muted);
  font-size: .78rem;
  font-weight: 800;
}

.tkf-facts strong {
  display: block;
  color: var(--tkf-text);
  font-size: .95rem;
  line-height: 1.25;
}

.tkf-accordion-wrap {
  display: grid;
  gap: .55rem;
}

.tkf-accordion {
  border: 1px solid var(--tkf-line);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.tkf-accordion summary {
  cursor: pointer;
  padding: .86rem .95rem;
  color: var(--tkf-text);
  font-weight: 850;
  list-style: none;
}

.tkf-accordion summary::-webkit-details-marker {
  display: none;
}

.tkf-accordion summary:after {
  content: "+";
  float: right;
  color: var(--tkf-blue);
  font-weight: 900;
}

.tkf-accordion[open] summary {
  background: var(--tkf-soft);
}

.tkf-accordion[open] summary:after {
  content: "−";
}

.tkf-accordion-body {
  padding: .95rem;
  border-top: 1px solid var(--tkf-line);
  color: #334155;
  line-height: 1.55;
}

.tkf-accordion-body p {
  margin: 0;
}

.tkf-pros-cons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.tkf-list {
  margin: .55rem 0 0;
  padding-left: 1.05rem;
}

.tkf-list li {
  margin-bottom: .42rem;
}

.tkf-list-good li::marker {
  color: #15803d;
}

.tkf-list-bad li::marker {
  color: #b91c1c;
}

.tkf-detail-section + .tkf-detail-section {
  margin-top: 1rem;
}

.tkf-detail-section h4 {
  margin: 0 0 .55rem;
  color: var(--tkf-blue);
}

.tkf-detail-section dl {
  display: grid;
  gap: .35rem;
  margin: 0;
}

.tkf-detail-section dl div {
  display: grid;
  grid-template-columns: minmax(120px, 210px) minmax(0, 1fr);
  gap: .75rem;
  padding: .42rem 0;
  border-bottom: 1px solid #eef2f7;
}

.tkf-detail-section dt {
  color: var(--tkf-muted);
  font-weight: 800;
}

.tkf-detail-section dd {
  margin: 0;
}

.tkf-warning {
  margin-top: 1rem;
}

.tkf-disclaimer {
  margin: 0 0 .65rem;
  color: #475569;
  font-size: .88rem;
  font-style: italic;
  line-height: 1.5;
}

.tkf-riskbox {
  display: flex;
  gap: .75rem;
  padding: .85rem;
  border: 1px solid #f4c7c3;
  border-radius: 14px;
  background: #fff8f7;
}

.tkf-risk-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--tkf-danger);
  color: #fff;
  font-weight: 900;
  line-height: 1;
}

.tkf-riskbox strong {
  display: block;
  margin-bottom: .22rem;
  color: var(--tkf-danger);
}

.tkf-riskbox p {
  margin: 0;
  color: #334155;
  font-size: .9rem;
  line-height: 1.45;
}

.tkf-empty,
.tkf-message {
  padding: 1rem;
  border: 1px solid var(--tkf-line);
  border-radius: 14px;
  background: var(--tkf-soft);
  color: var(--tkf-text);
  font-weight: 750;
}


.tkr-review-hero,
.tkr-review-hero * {
  box-sizing: border-box;
}

.tkr-review-hero {
  --tkf-blue: #1e3a8a;
  --tkf-green: #18a957;
  --tkf-green-dark: #108243;
  --tkf-text: #172033;
  --tkf-muted: #64748b;
  --tkf-line: #e5eaf2;
  --tkf-soft: #f6f8fb;
  --tkf-danger: #d93025;
  color: var(--tkf-text);
  font-family: inherit;
  margin: 1.25rem 0 1.75rem;
}

.tkr-review-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 330px);
  gap: 2rem;
  align-items: center;
  padding: clamp(1.15rem, 3vw, 2rem);
  border: 1px solid var(--tkf-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.065);
}

.tkr-review-eyebrow {
  margin: 0 0 .35rem;
  color: var(--tkf-muted);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.tkr-review-title {
  margin: 0 0 .65rem;
  color: var(--tkf-blue);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  line-height: 1.1;
}

.tkr-review-rating {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin: 0 0 .8rem;
  padding: .5rem .7rem;
  border: 1px solid var(--tkf-line);
  border-radius: 999px;
  background: var(--tkf-soft);
}

.tkr-review-rating > span {
  color: var(--tkf-muted);
  font-size: .82rem;
  font-weight: 850;
}

.tkr-review-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .42rem;
  margin-bottom: .85rem;
}

.tkr-review-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: .32rem .62rem;
  border: 1px solid var(--tkf-line);
  border-radius: 999px;
  background: #fff;
  color: #334155;
  font-size: .82rem;
  font-weight: 800;
}

.tkr-review-description {
  max-width: 760px;
  margin: 0 0 1rem;
  color: #334155;
  font-size: 1.03rem;
  line-height: 1.65;
}

.tkr-review-pros {
  display: grid;
  gap: .45rem;
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}

.tkr-review-pros li {
  position: relative;
  padding-left: 1.55rem;
  line-height: 1.45;
}

.tkr-review-pros li:before {
  content: "";
  position: absolute;
  left: 0;
  top: .35rem;
  width: .72rem;
  height: .72rem;
  border-radius: 999px;
  background: #7c5cc4;
  box-shadow: inset 0 0 0 3px #fff, 0 0 0 1px rgba(124, 92, 196, .35);
}

.tkr-review-stations {
  margin: 0 0 1.1rem;
  color: #475569;
  font-size: .93rem;
  line-height: 1.45;
}

.tkr-review-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: .75rem 1rem;
}

.tkr-review-actions > div {
  flex: 0 1 230px;
}

.tkr-review-primary {
  margin-bottom: .45rem;
}

.tkr-review-ad {
  margin: 0;
  text-align: left;
}

.tkr-review-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .75rem 1.1rem;
  border: 1px solid #2b63dc;
  border-radius: 12px;
  color: #2b63dc;
  font-weight: 850;
  text-decoration: none;
}

.tkr-review-secondary:hover {
  background: #eef4ff;
}

.tkr-review-side {
  min-width: 0;
}

.tkr-review-image-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.tkr-review-image {
  display: block;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 250 / 157;
  object-fit: contain;
  padding: .65rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #eaf7fb, #f7fbff);
}

.tkr-review-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .65rem;
}

.tkr-review-facts div {
  padding: .78rem .85rem;
  border: 1px solid var(--tkf-line);
  border-radius: 14px;
  background: var(--tkf-soft);
}

.tkr-review-facts span {
  display: block;
  margin-bottom: .18rem;
  color: var(--tkf-muted);
  font-size: .78rem;
  font-weight: 850;
}

.tkr-review-facts strong {
  display: block;
  color: var(--tkf-text);
  font-size: .98rem;
  line-height: 1.22;
}

.tkr-review-legal {
  max-width: 900px;
  margin: 1rem auto 0;
}

.tkr-review-disclaimer {
  margin: 0 0 .8rem;
  color: #334155;
  font-size: .9rem;
  font-style: italic;
  line-height: 1.55;
}

.tkr-review-risk {
  margin-top: .7rem;
}

@media (max-width: 760px) {
  .tkr-review-card {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    border-radius: 20px;
  }

  .tkr-review-side {
    order: -1;
  }

  .tkr-review-image {
    max-width: 230px;
  }

  .tkr-review-rating {
    max-width: 100%;
    flex-wrap: wrap;
    border-radius: 16px;
  }

  .tkr-review-actions,
  .tkr-review-actions > div,
  .tkr-review-secondary {
    width: 100%;
  }

  .tkr-review-ad {
    text-align: center;
  }
}

@media (max-width: 430px) {
  .tkr-review-card {
    padding: 1rem;
  }

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

.tkf-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(15, 23, 42, .45);
  backdrop-filter: blur(2px);
}

body.tkf-lock-scroll {
  overflow: hidden;
}

@media (max-width: 980px) {
  .tkf-layout {
    grid-template-columns: 1fr;
  }

  .tkf-filter-panel {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 9999;
    width: min(88vw, 390px);
    height: 100dvh;
    padding: 1rem;
    border-radius: 0 22px 22px 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateX(-105%);
    transition: transform .24s ease;
  }

  .tkf-panel-actions {
    position: sticky;
    bottom: -1rem;
    margin: 1rem -1rem -1rem;
    padding: .75rem 1rem 1rem;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(10px);
    box-shadow: 0 -10px 26px rgba(15,23,42,.08);
  }

  .tkf-apply-filter {
    display: block;
  }

  .tkf-app.is-filter-open .tkf-filter-panel {
    transform: translateX(0);
  }

  .tkf-icon-button,
  .tkf-filter-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .tkf-toolbar {
    position: sticky;
    top: 0;
    z-index: 10;
    margin: 0 -1px 1rem;
    padding: .65rem 0;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(10px);
  }
}

@media (max-width: 760px) {
  .tkf-toolbar {
    align-items: stretch;
    gap: .7rem;
  }

  .tkf-toolbar-meta {
    flex: 1 1 auto;
    justify-content: flex-end;
    gap: .55rem;
  }

  .tkf-result-count {
    display: none;
  }

  .tkf-sort-label span {
    display: none;
  }

  .tkf-sort-label select {
    width: min(46vw, 210px);
    min-height: 42px;
    font-size: .9rem;
  }

  .tkf-card {
    grid-template-columns: 1fr;
    padding: 1rem;
    border-radius: 18px;
  }

  .tkf-card-image {
    max-width: 220px;
    margin-left: auto;
    margin-right: auto;
  }

  .tkf-title-row {
    display: grid;
    gap: .55rem;
  }

  .tkf-fee-pill {
    max-width: 100%;
    justify-self: start;
  }

  .tkf-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tkf-pros-cons {
    grid-template-columns: 1fr;
  }

  .tkf-detail-section dl div {
    grid-template-columns: 1fr;
    gap: .1rem;
  }
}

@media (max-width: 430px) {
  .tkf-filter-panel {
    width: 92vw;
  }

  .tkf-filter-toggle {
    padding: .52rem .6rem;
    font-size: .9rem;
  }

  .tkf-filter-toggle em {
    font-size: .68rem;
  }

  .tkf-sort-label select {
    width: 48vw;
    padding-left: .55rem;
  }

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