/**
 * Statement A Block - Académie des Étoiles
 * Maximum emphasis for module introductions and critical statements
 */

.ade-statement--a {
    background: linear-gradient(135deg, var(--ade-primary) 0%, var(--ade-primary-dark) 100%);
    color: var(--ade-white);
    padding: var(--ade-space-3xl) var(--ade-space-xl);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(155, 81, 224, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern for visual interest */
.ade-statement--a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(202, 179, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

/* Optional title */
.ade-statement--a .ade-statement__title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 var(--ade-space-lg) 0;
    color: var(--ade-white);
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

/* Content */
.ade-statement--a .ade-statement__content {
    font-size: var(--ade-font-size-medium);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.ade-statement--a .ade-statement__content p {
    margin: 0 0 var(--ade-space-md) 0;
}

.ade-statement--a .ade-statement__content p:last-child {
    margin-bottom: 0;
}

.ade-statement--a .ade-statement__content strong {
    font-weight: 700;
    color: var(--ade-primary-light);
}

.ade-statement--a .ade-statement__content em {
    font-style: italic;
    color: var(--ade-primary-light);
}

/* Responsive - tablet */
@media screen and (max-width: 768px) {
    .ade-statement--a {
        padding: var(--ade-space-2xl) var(--ade-space-lg);
    }

    .ade-statement--a .ade-statement__title {
        font-size: 24px;
    }

    .ade-statement--a .ade-statement__content {
        font-size: 18px;
    }
}

/* Responsive - mobile */
@media screen and (max-width: 480px) {
    .ade-statement--a {
        padding: var(--ade-space-xl) var(--ade-space-md);
        border-radius: 12px;
    }

    .ade-statement--a .ade-statement__title {
        font-size: 20px;
    }

    .ade-statement--a .ade-statement__content {
        font-size: 16px;
    }
}

/* Print */
@media print {
    .ade-statement--a {
        background: transparent !important;
        border: 3px solid var(--ade-primary);
        box-shadow: none;
        padding: var(--ade-space-lg);
        page-break-inside: avoid;
    }

    .ade-statement--a::before {
        display: none;
    }

    .ade-statement--a .ade-statement__title,
    .ade-statement--a .ade-statement__content {
        color: var(--ade-gray-dark) !important;
    }
}
