.c-search-bar {
  width: 100%;
}
.c-search-bar--header {
  padding: 0;
}
.c-search-bar--header .c-search-bar__form {
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}
.c-search-bar--header .c-search-bar__pill {
  position: relative;
}
.c-search-bar--header .c-search-bar__input {
  border-radius: 40px;
  padding: 14px 44px 14px 44px;
  font-size: 1rem;
  border: 1px solid #1c2024;
}
.c-search-bar--header .c-search-bar__icon {
  left: 14px;
  color: #1c2024;
}
.c-search-bar--header .c-search-bar__close {
  position: absolute;
  right: 130px;
  color: #1c2024;
  border: 1px solid #1c2024;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-search-bar--header .c-search-bar__close svg {
  width: 12px;
  height: 12px;
}
.c-search-bar--header .c-search-bar__submit {
  position: absolute;
  right: 3px;
  top: 3px;
  height: calc(100% - 6px);
  padding: 0 28px;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 600;
  background: var(--color-accent-content);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease;
}
.c-search-bar--header .c-search-bar__submit:hover {
  background: color-mix(in oklch, var(--color-accent-content) 85%, black);
}
.c-search-bar--page {
  background: #fff;
  padding-block: 32px 0;
}
.c-search-bar--page .c-search-bar__form {
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
}
.c-search-bar--page .c-search-bar__pill {
  position: relative;
}
.c-search-bar--page .c-search-bar__input {
  border-radius: 40px;
  padding: 14px 44px 14px 44px;
  font-size: 1rem;
  border: 1px solid #1c2024;
}
.c-search-bar--page .c-search-bar__icon {
  left: 14px;
  color: #1c2024;
}
.c-search-bar--page .c-search-bar__clear {
  position: absolute;
  right: 130px;
  color: #1c2024;
  border: 1px solid #1c2024;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  padding: 0;
  display: none;
  align-items: center;
  justify-content: center;
}
.c-search-bar--page .c-search-bar__clear.is-visible {
  display: flex;
}
.c-search-bar--page .c-search-bar__clear svg {
  width: 12px;
  height: 12px;
}
.c-search-bar--page .c-search-bar__submit {
  position: absolute;
  right: 3px;
  top: 3px;
  height: calc(100% - 6px);
  padding: 0 28px;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 600;
  background: var(--color-accent-content);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease;
}
.c-search-bar--page .c-search-bar__submit:hover {
  background: color-mix(in oklch, var(--color-accent-content) 85%, black);
}
.c-search-bar__suggest {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 100;
  background: #fff;
  border: 1px solid var(--color-base-300, #d1d5db);
  border-radius: 12px;
  margin-top: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.c-search-bar__suggest-list {
  list-style: none;
  margin: 0;
  padding: 4px;
}
.c-search-bar__suggest-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.12s ease;
}
.c-search-bar__suggest-item:hover, .c-search-bar__suggest-item.is-active {
  background: #f5f5f5;
}
.c-search-bar__suggest-item:hover .c-search-bar__suggest-primary, .c-search-bar__suggest-item.is-active .c-search-bar__suggest-primary {
  font-weight: 700;
  color: #ac0c22;
}
.c-search-bar__suggest-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  color: #333d48;
}
.c-search-bar__suggest-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.c-search-bar__suggest-primary {
  font-family: var(--primary-font, "Inter", sans-serif);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.4;
  color: #000c1a;
  transition: font-weight 0.12s ease, color 0.12s ease;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.c-search-bar__suggest-secondary {
  font-family: var(--primary-font, "Inter", sans-serif);
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.4;
  color: #333d48;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.c-search-bar__suggest-end {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  color: #333d48;
}
.c-search-bar__title {
  margin: 0 0 10px;
  color: var(--main-color-neutral-neutral, #1c2024);
  font-family: var(--main-fontFamily-primary, Inter);
  font-size: var(--tailwind-typography-size-lg, 18px);
  font-style: normal;
  font-weight: var(--tailwind-typography-weight-bold-700, 700);
  line-height: var(--tailwind-typography-lineHeight-leading-7, 28px);
}
.c-search-bar__form {
  position: relative;
  display: flex;
  gap: 8px;
  align-items: center;
}
.c-search-bar__pill {
  display: contents;
}
.c-search-bar__field {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}
.c-search-bar__icon {
  position: absolute;
  left: 10px;
  display: flex;
  align-items: center;
  color: var(--color-info, #5c6f80);
  pointer-events: none;
  z-index: 1;
}
.c-search-bar__input {
  width: 100%;
  padding: 10px 40px 10px 36px;
  border: 1px solid var(--color-base-300, #e5e7eb);
  border-radius: var(--radius-field);
  font-size: 0.9375rem;
  font-family: var(--primary-font);
  color: var(--color-base-content);
  background: var(--color-base-100, #fff);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.c-search-bar__input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--color-primary) 20%, transparent);
}
.c-search-bar__input::-webkit-search-cancel-button, .c-search-bar__input::-webkit-search-decoration {
  display: none;
}
.c-search-bar__clear {
  position: absolute;
  right: 8px;
  display: none;
  align-items: center;
  padding: 4px;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--color-info, #5c6f80);
  border-radius: var(--radius-field);
  transition: color 0.15s ease;
  z-index: 2;
}
.c-search-bar__clear.is-visible {
  display: flex;
}
.c-search-bar__clear:hover {
  color: var(--color-base-content);
}
.c-search-bar__close {
  display: flex;
  align-items: center;
  padding: 4px;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--color-info, #5c6f80);
  border-radius: var(--radius-field);
  transition: color 0.15s ease;
}
.c-search-bar__close:hover {
  color: var(--color-base-content);
}
.c-search-bar__submit {
  flex-shrink: 0;
}