.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.catalog-toolbar strong {
  color: #5a5a5a;
}
.services-list {
  border-radius: 12px;
}
.service-row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eeeeee;
}
.service-row:last-child {
  border-bottom: 0;
}
.service-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-marker > .icon {
  width: 21px;
  height: 21px;
}
.service-description {
  flex: 1;
  min-width: 0;
}
.service-description h3 {
  display: flex;
  gap: 12px;
  align-items: center;
}
.service-description p {
  line-height: 1.8;
  margin-top: 6px;
  max-width: 540px;
}
.service-duration {
  display: flex;
  gap: 6px;
  align-items: center;
  white-space: nowrap;
}
.service-duration > .icon {
  width: 14px;
  height: 14px;
}
.service-price {
  text-align: right;
  letter-spacing: -0.3px;
  white-space: nowrap;
}
.help-note {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 11px;
  line-height: 1.8;
  padding: 23px 4px;
}
.help-note > .icon {
  width: 17px;
  height: 17px;
  color: #8e8e8e;
  flex-shrink: 0;
}
.help-note > p {
  max-width: 650px;
}
.help-note > a {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  margin-left: auto;
  font-size: 10px;
  font-weight: 600;
}
.help-note > a > .icon {
  width: 14px;
  height: 14px;
}
.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.staff-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.staff-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 550;
  letter-spacing: -1px;
}
.staff-card > p {
  margin-top: 5px;
}
.staff-card-bottom {
  border-top: 1px solid #efefef;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.status-pill {
  font-size: 9px;
  color: #8b8b8b;
  display: flex;
  align-items: center;
  gap: 5px;
}
.status-pill i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #929292;
}
@media (max-width: 1150px) {
  .staff-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .help-note {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .help-note > p {
    flex: 1;
    font-size: 10px;
  }

  .help-note > a {
    margin-left: 28px;
    width: 100%;
  }

  .service-description h3 {
    flex-wrap: wrap;
    gap: 4px;
  }

  .service-duration > .icon {
    width: 12px;
    height: 12px;
  }

  .staff-card-bottom {
    flex-wrap: wrap;
    gap: 12px;
  }

  .staff-card .text-button {
    font-size: 10px;
  }
}
@media (max-width: 700px) {
  .catalog-toolbar {
    margin-top: 25px;
  }

  .service-row {
    display: grid;
  }

  .service-marker {
    grid-row: span 2;
  }

  .service-description {
    grid-column: 2;
  }

  .service-description p {
    margin-top: 4px;
  }

  .service-row > .icon-button {
    grid-column: 3;
    grid-row: 1/3;
  }

  .service-price {
    grid-row: 2;
    grid-column: 2;
    text-align: left;
  }

  .service-duration {
    grid-column: 2;
    grid-row: 2;
  }

  .staff-grid {
    gap: 12px;
  }

  .staff-card-bottom {
    gap: 10px;
  }

  .status-pill {
    font-size: 8px;
  }

  .help-note {
    font-size: 10px;
    gap: 10px;
    padding-top: 18px;
  }
}
.catalog-toolbar {
  font-size: 12px;
  margin: 34px 0 19px;
}
.services-list {
  display: grid;
  gap: 12px;
  border: 0;
  overflow: visible;
  background: none;
}
.service-row {
  background: #f4f5f2;
  border: 0;
  border-radius: 21px;
  padding: 26px;
  gap: 22px;
}
.service-marker {
  width: 53px;
  height: 53px;
  border-radius: 17px;
  background: #e3ebd8;
  color: #809a63;
}
.service-description h3 {
  font-size: 16px;
  letter-spacing: -0.4px;
}
.service-description p {
  font-size: 11px;
}
.service-duration {
  font-size: 11px;
  width: 91px;
}
.service-price {
  font-size: 17px;
  width: 110px;
}
.service-row > .icon-button {
  background: #fff;
  border-radius: 50%;
  margin-left: 12px;
}
.help-note > a {
  color: #7c995e;
}
.staff-card {
  border: 0;
  border-radius: 24px;
  background: #f3f5ef;
  padding: 24px;
}
.staff-card-top {
  margin-bottom: 25px;
}
.staff-card-top > .icon-button {
  background: #fff;
  border-radius: 50%;
}
.staff-avatar {
  width: 66px;
  height: 66px;
  border-radius: 19px;
  background: #e0ead2;
  color: #809d62;
  font-size: 24px;
}
.staff-card h3 {
  font-size: 20px;
}
.staff-card > p {
  font-size: 12px;
}
.staff-card-bottom {
  padding-top: 20px;
  margin-top: 28px;
  border-color: #e1ead6;
}
.status-active {
  color: #89a76c;
}
.status-active i {
  background: #a0bd80;
}
.service-description p {
  color: #7d8177;
}
.service-duration {
  color: #7d8177;
}
.help-note {
  color: #7d8177;
}
.staff-card > p {
  color: #7d8177;
}
.catalog-toolbar {
  color: #7d8177;
}
.service-price {
  color: inherit;
}
.service-description h3 {
  color: inherit;
}
.staff-card h3 {
  color: inherit;
}
@media (max-width: 1150px) {
  .service-row {
    gap: 17px;
    padding: 23px;
  }

  .service-price {
    width: 88px;
    font-size: 15px;
  }

  .service-duration {
    width: 78px;
    font-size: 10px;
  }

  .service-row > .icon-button {
    margin-left: 0;
  }
}
@media (max-width: 900px) {
  .service-row {
    padding: 20px 17px;
    gap: 13px;
  }

  .service-description h3 {
    font-size: 13px;
  }

  .service-description p {
    font-size: 10px;
  }

  .service-marker {
    width: 43px;
    height: 43px;
    border-radius: 13px;
  }

  .service-price {
    font-size: 14px;
    width: 68px;
  }

  .service-duration {
    font-size: 9px;
    width: 64px;
    gap: 5px;
  }

  .staff-card {
    padding: 21px;
  }

  .staff-card h3 {
    font-size: 18px;
  }

  .staff-card > p {
    font-size: 11px;
  }
}
@media (max-width: 700px) {
  .service-row {
    grid-template-columns: 42px 1fr 31px;
    gap: 8px 12px;
    padding: 20px 17px;
    border-radius: 19px;
  }

  .service-marker {
    width: 41px;
    height: 41px;
    border-radius: 14px;
  }

  .service-description h3 {
    font-size: 14px;
  }

  .service-description p {
    font-size: 10px;
  }

  .service-row > .icon-button {
    width: 31px;
    height: 31px;
  }

  .service-price {
    margin-left: 91px;
    width: auto;
    font-size: 13px;
  }

  .service-duration {
    font-size: 10px;
    width: auto;
  }

  .staff-card {
    padding: 18px;
    border-radius: 21px;
  }

  .staff-avatar {
    width: 49px;
    height: 49px;
    font-size: 18px;
    border-radius: 15px;
  }

  .staff-card h3 {
    font-size: 16px;
  }

  .staff-card > p {
    font-size: 10px;
  }

  .staff-card-top {
    margin-bottom: 21px;
  }

  .staff-card-bottom {
    margin-top: 22px;
    padding-top: 17px;
  }
}
.catalog-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-marker {
  overflow: hidden;
}
.staff-avatar {
  overflow: hidden;
}
.capacity-note {
  font-size: 12px;
  color: #6a775e;
  margin: 8px 0 18px;
}
