.object-faq {
  margin: 2.5rem 0;
}

.object-faq__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.object-faq__item {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  margin-bottom: .5rem;
  overflow: hidden;
  transition: border-color .2s;
  background-color: #fff;
}

.object-faq__item[open] {
  border-color: var(--color-primary);
}

.object-faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  width: 100%;
  padding: .875rem 1.125rem;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--color-secondary);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.object-faq__question::-webkit-details-marker { display: none; }
.object-faq__question::marker { content: ""; }

.object-faq__question::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-primary);
  transition: transform .2s;
  line-height: 1;
}

.object-faq__item[open] .object-faq__question::after {
  transform: rotate(45deg);
}

.object-faq__answer {
  padding: 0 1.125rem 1rem;
  font-size: .875rem;
  line-height: 1.7;
  color: var(--color-text-light);
}

.object-faq__answer p {
  margin: 0;
}

/* ── Sidebar FAQ ── */
.object-faq--sidebar {
  margin: 0;
}

.object-faq--sidebar .object-faq__item {
  border-radius: 8px;
  margin-bottom: .375rem;
}

.object-faq--sidebar .object-faq__question {
  padding: .625rem .875rem;
  font-size: .8125rem;
  line-height: 1.3;
}

.object-faq--sidebar .object-faq__answer {
  padding: 0 .875rem .75rem;
  font-size: .8rem;
  line-height: 1.5;
}

.sidebar-faq-block {
  margin-top: 1.25rem;
  padding-top: 1.125rem;
  border-top: 1px solid var(--color-border, #e5e7eb);
}

.sidebar-faq-block__title {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #9aa0a9;
  margin-bottom: .75rem;
}

/* ── Sidebar Share ── */
.sidebar-share-block {
  margin-top: 1.25rem;
  padding-top: 1.125rem;
  border-top: 1px solid var(--color-border, #e5e7eb);
}

.sidebar-share-block .object-share {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
}

.sidebar-share-block .object-share__buttons {
  gap: 6px;
}

.sidebar-share-block .share-btn {
  padding: 8px 11px;
  font-size: 12px;
  flex: 1 1 calc(50% - 3px);
  justify-content: center;
}

@media (max-width: 991px) {
  .sidebar-share-block .share-btn {
    flex: 1 1 auto;
  }
}
