/**
 * Paragraph with Heading Block - Académie des Étoiles
 * Basic content block with heading and body text
 */

.ade-paragraph {
    padding: var(--ade-space-lg) var(--ade-space-xl);
    border-radius: 8px;
    position: relative;
}

/* Default style */
.ade-paragraph--default {
    background: var(--ade-white);
}

.ade-paragraph--default .ade-paragraph__heading {
    color: var(--ade-gray-dark);
    position: relative;
    padding-left: var(--ade-space-md);
}

.ade-paragraph--default .ade-paragraph__heading::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, var(--ade-primary) 0%, var(--ade-primary-dark) 100%);
    border-radius: 2px;
}

/* Highlight style - prominent, eye-catching */
.ade-paragraph--highlight {
    background: linear-gradient(135deg, rgba(155, 81, 224, 0.08) 0%, rgba(202, 179, 255, 0.15) 100%);
    border-left: 4px solid var(--ade-primary);
}

.ade-paragraph--highlight .ade-paragraph__heading {
    color: var(--ade-primary);
}

/* Accent style - warm, action-oriented */
.ade-paragraph--accent {
    background: linear-gradient(135deg, rgba(255, 105, 0, 0.05) 0%, rgba(207, 46, 46, 0.05) 100%);
    border-left: 4px solid var(--ade-accent-orange);
}

.ade-paragraph--accent .ade-paragraph__heading {
    color: var(--ade-accent-orange);
}

/* Subtle style - background information */
.ade-paragraph--subtle {
    background: var(--ade-gray-light);
    border-left: 2px solid var(--ade-gray);
}

.ade-paragraph--subtle .ade-paragraph__heading {
    color: var(--ade-gray-dark);
    font-weight: 600;
}

/* Heading */
.ade-paragraph__heading {
    font-size: var(--ade-font-size-medium);
    font-weight: 700;
    margin: 0 0 var(--ade-space-md) 0;
    line-height: 1.3;
}

/* Content */
.ade-paragraph__content {
    font-size: var(--ade-font-size-base);
    line-height: 1.7;
    color: var(--ade-gray-dark);
}

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

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

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

.ade-paragraph__content em {
    font-style: italic;
    color: var(--ade-primary-dark);
}

.ade-paragraph__content ul,
.ade-paragraph__content ol {
    margin: var(--ade-space-md) 0;
    padding-left: var(--ade-space-xl);
}

.ade-paragraph__content li {
    margin: var(--ade-space-sm) 0;
}

.ade-paragraph__content ul li {
    list-style-type: none;
    position: relative;
}

.ade-paragraph__content ul li::before {
    content: "▸";
    color: var(--ade-primary);
    font-weight: bold;
    position: absolute;
    left: -1.5rem;
}

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

    .ade-paragraph__heading {
        font-size: 18px;
    }

    .ade-paragraph--default .ade-paragraph__heading {
        padding-left: var(--ade-space-sm);
    }

    .ade-paragraph--default .ade-paragraph__heading::before {
        width: 3px;
    }
}

@media screen and (max-width: 480px) {
    .ade-paragraph {
        padding: var(--ade-space-md);
    }

    .ade-paragraph__heading {
        font-size: 16px;
    }

    .ade-paragraph__content {
        font-size: 15px;
    }
}

/* Print */
@media print {
    .ade-paragraph {
        break-inside: avoid;
        background: transparent !important;
        padding: var(--ade-space-md) 0;
    }

    .ade-paragraph--highlight,
    .ade-paragraph--accent,
    .ade-paragraph--subtle {
        border-left-width: 2px;
    }
}
