/*
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #f7f9fc, #eef1f7);
  padding: 60px;
  color: #1f2937;
}

.page {
  max-width: 1500px;
  margin: auto;
}

 FILTRY 
.filters {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 50px;
}

.filter {
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid #dce2ec;
  background: #ffffff;
  font-weight: 500;
  cursor: pointer;
  transition: .2s;
}

.filter.active {
  background: #e8edf7;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
  */

.specialist-row {
    width: 90% !important;
    max-width: 1400px !important;
}

/* GRID */
.specialist-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.specialist-list a {
  color: #2e7b76;
}

.specialist-list.singleEmployee {
  grid-template-columns: 1fr;
}

/* CARD */
.specialist-card {
  background: white;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(30, 41, 59, 0.06);
  transition: .2s;
}

.specialist-card:hover {
  box-shadow: 0 30px 60px rgba(30, 41, 59, 0.08);
}

.specialist-card.hidden {
  display: none;
}

@media screen and (max-width: 1150px) {
  .specialist-list {
    grid-template-columns: 1fr;
  }
  .specialist-card {
        margin: 0 -8%;
  }
}

.specialist-bio {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.specialist-info {
  flex: 1;
}

.specialist-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  box-shadow: 0 0 2px black;
}

.specialist-name {
  font-size: 15px;
  color: black;
  font-weight: 600;
}

.specialist-title {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 16px;
}

.specialist-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.specialist-badges span {
  background: #eef2ff;
  color: #4f46e5;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
}

.specialist-divider {
  height: 1px;
  background: #eceff5;
  margin: 20px 0;
}

.specialist-section-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1f2937;
}

.specialist-section-title-cta {
  font-size: 14px;
    color: gray;
    font-style: italic;
}

/* GODZINY */
.specialist-slots {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 15px;
  transition: opacity 0.3s ease;
}

.specialist-list {
  transition: opacity 0.3s ease;
}

.specialist-list .hidden {
  opacity: 0;
}

.specialist-slot,
.specialist-service,
.specialist-button {
  border-radius: 12px;
  border: 1.5px solid #c8d1dd;
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fb 100%);
  font-size: 13px;
  color: #1f2937;
  font-weight: 600;
  cursor: pointer;
}

.specialist-slot:hover,
.specialist-service:hover,
.specialist-button:hover {
  background: linear-gradient(180deg, #6fa7ff 0%, #2f78e6 100%);
  border: 1.5px solid #2d6fd3;
  color: #ffffff;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 2px 0 #245fb8,
    0 8px 18px rgba(47, 120, 230, 0.28);
}


.specialist-service {
  padding: 10px 16px;
  margin: 10px 0;
  font-weight: normal;
  width: 100%;
}

.specialist-slot {
  padding: 10px 14px;
}

.specialist-button {
  margin-top: 15px;
  padding: 12px;
  width: 100%;
}

.specialist-button-more-specialist {
    max-width: 400px;
    margin: 20px auto;
    display: block;
}

.specialist-date {
  font-size: 14px;
  font-weight: 600;
  margin: 10px 0;
}



.specialist-no-slots {
  margin-top: 12px;
  color: #6b7280;
  font-size: 14px;
  border-radius: 10px;
  padding: 5px 10px;
  text-align: center;
  background: #f2f2f2;
}