/* =====================================================
   COMPOSITE PAGE VIEW
   Public-facing rendering of composite pages.
   Individual elements (feed cards, standard pages, page views)
   use their own existing styles.
   ===================================================== */

.composite-page {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.composite-page-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.composite-page-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.composite-page-elements {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.composite-page-element {
    /* No extra styling — elements render their own visuals */
}

.composite-element-missing {
    padding: 1.5rem;
    text-align: center;
    color: var(--text-secondary);
    background: #f9fafb;
    border-radius: 0.5rem;
    border: 1px dashed #e5e7eb;
}

.composite-element-missing i {
    margin-right: 0.5rem;
    color: #9ca3af;
}
