/* ============================================================
   FINKI – STAFF SINGLE (наставен кадар – единечна страница)
   (извадено од main.css без промени во правилата)
   ============================================================ */

/* =========================
   STAFF SINGLE LAYOUT
   ========================= */

.staff-single__inner{
  max-width: 1688px;
  margin: 0 auto;
  padding: 40px 24px;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

/* Left profile */
.staff-profile__card{
  background: #fff;
  border: 1px solid #e7e7e7;
}

.staff-profile__photo{
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #f2f2f2;
}

.staff-profile__photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.staff-profile__placeholder{
  width: 100%;
  height: 100%;
  background: #e0e0e0;
}

.staff-profile__email{
  display: block;
  padding: 10px 12px;
  /* font-size: 13px; */
  text-decoration: none;
  color: #2c3179;
  border-top: 1px solid #e7e7e7;
}

/* Right content */
.staff-name{
  margin: 0 0 14px;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.1;
}

/* Tabs */
.staff-tabs{
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  border-bottom: 1px solid #e6e6e6;
  margin: 0 0 18px;
}

.staff-tab{
  background: transparent;
  border: 0;
  padding: 10px 0;
  cursor: pointer;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #555;
  border-bottom: 3px solid transparent;
  font-family: 'Fira Sans';
  font-weight: 500;
}

.staff-tab.is-active{
  color: #2b92d0;
  border-bottom-color: #2b92d0;
}

.staff-tab-panel{
  display: none;
}

.staff-tab-panel.is-active{
  display: block;
}

.staff-empty{
  color: #777;
  margin: 0;
}

/* Responsive */
@media (max-width: 992px){
  .staff-single__inner{
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .staff-name{
    font-size: 34px;
  }
}



/* =========================
   STAFF CONSULTATIONS
   ========================= */
.staff-consultations{
  padding: 16px 12px 4px;
  border-top: 1px solid #e7e7e7;
  font-size: 16px;
  line-height: 1.45;
  color: #111;
}

.staff-consultations__title{
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.15;
  color: #111;
}

.staff-consultations__item{
  margin: 0 0 18px;
  padding: 0 0 18px;
  border-bottom: 1px solid #e7e7e7;
}

.staff-consultations__item:last-child{
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.staff-consultations__item p{
  margin: 0 0 4px;
}
