.content-section h1:not(.page-title) {
  font-size: 26px;
  font-weight: 600;
  margin-top: 60px;
  margin-bottom: 25px;
  text-align: center;
  color: var(--heading-color);
  position: relative;
  padding-bottom: 12px;
}

.content-section h1:not(.page-title)::after {
  content: "";
  display: block;
  width: 60px;
  height: 2.5px;
  background-color: var(--accent-color);
  margin: 10px auto 0;
  border-radius: 1px;
}

.usb-hero-description {
  max-width: 720px;
  margin: 12px auto 0;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--content-color);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

.content-section--intro .article-meta {
  display: none;
}

.component-showcase {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 50px;
}

.component-item {
  background-color: var(--header-bg);
  border: 1px solid var(--header-bg-border);
  border-radius: 18px;
  padding: 17px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.component-item:hover {
  border-color: var(--accent-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.component-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.component-header h3 {
  font-size: 17px;
  font-weight: 470;
  color: var(--heading-color);
  margin: 0;
  padding: 0;
  font-family: "geist", sans-serif;
}

.component-toggle-icon {
  font-size: 28px;
  font-weight: 300;
  color: var(--accent-color);
  transition: transform 0.3s ease;
  line-height: 1;
}

.component-item.active .component-toggle-icon {
  transform: rotate(45deg);
}

.component-details {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
    margin-top 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 0;
}

.component-item.active .component-details {
  opacity: 1;
  margin-top: 25px;
}

.component-details {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 25px;
  align-items: start;
}

@media (max-width: 768px) {
  .component-details {
    grid-template-columns: 1fr;
  }
}

.component-description {
  font-size: 16px;
  font-weight: 420;
  line-height: 1.85;
  color: var(--content-color);
  margin: 0;
}

.component-image {
  pointer-events: none;
}

.component-details .image-container-interactive {
  pointer-events: none;
}
