/**
 * Statement D Block - Académie des Étoiles
 * Bold emphasis for conclusions and transformative statements
 */

.ade-statement--d {
    background: var(--ade-primary-dark);
    color: var(--ade-white);
    padding: var(--ade-space-2xl) var(--ade-space-2xl);
    border-radius: 12px;
    border-left: 5px solid var(--ade-primary);
    box-shadow: var(--ade-shadow-sm);
    position: relative;
}

/* Subtle accent line on the right */
.ade-statement--d::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, transparent 0%, var(--ade-primary) 50%, transparent 100%);
    border-radius: 0 12px 12px 0;
}

/* Optional title */
.ade-statement--d .ade-statement__title {
    font-size: var(--ade-font-size-medium);
    font-weight: 700;
    margin: 0 0 var(--ade-space-md) 0;
    color: var(--ade-primary-light);
    line-height: 1.3;
}

/* Content */
.ade-statement--d .ade-statement__content {
    font-size: var(--ade-font-size-base);
    line-height: 1.7;
    color: var(--ade-white);
}

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

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

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

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

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

    .ade-statement--d .ade-statement__title {
        font-size: 18px;
    }
}

/* Responsive - mobile */
@media screen and (max-width: 480px) {
    .ade-statement--d {
        padding: var(--ade-space-lg) var(--ade-space-md);
        border-left-width: 3px;
    }

    .ade-statement--d::after {
        width: 3px;
    }

    .ade-statement--d .ade-statement__title {
        font-size: 16px;
    }

    .ade-statement--d .ade-statement__content {
        font-size: 15px;
    }
}

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

    .ade-statement--d::after {
        display: none;
    }

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