/* Server-rendered catalog links: country -> brands, brand -> models. */
.seo-catalog-links {
  margin: 30px 0 8px;
}

.seo-catalog-links__inner {
  padding: 24px 26px;
  border: 1px solid #e6e6e8;
  border-radius: 18px;
  background: #f7f7f8;
  box-sizing: border-box;
}

.seo-catalog-links__title {
  margin: 0 0 16px;
  color: #151515;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.25;
}

.seo-catalog-links__items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.seo-catalog-links__item {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  max-width: 100%;
  padding: 8px 15px;
  border: 1px solid #d9dade;
  border-radius: 999px;
  background: #fff;
  color: #171717;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  box-sizing: border-box;
  transition: border-color .2s ease, color .2s ease, background-color .2s ease;
}

.seo-catalog-links__item:hover,
.seo-catalog-links__item:focus-visible {
  border-color: #e00000;
  background: #fff;
  color: #e00000;
  text-decoration: none;
}

@media (max-width: 767px) {
  .seo-catalog-links {
    width: 100vw;
    max-width: 100vw;
    margin: 20px 0 6px;
    overflow: hidden;
  }

  .seo-catalog-links .main {
    width: 100%;
    max-width: 100vw;
    min-width: 0;
    padding-right: 16px;
    padding-left: 16px;
    box-sizing: border-box;
  }

  .seo-catalog-links__inner {
    width: 100%;
    max-width: calc(100vw - 32px);
    min-width: 0;
    margin: 0 auto;
    padding: 18px 16px;
    border-radius: 14px;
  }

  .seo-catalog-links__title {
    margin-bottom: 13px;
    font-size: 21px;
  }

  .seo-catalog-links__items {
    width: 100%;
    min-width: 0;
    gap: 8px;
  }

  .seo-catalog-links__item {
    min-height: 36px;
    padding: 7px 12px;
    font-size: 14px;
  }
}
