/* PM Section Label Block - Editor Styles */

.pm-section-label-editor {
    padding: 16px;
    border-radius: 8px;
}

.pm-section-label-editor .pm-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.pm-section-label-editor .pm-section-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 1px;
}

/* Light Background (default) */
.pm-section-label-editor.pm-section-label--light {
    background: #F9FAFB;
}

.pm-section-label-editor.pm-section-label--light .pm-section-label {
    color: #6B21A8;
}

.pm-section-label-editor.pm-section-label--light .pm-section-label::before {
    background: linear-gradient(90deg, #6B21A8, #EA580C);
}

/* Dark Background */
.pm-section-label-editor.pm-section-label--dark {
    background: linear-gradient(135deg, #1a1f36 0%, #0d1025 100%);
}

.pm-section-label-editor.pm-section-label--dark .pm-section-label {
    color: #D8B4FE;
}

.pm-section-label-editor.pm-section-label--dark .pm-section-label::before {
    background: linear-gradient(90deg, #D8B4FE, #F97316);
}

/* Alignment: Left (default) */
.pm-section-label-editor.pm-section-label--left {
    text-align: left;
}

.pm-section-label-editor.pm-section-label--left .pm-section-label {
    justify-content: flex-start;
}

/* Alignment: Center */
.pm-section-label-editor.pm-section-label--center {
    text-align: center;
}

.pm-section-label-editor.pm-section-label--center .pm-section-label {
    justify-content: center;
}

/* RichText placeholder */
.pm-section-label-editor.pm-section-label--light [data-rich-text-placeholder]::after {
    color: rgba(107, 33, 168, 0.5);
}

.pm-section-label-editor.pm-section-label--dark [data-rich-text-placeholder]::after {
    color: rgba(216, 180, 254, 0.5);
}
