.search-start {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 560px;
  padding: 34px 20px 0;
  color: var(--color-light);
  background: var(--color-dark);
  border: 1px solid rgba(244, 246, 244, 0.1);
}

.search-start__heading-row {
  display: flex;
  flex: 0 0 94px;
  align-items: flex-end;
  justify-content: space-between;
  width: calc(100% + 2px);
  margin-left: -1px;
}

.search-start__title {
  display: flex;
  flex-direction: column;
  max-width: 620px;
  margin: 0;
  font-size: 44px;
  font-weight: 600;
  line-height: 46.64px;
  letter-spacing: -0.66px;
  text-transform: uppercase;
  white-space: nowrap;
}

.search-start__title span:last-child {
  color: rgba(244, 246, 245, 0.6);
  font-weight: 400;
}

.search-start__lead {
  width: 268px;
  margin: 0;
  color: rgba(244, 246, 245, 0.55);
  font-size: 14px;
  font-weight: 400;
  line-height: 22.4px;
}

.search-start__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: calc(100% + 2px);
  height: 400px;
  margin-top: 32px;
  margin-left: -1px;
}

.search-start__card {
  position: relative;
  display: block;
  min-width: 0;
  height: 400px;
  overflow: hidden;
  border-radius: 16px;
}

.search-start__image,
.search-start__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.search-start__image {
  max-width: none;
  object-fit: cover;
}

.search-start__shade {
  background: linear-gradient(180deg, rgba(8, 12, 11, 0.1) 30%, rgba(8, 12, 11, 0.9) 100%);
}

.search-start__card-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
}

.search-start__badge {
  display: flex;
  align-items: center;
  height: 29.5px;
  padding: 0 12px;
  color: var(--color-light);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.32px;
  line-height: normal;
  text-transform: uppercase;
  white-space: nowrap;
}

.search-start__card-title {
  margin-top: 14px;
  color: var(--color-light);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.24px;
  line-height: 26.4px;
}

.search-start__description {
  margin-top: 8px;
  color: rgba(244, 246, 245, 0.75);
  font-size: 13px;
  font-weight: 400;
  line-height: 19.5px;
}

.search-start__more {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 26px;
  margin-top: 18px;
  color: var(--color-light);
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
}

.search-start__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: var(--color-yellow);
  border-radius: 50%;
}

.search-start__arrow img {
  width: 20px;
  height: 20px;
}

@media (max-width: 980px) {
  .search-start {
    height: auto;
    padding: 34px 20px 20px;
  }

  .search-start__heading-row {
    align-items: flex-start;
    gap: 28px;
  }

  .search-start__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: auto;
  }
}

@media (max-width: 640px) {
  .search-start__heading-row {
    flex: none;
    flex-direction: column;
    gap: 20px;
  }

  .search-start__title {
    font-size: 36px;
    line-height: 38px;
    white-space: normal;
  }

  .search-start__lead {
    width: min(100%, 268px);
  }

  .search-start__grid {
    grid-template-columns: 1fr;
  }

  .search-start__card {
    height: 400px;
  }
}
