.tbmp-public-page {
  background: #f7f9fb;
}

.tbmp-wrap {
  --tbmp-primary: #0c8b83;
  --tbmp-primary-dark: #087169;
  --tbmp-primary-soft: #eaf8f6;
  --tbmp-warm: #f5b85a;
  --tbmp-warm-soft: #fff8eb;
  --tbmp-ink: #172235;
  --tbmp-muted: #667085;
  --tbmp-border: #e3e8ee;
  --tbmp-surface: #ffffff;
  max-width: 1320px;
  margin: 0 auto;
  padding: 42px 22px 88px;
  color: var(--tbmp-ink);
}

.tbmp-wrap *,
.tbmp-profile-packages * {
  box-sizing: border-box;
}

.tbmp-eyebrow {
  display: inline-flex;
  color: var(--tbmp-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  line-height: 1.3;
  text-transform: uppercase;
}

.tbmp-btn {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 11px;
  font: inherit;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.tbmp-btn:hover {
  transform: translateY(-1px);
}

.tbmp-btn-primary {
  background: var(--tbmp-primary);
  color: #fff;
}

.tbmp-btn-primary:hover {
  background: var(--tbmp-primary-dark);
  color: #fff;
}

.tbmp-btn-secondary {
  background: #edf7f6;
  color: var(--tbmp-primary);
}

.tbmp-btn-secondary:hover {
  background: #dff2ef;
  color: var(--tbmp-primary-dark);
}

.tbmp-btn-ghost {
  border-color: var(--tbmp-border);
  background: #fff;
  color: var(--tbmp-ink);
}

.tbmp-btn-ghost:hover {
  border-color: #cbd5df;
  color: var(--tbmp-primary-dark);
}

.tbmp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  color: var(--tbmp-muted);
  font-size: 13px;
}

.tbmp-breadcrumb a {
  color: var(--tbmp-primary);
  text-decoration: none;
}

/* Archive */
.tbmp-archive-hero {
  margin-bottom: 24px;
  padding: 38px;
  border: 1px solid #e0eeeb;
  border-radius: 24px;
  background: linear-gradient(135deg, #eaf8f6 0%, #fff8eb 100%);
}

.tbmp-archive-hero h1,
.tbmp-single h1 {
  margin: 8px 0 14px;
  font-size: clamp(34px, 4.7vw, 58px);
  line-height: 1.05;
  letter-spacing: -.035em;
}

.tbmp-archive-hero p,
.tbmp-lead {
  max-width: 760px;
  margin: 0;
  color: var(--tbmp-muted);
  font-size: 17px;
  line-height: 1.7;
}

.tbmp-filter {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 28px;
  padding: 18px;
  border: 1px solid var(--tbmp-border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(23, 34, 53, .05);
}

.tbmp-filter label,
.tbmp-inquiry-card label {
  display: grid;
  gap: 7px;
}

.tbmp-filter label span,
.tbmp-inquiry-card label > span {
  font-size: 13px;
  font-weight: 700;
}

.tbmp-filter select,
.tbmp-inquiry-card input,
.tbmp-inquiry-card textarea {
  width: 100%;
  border: 1px solid var(--tbmp-border);
  border-radius: 11px;
  background: #fff;
  padding: 12px;
  color: var(--tbmp-ink);
  font: inherit;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.tbmp-filter select:focus,
.tbmp-inquiry-card input:focus,
.tbmp-inquiry-card textarea:focus {
  border-color: var(--tbmp-primary);
  box-shadow: 0 0 0 3px rgba(12, 139, 131, .12);
}

.tbmp-filter-actions {
  display: flex;
  align-items: end;
  gap: 8px;
}

/* Reusable cards */
.tbmp-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.tbmp-card {
  overflow: hidden;
  border: 1px solid var(--tbmp-border);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(23, 34, 53, .06);
}

.tbmp-card-image,
.tbmp-profile-package-image {
  display: grid;
  overflow: hidden;
  place-items: center;
  aspect-ratio: 16 / 10;
  background: linear-gradient(145deg, #eaf6f4, #f5faf9);
  color: var(--tbmp-primary);
  text-decoration: none;
}

.tbmp-card-image img,
.tbmp-profile-package-image img,
.tbmp-single-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tbmp-image-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 100%;
  place-content: center;
  justify-items: center;
  gap: 7px;
  padding: 24px;
  color: var(--tbmp-primary);
  text-align: center;
}

.tbmp-image-placeholder svg {
  width: 62px;
  height: 62px;
  margin-bottom: 4px;
  fill: rgba(12, 139, 131, .05);
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tbmp-image-placeholder strong {
  color: #285f5b;
  font-size: 15px;
  line-height: 1.3;
}

.tbmp-image-placeholder small {
  color: #71918f;
  font-size: 12px;
}

.tbmp-card-body {
  display: grid;
  gap: 11px;
  padding: 20px;
}

.tbmp-card-body h2,
.tbmp-card-body h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.28;
}

.tbmp-card-body h2 a,
.tbmp-card-body h3 a {
  color: var(--tbmp-ink);
  text-decoration: none;
}

.tbmp-card-body p {
  margin: 0;
  color: var(--tbmp-muted);
  line-height: 1.6;
}

.tbmp-card-meta {
  color: var(--tbmp-primary);
  font-size: 12px;
  font-weight: 800;
}

.tbmp-provider-line {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.tbmp-provider-link {
  color: var(--tbmp-muted);
  font-weight: 700;
  text-decoration: none;
}

.tbmp-verified-badge {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 4px;
  padding: 4px 7px;
  border-radius: 999px;
  background: #e8f7f3;
  color: var(--tbmp-primary);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.2;
}

.tbmp-pills {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.tbmp-pills span {
  padding: 6px 10px;
  border-radius: 999px;
  background: #f3f6f8;
  color: #526079;
  font-size: 12px;
  line-height: 1.25;
}

.tbmp-card footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: 7px;
}

.tbmp-card-price {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.tbmp-card-price small {
  color: var(--tbmp-muted);
  font-size: 11px;
  font-weight: 700;
}

.tbmp-card-price strong {
  color: var(--tbmp-ink);
  font-size: 16px;
  line-height: 1.25;
}

.tbmp-pagination {
  margin-top: 30px;
}

.tbmp-pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.tbmp-pagination a,
.tbmp-pagination span {
  padding: 8px 12px;
  border: 1px solid var(--tbmp-border);
  border-radius: 9px;
  background: #fff;
}

.tbmp-empty {
  padding: 54px;
  border: 1px solid var(--tbmp-border);
  border-radius: 20px;
  background: #fff;
  text-align: center;
}

/* Single package hero */
.tbmp-single-hero {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(360px, 1.22fr) minmax(300px, .86fr);
  gap: 26px;
  align-items: stretch;
  margin-bottom: 36px;
}

.tbmp-single-image {
  display: grid;
  min-height: 430px;
  overflow: hidden;
  place-items: center;
  border: 1px solid #deecea;
  border-radius: 24px;
  background: linear-gradient(145deg, #eaf6f4, #f7fbfa);
  color: var(--tbmp-primary);
}

.tbmp-single-intro {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 18px 0;
}

.tbmp-single-intro h1 {
  max-width: 650px;
}

.tbmp-provider-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 10px;
  max-width: 500px;
  padding: 14px 15px;
  border: 1px solid var(--tbmp-border);
  border-radius: 14px;
  background: #fff;
  color: var(--tbmp-ink);
  text-decoration: none;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.tbmp-provider-card:hover {
  border-color: #c9d8d7;
  box-shadow: 0 10px 26px rgba(23, 34, 53, .07);
  transform: translateY(-1px);
}

.tbmp-provider-card-copy {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.tbmp-provider-card-copy strong {
  overflow: hidden;
  color: var(--tbmp-ink);
  font-size: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tbmp-provider-card-copy small {
  color: var(--tbmp-muted);
  font-size: 12px;
}

.tbmp-provider-arrow {
  color: var(--tbmp-primary);
  font-size: 25px;
  line-height: 1;
}

.tbmp-lead {
  margin-top: 14px;
}

.tbmp-treatment-pills {
  margin-top: 12px;
}

.tbmp-hero-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 13px;
  max-width: 560px;
  margin-top: 19px;
  padding-top: 18px;
  border-top: 1px solid var(--tbmp-border);
}

.tbmp-hero-highlights > span {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #526079;
  font-size: 13px;
  line-height: 1.45;
}

.tbmp-hero-highlights i {
  color: var(--tbmp-primary);
  font-style: normal;
  font-weight: 900;
}

/* Summary / price card */
.tbmp-summary-card {
  display: grid;
  align-content: start;
  gap: 0;
  overflow: hidden;
  border: 1px solid #dfe7ec;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(23, 34, 53, .09);
}

.tbmp-summary-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid #e8edf1;
  background: linear-gradient(135deg, #f9fbfc 0%, #f3faf8 100%);
}

.tbmp-summary-head > span:first-child {
  color: var(--tbmp-ink);
  font-size: 14px;
  font-weight: 800;
}

.tbmp-summary-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #54706e;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.tbmp-summary-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--tbmp-warm);
  box-shadow: 0 0 0 4px rgba(245, 184, 90, .17);
}

.tbmp-price-block {
  display: grid;
  gap: 8px;
  padding: 23px 20px 20px;
}

.tbmp-price-block > span {
  color: var(--tbmp-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.tbmp-price-block > strong {
  color: var(--tbmp-ink);
  font-size: clamp(25px, 2.2vw, 34px);
  line-height: 1.12;
  letter-spacing: -.025em;
}

.tbmp-price-block.is-quote > strong {
  font-size: clamp(24px, 2vw, 31px);
}

.tbmp-price-block > small {
  color: var(--tbmp-muted);
  font-size: 12px;
  line-height: 1.55;
}

.tbmp-summary-list {
  display: grid;
  margin: 0 20px;
  border-top: 1px solid var(--tbmp-border);
}

.tbmp-summary-list > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--tbmp-border);
}

.tbmp-summary-list dt {
  color: var(--tbmp-muted);
  font-size: 12px;
}

.tbmp-summary-list dd {
  max-width: 170px;
  margin: 0;
  color: var(--tbmp-ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  text-align: end;
}

.tbmp-summary-next-step {
  margin: 16px 20px 0;
  padding: 12px 13px;
  border-radius: 11px;
  background: var(--tbmp-primary-soft);
  color: #356a66;
  font-size: 12px;
  line-height: 1.55;
}

.tbmp-safety {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 15px 20px 18px;
  color: #526079;
  font-size: 12px;
}

.tbmp-safety span {
  color: var(--tbmp-primary);
  font-weight: 900;
}

.tbmp-mobile-request-shortcut {
  display: none;
  margin: 16px 20px 0;
}

/* Content and inquiry */
.tbmp-single-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 30px;
  align-items: start;
}

.tbmp-content {
  display: grid;
  gap: 18px;
}

.tbmp-content-section,
.tbmp-inquiry-card,
.tbmp-related,
.tbmp-disclaimer {
  border: 1px solid var(--tbmp-border);
  border-radius: 19px;
  background: #fff;
  padding: 27px;
}

.tbmp-content-section {
  box-shadow: 0 8px 24px rgba(23, 34, 53, .025);
}

.tbmp-section-heading {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 17px;
}

.tbmp-section-heading > span {
  display: inline-grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border-radius: 9px;
  background: var(--tbmp-primary-soft);
  color: var(--tbmp-primary);
  font-size: 11px;
  font-weight: 900;
}

.tbmp-content h2,
.tbmp-inquiry-card h2,
.tbmp-related h2,
.tbmp-disclaimer h2 {
  margin: 0;
  color: var(--tbmp-ink);
  font-size: 24px;
  line-height: 1.28;
}

.tbmp-rich-text,
.tbmp-rich-text p,
.tbmp-content p,
.tbmp-text-block {
  color: #475467;
  line-height: 1.8;
}

.tbmp-rich-text > :first-child {
  margin-top: 0;
}

.tbmp-rich-text > :last-child {
  margin-bottom: 0;
}

.tbmp-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--tbmp-border);
  border-radius: 13px;
}

.tbmp-facts > div {
  padding: 14px 15px;
  border-bottom: 1px solid var(--tbmp-border);
}

.tbmp-facts > div:nth-child(odd) {
  border-inline-end: 1px solid var(--tbmp-border);
}

.tbmp-facts dt {
  color: var(--tbmp-muted);
  font-size: 12px;
}

.tbmp-facts dd {
  margin: 5px 0 0;
  color: var(--tbmp-ink);
  font-weight: 800;
}

.tbmp-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.tbmp-service-grid > div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid #e6efed;
  border-radius: 12px;
  background: #f8fbfa;
  color: #405450;
}

.tbmp-service-grid span {
  color: var(--tbmp-primary);
  font-weight: 900;
}

.tbmp-text-section {
  position: relative;
}

.tbmp-specialist-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.tbmp-specialist-grid a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--tbmp-border);
  border-radius: 12px;
  color: var(--tbmp-ink);
  font-weight: 700;
  text-decoration: none;
}

.tbmp-specialist-grid img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.tbmp-disclaimer {
  border-color: #f0d7a7;
  background: var(--tbmp-warm-soft);
}

.tbmp-disclaimer .tbmp-section-heading > span {
  background: #fff0cf;
  color: #96620d;
}

.tbmp-disclaimer p {
  margin: 0;
}

.tbmp-inquiry-card {
  position: sticky;
  top: 22px;
  display: grid;
  gap: 12px;
  box-shadow: 0 14px 38px rgba(23, 34, 53, .06);
}

.admin-bar .tbmp-inquiry-card {
  top: 54px;
}

.tbmp-form-eyebrow {
  color: var(--tbmp-primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.tbmp-inquiry-card > p {
  margin: 0;
  color: #475467;
  line-height: 1.65;
}

.tbmp-form-safety {
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--tbmp-warm-soft);
  color: #75520c !important;
  font-size: 12px;
  line-height: 1.55 !important;
}

.tbmp-inquiry-card form {
  display: grid;
  gap: 12px;
  margin-top: 3px;
}

.tbmp-inquiry-card button {
  width: 100%;
}

.tbmp-consent {
  display: flex !important;
  align-items: flex-start;
  gap: 9px;
}

.tbmp-consent input {
  width: auto !important;
  margin-top: 4px;
}

.tbmp-hp {
  position: absolute !important;
  left: -9999px !important;
}

.tbmp-form-notice {
  padding: 11px;
  border-radius: 10px;
}

.tbmp-form-notice.is-success {
  background: #e6f7ef;
  color: #087247;
}

.tbmp-form-notice.is-error {
  background: #fff0f2;
  color: #9c2b3d;
}

.tbmp-form-footnote {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--tbmp-border);
  color: var(--tbmp-muted);
  font-size: 11px;
  line-height: 1.5;
}

.tbmp-form-footnote span {
  color: var(--tbmp-primary);
  font-weight: 900;
}

.tbmp-related {
  margin-top: 34px;
}

.tbmp-related .tbmp-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Provider profile packages */
.tbmp-profile-packages {
  --tbmp-primary: #0c8b83;
  --tbmp-primary-dark: #087169;
  --tbmp-ink: #172235;
  --tbmp-muted: #667085;
  --tbmp-border: #e3e8ee;
  margin: 0;
  padding: 27px;
  border: 1px solid var(--tbmp-border);
  border-radius: 18px;
  background: #fff;
  color: var(--tbmp-ink);
}

.tbmp-profile-packages-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.tbmp-profile-packages-head h2 {
  margin: 5px 0 8px;
  font-size: 26px;
  line-height: 1.25;
}

.tbmp-profile-packages-head p {
  max-width: 760px;
  margin: 0;
  color: var(--tbmp-muted);
  line-height: 1.65;
}

.tbmp-profile-package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 350px));
  gap: 18px;
}

.tbmp-profile-package-card {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--tbmp-border);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(23, 34, 53, .06);
}

.tbmp-profile-package-body {
  display: grid;
  flex: 1;
  gap: 11px;
  padding: 17px;
}

.tbmp-profile-package-body h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
}

.tbmp-profile-package-body h3 a {
  color: var(--tbmp-ink);
  text-decoration: none;
}

.tbmp-profile-package-body p {
  margin: 0;
  color: var(--tbmp-muted);
  line-height: 1.55;
}

.tbmp-profile-package-features {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  color: #526079;
  font-size: 13px;
  list-style: none;
}

.tbmp-profile-package-features li {
  position: relative;
  padding-inline-start: 18px;
}

.tbmp-profile-package-features li::before {
  position: absolute;
  inset-inline-start: 0;
  color: var(--tbmp-primary);
  font-weight: 900;
  content: '✓';
}

.tbmp-profile-package-body footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 5px;
}

/* RTL */
[dir="rtl"] .tbmp-wrap,
[dir="rtl"] .tbmp-profile-packages {
  text-align: right;
}

[dir="rtl"] .tbmp-provider-arrow {
  transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 1180px) {
  .tbmp-single-hero {
    grid-template-columns: minmax(300px, 1fr) minmax(340px, 1.15fr);
  }

  .tbmp-summary-card {
    grid-column: 1 / -1;
  }

  .tbmp-summary-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .tbmp-summary-list > div {
    display: block;
    padding: 13px;
    border-inline-end: 1px solid var(--tbmp-border);
  }

  .tbmp-summary-list > div:last-child {
    border-inline-end: 0;
  }

  .tbmp-summary-list dd {
    max-width: none;
    margin-top: 5px;
    text-align: start;
  }

  .tbmp-summary-next-step {
    display: none;
  }

  .tbmp-mobile-request-shortcut {
    display: inline-flex;
  }
}

@media (max-width: 1050px) {
  .tbmp-filter {
    grid-template-columns: 1fr 1fr;
  }

  .tbmp-card-grid,
  .tbmp-related .tbmp-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tbmp-single-layout {
    grid-template-columns: 1fr;
  }

  .tbmp-inquiry-card,
  .admin-bar .tbmp-inquiry-card {
    position: static;
  }

  .tbmp-profile-package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tbmp-profile-packages-head {
    display: grid;
  }
}

@media (max-width: 760px) {
  .tbmp-single-hero {
    grid-template-columns: 1fr;
  }

  .tbmp-single-image {
    min-height: 320px;
  }

  .tbmp-single-intro {
    padding: 2px 0 0;
  }

  .tbmp-summary-list {
    grid-template-columns: 1fr 1fr;
  }

  .tbmp-summary-list > div:nth-child(even) {
    border-inline-end: 0;
  }

  .tbmp-hero-highlights {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .tbmp-wrap {
    padding: 24px 14px 72px;
  }

  .tbmp-archive-hero {
    padding: 24px;
  }

  .tbmp-filter,
  .tbmp-card-grid,
  .tbmp-related .tbmp-card-grid,
  .tbmp-profile-package-grid {
    grid-template-columns: 1fr;
  }

  .tbmp-filter-actions {
    display: grid;
    align-items: stretch;
  }

  .tbmp-single-image {
    min-height: 270px;
  }

  .tbmp-provider-card {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .tbmp-provider-card .tbmp-verified-badge {
    grid-column: 1 / -1;
  }

  .tbmp-summary-list {
    grid-template-columns: 1fr;
  }

  .tbmp-summary-list > div {
    border-inline-end: 0;
  }

  .tbmp-facts,
  .tbmp-service-grid,
  .tbmp-specialist-grid {
    grid-template-columns: 1fr;
  }

  .tbmp-facts > div:nth-child(odd) {
    border-inline-end: 0;
  }

  .tbmp-content-section,
  .tbmp-inquiry-card,
  .tbmp-related,
  .tbmp-disclaimer,
  .tbmp-profile-packages {
    padding: 20px;
  }

  .tbmp-card footer,
  .tbmp-profile-package-body footer {
    align-items: stretch;
    flex-direction: column;
  }

  .tbmp-card footer .tbmp-btn,
  .tbmp-profile-package-body footer .tbmp-btn {
    width: 100%;
  }
}
