/**
 * Labeled Graphic Block - Académie des Étoiles
 */

.ade-labeled-graphic { margin: var(--ade-space-2xl) 0; }

.ade-labeled-graphic__heading {
    font-size: var(--ade-font-size-xlarge);
    font-weight: 700;
    color: var(--ade-primary-dark);
    margin: 0 0 var(--ade-space-md) 0;
    text-align: center;
}

.ade-labeled-graphic__instruction {
    font-size: var(--ade-font-size-base);
    color: var(--ade-gray-dark);
    text-align: center;
    margin: 0 0 var(--ade-space-xl) 0;
}

.ade-labeled-graphic__container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--ade-space-xl);
    /* Removed bulky white wrapper - clean minimal style */

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

/* Image Wrapper */
.ade-labeled-graphic__image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.ade-labeled-graphic__image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Markers */
.ade-labeled-graphic__marker {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid var(--ade-white);
    border-radius: 50%;
    background: var(--ade-primary);
    color: var(--ade-white);
    font-weight: 700;
    font-size: var(--ade-font-size-base);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 5;
}

.ade-labeled-graphic__marker:hover {
    transform: translate(-50%, -50%) scale(1.15);
    background: var(--ade-primary-dark);
}

.ade-labeled-graphic__marker[aria-expanded="true"] {
    background: var(--ade-primary-dark);
    transform: translate(-50%, -50%) scale(1.2);
}

.ade-labeled-graphic__marker-label {
    position: relative;
    z-index: 2;
}

/* Marker pulse animation */
.ade-labeled-graphic__marker-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--ade-primary);
    opacity: 0.6;
    animation: marker-pulse 2s ease-in-out infinite;
}

@keyframes marker-pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0;
    }
}

.ade-labeled-graphic__marker--dots .ade-labeled-graphic__marker-label {
    display: none;
}

.ade-labeled-graphic__marker--dots {
    width: 20px;
    height: 20px;
    border-width: 2px;
}

/* Info Panel */
.ade-labeled-graphic__panel {
    position: relative;
    background: var(--ade-gray-light);
    border: 2px solid var(--ade-primary);
    border-radius: 12px;
    padding: var(--ade-space-xl);
    display: flex;
    flex-direction: column;
    min-height: 300px;
    transition: opacity 0.3s ease;
    box-shadow: var(--ade-shadow-md);
}

.ade-labeled-graphic__panel[hidden] {
    display: none;
}

.ade-labeled-graphic__panel-close {
    position: absolute;
    top: var(--ade-space-md);
    right: var(--ade-space-md);
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: var(--ade-gray);
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.ade-labeled-graphic__panel-close:hover {
    background: var(--ade-gray-light);
    color: var(--ade-gray-dark);
}

.ade-labeled-graphic__panel-content {
    display: flex;
    flex-direction: column;
    gap: var(--ade-space-md);
}

.ade-labeled-graphic__panel-title {
    font-size: var(--ade-font-size-large);
    font-weight: 700;
    color: var(--ade-primary);
    margin: 0;
    padding-right: var(--ade-space-xl);
}

.ade-labeled-graphic__panel-description {
    font-size: var(--ade-font-size-base);
    color: var(--ade-gray-dark);
    line-height: 1.7;
}

.ade-labeled-graphic__panel-description p {
    margin: 0 0 var(--ade-space-sm) 0;
}

.ade-labeled-graphic__panel-description p:last-child {
    margin-bottom: 0;
}

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

/* Responsive */
@media screen and (max-width: 1024px) {
    .ade-labeled-graphic__container {
        grid-template-columns: 1fr;
    }

    .ade-labeled-graphic__panel {
        min-height: 200px;
    }
}

@media screen and (max-width: 768px) {
    .ade-labeled-graphic__container {
        padding: var(--ade-space-lg);
    }

    .ade-labeled-graphic__marker {
        width: 36px;
        height: 36px;
        font-size: var(--ade-font-size-small);
    }

    .ade-labeled-graphic__panel {
        padding: var(--ade-space-lg);
    }

    .ade-labeled-graphic__panel-title {
        font-size: var(--ade-font-size-base);
    }

    .ade-labeled-graphic__panel-description {
        font-size: var(--ade-font-size-small);
    }
}
