.cl {
  padding: 0 0 40px;
}
.cl .page-title {
  margin-bottom: 24px;
}
.cl__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  margin-bottom: 22px;
}
.cl__filter {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--blue-700);
  border-radius: 9px;
  padding: 6px 12px;
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.2s ease;
}
@media (max-width: 767.98px) {
  .cl__filter {
    font-size: 1.7rem;
  }
}
.cl__filter:not(.cl__filter--all)::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  background-image: var(--filter-icon);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.cl__filter:hover {
  background: var(--blue-500);
  border-color: var(--gray-300);
  color: var(--white);
}
.cl__filter:hover::before {
  filter: brightness(0) invert(1);
}
.cl__filter.is-active {
  border-color: var(--blue-500);
  background: var(--blue-500);
  color: var(--white);
}
.cl__filter.is-active::before {
  filter: brightness(0) invert(1);
}
.cl__filter-label {
  display: inline-block;
}
.cl__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  min-height: 180px;
}
@media (max-width: 991px) {
  .cl__grid {
    grid-template-columns: 1fr;
  }
}
.cl__grid.is-loading > :not(.cl__loader) {
  opacity: 0.35;
}
.cl__loader {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2px);
}
.cl__loader.is-hidden {
  display: none;
}
.cl__loader img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}
.cl__loader-text {
  font-weight: 500;
  font-size: 2rem;
  padding-left: 30px;
  color: var(--blue-700);
  font-weight: 500;
  white-space: nowrap;
}
.cl__empty {
  grid-column: 1/-1;
  padding: 24px;
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  background: var(--white);
  color: var(--gray-600);
  font-size: 1.6rem;
  text-align: center;
}
.cl__card {
  display: grid;
  gap: 24px;
  box-shadow: 0 8px 22px rgba(0, 2, 93, 0.08);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  padding: 18px;
  min-height: 0;
  text-decoration: none;
  color: inherit;
}
.cl__card[hidden] {
  display: none;
}
.cl__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 2, 93, 0.12);
}
.cl__media {
  display: flex;
  flex-direction: column;
}
.cl__photo {
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  background: var(--gray-100);
  height: 65px;
  width: 65px;
}
.cl__photo:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.cl__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cl__content {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 22px;
  min-width: 0;
  height: 100%;
}
.cl__head {
  min-width: 0;
}
.cl__section-link {
  color: var(--blue-500);
  font-size: 1.3rem;
  line-height: 1.2;
  margin-bottom: 2px;
}
.cl__card-title {
  margin: 2px 0 0;
  color: #313233;
  font-size: 1.8rem;
  line-height: 1.05;
  font-weight: 500;
}
@media (max-width: 767.98px) {
  .cl__card-title {
    font-size: 2rem;
  }
}
.cl__card-subtitle {
  margin-top: 2px;
  color: var(--gray-700);
  font-size: 1.4rem;
  line-height: 1.05;
  font-weight: 500;
}
.cl__description {
  margin-top: 10px;
  color: var(--gray-600);
  font-size: 1.4rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cl__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.cl__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 12px;
  background: var(--blue-50);
  color: var(--blue-700);
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: 500;
}
@media (max-width: 991px) {
  .cl__tag {
    font-size: 1.5rem;
  }
}
.cl__tag-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cl__tag-icon svg {
  width: 14px;
  height: 14px;
  fill: var(--blue-400);
}
.cl__tag-text {
  line-height: 1.2;
}
.cl__price {
  margin-top: 0;
}
.cl__price-main {
  color: var(--gray-700);
  font-size: 1.4rem;
  line-height: 1.2;
  text-align: right;
  font-weight: 500;
}
@media (max-width: 767.98px) {
  .cl__price-main {
    font-size: 1.8rem;
  }
}
.cl__price-number {
  font-size: 1.7rem;
  line-height: 1.2;
  font-weight: 600;
  color: var(--text-primary);
}
@media (max-width: 767.98px) {
  .cl__price-number {
    font-size: 2rem;
  }
}
.cl__price-note {
  color: var(--gray-600);
  font-size: 1.4rem;
  line-height: 1.25;
  text-align: right;
}
@media (max-width: 767.98px) {
  .cl__price-note {
    font-size: 1.8rem;
  }
}
.cl__actions {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  margin-top: 0;
}
@media (max-width: 991px) {
  .cl__actions {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }
}
.cl__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 8px 12px;
  border-radius: 12px;
  line-height: 1.5;
  font-size: 1.4rem;
  border: 1.5px solid var(--blue-500);
  background: transparent;
  color: var(--blue-500);
}
.cl__action:hover {
  background: var(--blue-500);
  color: var(--white);
}
@media (max-width: 767.98px) {
  .cl__action {
    font-size: 1.8rem;
    background: var(--blue-500);
    color: var(--white);
    border-color: var(--blue-500);
  }
}
.cl__footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin-top: auto;
}
@media (max-width: 991px) {
  .cl__footer {
    align-items: center;
  }
}

/*# sourceMappingURL=style.css.map */
