/* ===== ESPECIALISTA DETAIL ===== */
.bioclin-esp-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 20px 6rem;
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  box-sizing: border-box;
}

@media (max-width: 1024px) {
  .bioclin-esp-detail {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* Content */
.bioclin-esp-detail__content {
  display: flex;
  flex-direction: column;
}

.bioclin-esp-detail__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fdf2f2;
  color: #ad1917;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  width: fit-content;
  margin-bottom: 1.5rem;
}

.bioclin-esp-detail__title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #870007;
  margin: 0 0 0.5rem;
  line-height: 1.1;
}

.bioclin-esp-detail__cargo {
  font-size: 1.125rem;
  color: #5b403d;
  margin: 0 0 1.5rem;
}

.bioclin-esp-detail__desc {
  font-size: 1.0625rem;
  color: #5b403d;
  line-height: 1.7;
  margin: 0 0 2rem;
  max-width: 540px;
}

/* Buttons */
.bioclin-esp-detail__buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.bioclin-esp-detail__btn-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: #0a66c2;
  color: white;
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background 0.2s;
}

.bioclin-esp-detail__btn-linkedin:hover {
  background: #004182;
}

.bioclin-esp-detail__btn-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: transparent;
  color: #870007;
  font-size: 0.9375rem;
  font-weight: 700;
  border: 2px solid #870007;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.2s;
}

.bioclin-esp-detail__btn-back:hover {
  background: #fdf2f2;
}

/* Stat */
.bioclin-esp-detail__stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid #e9ecef;
}

.bioclin-esp-detail__stat-text {
  font-size: 0.9375rem;
  color: #5b403d;
  margin: 0;
}

/* Image column */
.bioclin-esp-detail__image-col {
  position: relative;
}

.bioclin-esp-detail__image-wrapper {
  border-radius: 1.5rem;
  overflow: hidden;
  background: #1a1028;
  aspect-ratio: 4 / 3;
}

@media (min-width: 1025px) {
  .bioclin-esp-detail__image-wrapper {
    aspect-ratio: auto;
    min-height: 420px;
  }
}

.bioclin-esp-detail__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bioclin-esp-detail__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2a1a30;
}

.bioclin-esp-detail__image-placeholder .material-symbols-outlined {
  font-size: 64px;
  color: rgba(255, 255, 255, 0.2);
}

/* Floating card */
.bioclin-esp-detail__floating-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1rem;
  right: 2rem;
  background: white;
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
  .bioclin-esp-detail__floating-card {
    left: 1rem;
    right: 1rem;
  }
}

.bioclin-esp-detail__floating-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: #870007;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.bioclin-esp-detail__floating-icon .material-symbols-outlined {
  font-size: 22px;
}

.bioclin-esp-detail__floating-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #191c1d;
  margin: 0 0 0.125rem;
}

.bioclin-esp-detail__floating-desc {
  font-size: 0.8125rem;
  color: #5b403d;
  margin: 0;
}

/* Editor */
.editor-styles-wrapper .bioclin-esp-detail {
  max-width: 100%;
}
