.rs {
  padding: 0 0 40px;
}
.rs .page-title {
  margin-bottom: 24px;
}
.rs__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  margin-bottom: 22px;
}
.rs__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;
}
.rs__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;
}
.rs__filter:hover {
  background: var(--blue-500);
  border-color: var(--gray-300);
  color: var(--white);
}
.rs__filter:hover::before {
  filter: brightness(0) invert(1);
}
.rs__filter.is-active {
  border-color: var(--blue-500);
  background: var(--blue-500);
  color: var(--white);
}
.rs__filter.is-active::before {
  filter: brightness(0) invert(1);
}
.rs__filter-label {
  display: inline-block;
}
.rs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .rs__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.rs__more {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .rs__more {
    margin-top: 16px;
  }
}
.rs__more-button {
  min-width: 220px;
  justify-content: center;
}
.rs__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;
}
.rs__card {
  display: grid;
  gap: 18px;
  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;
}
.rs__card[hidden] {
  display: none;
}
.rs__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 2, 93, 0.12);
}
@media (max-width: 767.98px) {
  .rs__card {
    gap: 2px;
  }
}
.rs__content {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 22px;
  min-width: 0;
  height: 100%;
}
.rs__media {
  display: flex;
  flex-direction: column;
}
.rs__photo {
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  background: var(--gray-100);
  width: 65px;
  height: 65px;
}
.rs__photo:after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}
.rs__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rs__body {
  min-width: 0;
}
.rs__head {
  min-width: 0;
}
.rs__section-link {
  color: var(--blue-500);
  font-size: 1.3rem;
  line-height: 1.2;
  margin-bottom: 2px;
}
.rs__card-title {
  margin: 2px 0 0;
  color: #313233;
  font-size: 1.8rem;
  line-height: 1.05;
  font-weight: 500;
}
.rs__card-subtitle {
  margin-top: 2px;
  color: var(--gray-700);
  font-size: 1.4rem;
  line-height: 1.05;
  font-weight: 500;
}
.rs__description {
  margin-top: 10px;
  color: var(--gray-600);
  font-size: 1.4rem;
  line-height: 1.3;
}
@media (max-width: 991px) {
  .rs__description {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  .rs__description {
    display: none;
  }
}
.rs__price {
  margin-top: 0;
}
.rs__price-main {
  color: var(--gray-700);
  font-size: 1.4rem;
  line-height: 1.2;
  text-align: right;
  font-weight: 500;
}
@media (max-width: 575.98px) {
  .rs__price-main {
    font-size: 1.55rem;
  }
}
.rs__price-number {
  font-size: 1.7rem;
  line-height: 1.2;
  font-weight: 600;
  color: var(--text-primary);
}
@media (max-width: 575.98px) {
  .rs__price-number {
    font-size: 1.95rem;
  }
}
.rs__price-note {
  color: var(--gray-600);
  font-size: 1.4rem;
  line-height: 1.25;
  text-align: right;
}
@media (max-width: 575.98px) {
  .rs__price-note {
    font-size: 1.55rem;
    line-height: 1.3;
  }
}
.rs__actions {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  margin-top: 0;
}
@media (max-width: 991px) {
  .rs__actions {
    width: auto;
    justify-content: flex-end;
    gap: 10px;
  }
}
.rs__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);
}
.rs__action:hover {
  background: var(--blue-500);
  color: var(--white);
}
@media (max-width: 575.98px) {
  .rs__action {
    padding: 9px 14px;
    font-size: 1.55rem;
  }
}
.rs__footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
  margin-top: auto;
}
@media (max-width: 575.98px) {
  .rs__footer {
    gap: 14px;
  }
}

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