.section-hero .central-container {
  width: 1118px;
}

.section-hero .breadcrumb {
  margin-bottom: 46px;
}

.section-hero h1 {
  color: var(--blue-900);
  margin-bottom: 24px;
}

.section-hero .learn-more {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.section-hero .learn-more p {
  font: var(--font-lg);
  color: var(--color-gray-800);
}

@media all and (max-width: 810px) {
  .section-hero .learn-more p {
    font: var(--font-md);
  }
  .section-hero .breadcrumb {
    margin-bottom: 24px;
  }
  .section-hero .learn-more {
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }
}

.section-treatments .central-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 1118px;
}

.section-treatments .search-input {
  display: block;
  padding: 20px 20px 20px 56px;
  font: var(--font-md);
  border-radius: var(--radius-secondary);
  width: 100%;
  color: var(--color-gray-700);
  border: 1px solid var(--color-gray-200);
  outline: none;
  position: relative;
  transition: all 0.3s ease;
}

.section-treatments .search-input::placeholder {
  opacity: 0.7;
  transition: none !important;
  text-indent: 0 !important;
  color: var(--color-gray-700);
}

.section-treatments .search-input:focus {
  border: 1px solid var(--color-gray-800);
}

.section-treatments .input-container {
  margin-bottom: 46px;
  position: relative;
}

.section-treatments .input-container:before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background: url('/assets/public/treatment/images/search-icon.svg') no-repeat 100%/100%;
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 1;
}

.section-treatments .search-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.section-treatments .not-found-message {
  padding: 12px 24px 36px 24px;
  grid-column: 1 / -1;
  text-align: center;
  font: var(--font-md);
  color: var(--color-gray-700);
  flex-direction: column;
  align-items: center;
  gap: 1.5em;
}

.section-treatments .search-card {
  padding: 8px 8px 8px 32px;
  gap: 20px;
  border-radius: var(--radius-primary);
  background: var(--color-gray-50);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.section-treatments .search-card h6 {
  margin-bottom: 0;
  padding-bottom: 0;
}

.section-treatments .search-card .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: var(--radius-secondary);
  z-index: 40;
  opacity: 0;
  transition: all 0.3s ease;
  object-fit: cover;
}

.section-treatments .search-card:hover .bg {
  opacity: 1;
}

.section-treatments .search-card > * {
  z-index: 50;
}

.section-treatments .search-card h6 {
  color: var(--color-blue-900);
  font: var(--font-md);
  font-weight: 500;
  text-decoration: none;
}

.section-treatments .search-card:hover h6 {
  color: var(--color-white);
}

.section-treatments .search-card .icon-wrapper {
  padding: 29px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-gray-200);
  border-radius: var(--radius-secondary);
}

.section-treatments .search-card:hover .icon-wrapper {
  background: rgba(255, 255, 255, 0.2);
}

.section-treatments .search-card .icon-wrapper img {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.section-treatments .search-card:hover .icon-wrapper img {
  filter: brightness(0) invert(1);
}

@media all and (max-width: 1200px) {
  .section-treatments .search-input {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .section-treatments .input-container {
    margin-bottom: 24px;
  }

  .section-treatments .input-container:before {
    top: 18px;
  }

  .section-treatments .search-results {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-treatments .search-card .icon-wrapper img {
    width: 24px;
    height: 24px;
  }

  .section-treatments .search-card .icon-wrapper {
    padding: 20px;
  }

  .section-treatments .search-card h6 {
    font-size: 16px;
  }
}

@media all and (max-width: 810px) {
  .section-treatments .search-results {
    grid-template-columns: repeat(1, 1fr);
  }
}
