/* ============= SEO PASS ADDITIONS =============
   Loaded after styles.css. Adds a utility class for converting
   background-image divs to real <img> tags (for Google Images
   indexing + alt text), plus positioning fixes on the containers
   that now hold those images. */

.bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bio__photo-mini {
  overflow: hidden;
}

.tam-strip > div:not(.tam-strip__caption) {
  position: relative;
  overflow: hidden;
}

.coaching__photo {
  position: relative;
  overflow: hidden;
}

/* FAQ section */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: clamp(24px, 4vw, 48px);
}

.faq__item {
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  padding: 18px 24px;
}

.faq__item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: clamp(1rem, 1.1vw, 1.15rem);
  list-style: none;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  float: right;
  font-weight: 400;
}

.faq__item[open] summary::after {
  content: "−";
}

.faq__item p {
  margin-top: 12px;
  opacity: 0.8;
  line-height: 1.6;
}
