
.structured-summary[data-v-24ab2818] {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.structured-summary--page-scroll[data-v-24ab2818] {
  height: auto;
  overflow: visible;
}

/* State Container (loading, error, empty) */
.state-container[data-v-24ab2818] {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 40px 20px;
}
.state-text[data-v-24ab2818] {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  text-align: center;
}
.state-text.text-error[data-v-24ab2818] {
  color: #F44336;
}

/* Sections Container */
.summary-sections[data-v-24ab2818] {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overscroll-behavior: contain;
}
.summary-sections--page-scroll[data-v-24ab2818] {
  overflow: visible;
  overscroll-behavior: auto;
}

/* Individual Section */
.summary-section[data-v-24ab2818] {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.section-header[data-v-24ab2818] {
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-icon[data-v-24ab2818] {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Category colors - subtle, matching app theme */
.cat-price[data-v-24ab2818] { background: rgba(33, 150, 243, 0.4);
}
.cat-analyst[data-v-24ab2818] { background: rgba(156, 39, 176, 0.4);
}
.cat-institutional[data-v-24ab2818] { background: rgba(255, 152, 0, 0.4);
}
.cat-financials[data-v-24ab2818] { background: rgba(76, 175, 80, 0.4);
}
.cat-business[data-v-24ab2818] { background: rgba(0, 188, 212, 0.4);
}
.cat-corporate[data-v-24ab2818] { background: rgba(96, 125, 139, 0.4);
}
.cat-other[data-v-24ab2818] { background: rgba(121, 85, 72, 0.4);
}
.section-title[data-v-24ab2818] {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Section Items */
.section-items[data-v-24ab2818] {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 32px;
}
.section-item[data-v-24ab2818] {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.sentiment-icon[data-v-24ab2818] {
  flex-shrink: 0;
  margin-top: 2px;
}
.item-text[data-v-24ab2818] {
  color: #e0e0e0;
  font-size: 0.95rem;
  line-height: 1.5;
  flex: 1;
}

/* Source link styling */
.source-link[data-v-24ab2818] {
  margin-left: 6px;
  opacity: 0.6;
  transition: opacity 0.2s;
  flex-shrink: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.source-link[data-v-24ab2818]:hover {
  opacity: 1;
}

/* Scrollbar - matching app style */
.summary-sections[data-v-24ab2818]::-webkit-scrollbar {
  width: 6px;
}
.summary-sections[data-v-24ab2818]::-webkit-scrollbar-track {
  background: transparent;
}
.summary-sections[data-v-24ab2818]::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
}
.summary-sections[data-v-24ab2818]::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* Responsive */
@media (max-width: 599px) {
.summary-sections[data-v-24ab2818] {
    padding: 12px;
    gap: 14px;
}
.section-items[data-v-24ab2818] {
    padding-left: 28px;
}
.item-text[data-v-24ab2818] {
    font-size: 0.9rem;
}
.state-container[data-v-24ab2818] {
    padding: 30px 16px;
}
}
