/* Single practitioner sheet */

.fiche-hero {
  background: var(--green);
  color: #fff;
  padding: 38px 0 50px;
}
.fiche-hero h1 {
  color: #fff;
  font-size: 32px;
  margin-bottom: 26px;
}
.carousel {
  display: flex;
  align-items: center;
  gap: 16px;
}
.carousel__track {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.carousel__track img {
  width: 100%;
  height: 175px;
  object-fit: cover;
  border-radius: 10px;
}
.carousel__arrow {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
}
.fiche-hero__desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.6;
  max-width: 940px;
  margin-top: 24px;
}

/* Body */
.fiche-body {
  background: #eaedea;
  padding: 28px 0 60px;
}
.fiche-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 22px;
  align-items: start;
}
.fiche-main {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.card {
  background: #fff;
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: var(--shadow-card);
}
.card > h3 {
  font-size: 17px;
  margin-bottom: 16px;
}
.card--animaux {
  grid-column: span 2;
}
.card--services {
  grid-column: span 3;
}
.card--loc {
  grid-column: span 3;
}
.card--equipe {
  grid-column: span 2;
}

.subtitle {
  font-family: var(--font-title);
  font-weight: 700;
  font-stretch: 90%;
  font-size: 14px;
  color: var(--text);
  margin: 0 0 10px;
}
.icon-list {
  list-style: none;
  margin: 0 0 6px;
  padding: 0;
}
.icon-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #5b6463;
  font-size: 14px;
  padding: 4px 0;
}
.icon-list li img,
.icon-list li svg {
  width: 17px;
  height: 17px;
  opacity: 0.65;
  flex: 0 0 auto;
}
.card--animaux .subtitle {
  margin-top: 14px;
}

/* services 3 cols */
.svc-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1.05fr;
  gap: 20px;
}
.inst-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.inst-item .v {
  color: var(--grey-consult);
}

/* Contact card */
.card--contact .contact-btn {
  display: block;
  background: var(--green);
  color: #fff;
  border-radius: 12px;
  padding: 11px 12px;
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.3;
}
.card--contact .contact-btn .label {
  display: block;
  font-size: 12px;
  opacity: 0.85;
}
.card--contact .contact-btn .value {
  font-size: 15px;
  font-weight: 600;
}
.card--contact .btn--rdv {
  width: 100%;
  margin: 4px 0 16px;
  text-transform: uppercase;
  text-decoration: underline;
  font-size: 14px;
  letter-spacing: 0.3px;
}
.contact-social {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--grey-consult);
  font-size: 14px;
}
.contact-social svg {
  width: 20px;
  height: 20px;
  color: var(--green);
}

/* Localisation card */
.loc-addr {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #5b6463;
  font-size: 14px;
  margin-bottom: 14px;
}
.loc-addr svg {
  width: 16px;
  height: 16px;
  color: var(--coral);
}
.loc-grid {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 22px;
  align-items: start;
}
.loc-grid img {
  width: 100%;
  border-radius: 8px;
}
.hours-block {
  font-size: 14px;
  color: #5b6463;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  max-width: 230px;
  padding: 2px 0;
}
.hours-block .lbl {
  font-family: var(--font-title);
  font-weight: 700;
  font-stretch: 90%;
  color: var(--text);
  margin: 12px 0 4px;
}

/* Equipe card */
.member {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 12px;
}
.member .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-support);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  flex: 0 0 auto;
}
.member .m-name {
  font-size: 14px;
  color: var(--text);
  font-weight: 600;
}
.member .m-role {
  font-size: 13px;
  color: var(--muted);
}
.equipe-meta .lbl {
  font-family: var(--font-title);
  font-weight: 700;
  font-stretch: 90%;
  color: var(--text);
  margin: 14px 0 3px;
  font-size: 14px;
}
.equipe-meta .val {
  font-size: 14px;
  color: #5b6463;
}

@media (max-width: 980px) {
  .fiche-grid {
    display: flex;
    flex-direction: column;
  }
  .card--contact {
    order: -1;
  }
  .fiche-main {
    grid-template-columns: 1fr;
  }
  .card--animaux,
  .card--services,
  .card--loc,
  .card--equipe {
    grid-column: auto;
  }
  .carousel__track {
    grid-template-columns: 1fr;
  }
  .carousel__track img:nth-child(n + 2) {
    display: none;
  }
  .svc-cols {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .fiche-hero h1 {
    font-size: 26px;
  }
}

/* Report-an-error link on fiche */
.contact-report{display:block;margin-top:16px;font-size:13px;color:#8a8f8e;text-decoration:underline;text-align:center}
.contact-report:hover{color:var(--coral)}

/* Carousel arrows: only needed on mobile single-image mode */
@media (min-width:981px){ .carousel__arrow{display:none} }
