/**
 * Paragraph with Subheading Block - Académie des Étoiles
 */

.ade-paragraph-subheading { margin: var(--ade-space-xl) 0; }

.ade-paragraph-subheading__wrapper {
    /* Removed bulky white wrapper - clean minimal style */

    margin: var(--ade-space-xl) 0;
}

.ade-paragraph-subheading__container {
    display: flex;
    flex-direction: column;
    gap: var(--ade-space-sm);
}

/* Subheading */
.ade-paragraph-subheading__subheading {
    font-size: var(--ade-font-size-small);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ade-primary);
    margin: 0;
}

/* Content */
.ade-paragraph-subheading__content {
    font-size: var(--ade-font-size-base);
    line-height: 1.8;
    color: var(--ade-text);
}

.ade-paragraph-subheading__content p {
    margin: 0 0 var(--ade-space-md) 0;
}

.ade-paragraph-subheading__content p:last-child {
    margin-bottom: 0;
}

.ade-paragraph-subheading__content strong {
    font-weight: 600;
    color: var(--ade-primary-dark);
}

.ade-paragraph-subheading__content em {
    font-style: italic;
    color: var(--ade-gray);
}

/* Alignment variants */
.ade-paragraph-subheading--left {
    text-align: left;
}

.ade-paragraph-subheading--center {
    text-align: center;
}

.ade-paragraph-subheading--center .ade-paragraph-subheading__container {
    align-items: center;
}

.ade-paragraph-subheading--right {
    text-align: right;
}

.ade-paragraph-subheading--right .ade-paragraph-subheading__container {
    align-items: flex-end;
}

/* Style variants */

/* Highlighted */
.ade-paragraph-subheading--highlighted .ade-paragraph-subheading__wrapper {
    background: linear-gradient(135deg, rgba(155, 81, 224, 0.05) 0%, rgba(202, 179, 255, 0.05) 100%);
    border-left: 4px solid var(--ade-primary);
}

/* Bordered */
.ade-paragraph-subheading--bordered .ade-paragraph-subheading__wrapper {
    border: 2px solid rgba(155, 81, 224, 0.2);
}

/* Responsive */
@media screen and (max-width: 768px) {
    .ade-paragraph-subheading__wrapper {
        padding: var(--ade-space-lg);
    }

    .ade-paragraph-subheading__subheading {
        font-size: 0.75rem;
    }

    .ade-paragraph-subheading__content {
        font-size: 0.9375rem;
        line-height: 1.7;
    }
}
