/* =========================================================
   PAROLEK – Názor specialisty (Martin Parolek)
   Ve stylu infoboxů: kulatá fotka vlevo, rohový L dekor
   se zkosenými konci. Dvě varianty: tyrkysová + šedá.
   ========================================================= */

.ec-expert {
  position: relative;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 28px;
  margin: 28px 0;
  border-radius: 12px;
  font-family: "Source Sans 3", system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #1D1D1D;
  overflow: hidden;
}

/* Rohový L dekor vlevo nahoře, konce zkosené přes clip-path */
.ec-expert::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 64px;
  pointer-events: none;
  clip-path: polygon(0px 0px, 64px 0px, 54px 10px, 10px 10px, 10px 54px, 0px 64px);
}

/* Kulatá fotka */
.ec-expert__photo {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  margin-top: 2px;
}
.ec-expert__photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
  border-radius: 50%;
  margin: 0 !important;
}

.ec-expert__body {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
}

.ec-expert__title {
  display: block;
  margin: 0 0 4px !important;
  padding: 0 !important;
  border: 0 !important;
  font-family: "Exo 2", system-ui, sans-serif !important;
  font-weight: 700 !important;
  font-size: 19px !important;
  line-height: 1.25 !important;
}

.ec-expert__name {
  display: block;
  font-family: "Exo 2", system-ui, sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.ec-expert p {
  margin: 0 0 10px !important;
  font-size: 15px;
  line-height: 1.6;
}
.ec-expert p:last-child { margin-bottom: 0 !important; }
.ec-expert strong { font-weight: 700; color: #1D1D1D; }
.ec-expert a { color: #1994A1; text-decoration: underline; }
.ec-expert a:hover { color: #00B1B1; }

/* --- Varianta TYRKYSOVÁ --- */
.ec-expert--tip {
  background: #E6F7F7;
}
.ec-expert--tip::before {
  background: #00B1B1;
}
.ec-expert--tip .ec-expert__title { color: #1994A1; }
.ec-expert--tip .ec-expert__name { color: #00B1B1; }

/* --- Varianta ŠEDÁ --- */
.ec-expert--neutral {
  background: #F5F5F5;
}
.ec-expert--neutral::before {
  background: #C0C0C0;
}
.ec-expert--neutral .ec-expert__title { color: #1D1D1D; }
.ec-expert--neutral .ec-expert__name { color: #606060; }

/* --- Responzivita --- */
@media (max-width: 768px) {
  .ec-expert {
    padding: 20px 22px;
    gap: 16px;
  }
  .ec-expert::before {
    width: 50px;
    height: 50px;
    clip-path: polygon(0px 0px, 50px 0px, 42px 8px, 8px 8px, 8px 42px, 0px 50px);
  }
  .ec-expert__photo {
    width: 56px;
    height: 56px;
  }
  .ec-expert__title { font-size: 18px !important; }
}

@media (max-width: 480px) {
  .ec-expert {
    flex-direction: column;
    padding: 20px 18px;
    gap: 12px;
    font-size: 14px;
  }
  .ec-expert__photo {
    width: 52px;
    height: 52px;
  }
  .ec-expert__title { font-size: 17px !important; }
  .ec-expert p { font-size: 14px; }
}