/* Reset e Container */
.aw-main-list, .aw-main-list li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.aw-creative-wrapper {
    display: flex;
    width: 100%;
    align-items: stretch; /* Garantisce equal height tra le colonne */
    position: relative;
}

/* Colonna Sinistra (Lista) */
.aw-list-sidebar {
    width: 50%;
    padding: 40px 40px 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centra verticalmente la UL */
    border-right: 0.5px solid rgba(128,128,128,0.2);
}

.aw-sidebar-inner {
    width: 100%;
}

.aw-header-label {
    font-size: 13px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 20px;
}

.aw-list-row {
    border-bottom: 0.5px solid rgba(128,128,128,0.2);
}

.aw-list-row:last-child {
    border-bottom: none;
}

.aw-item-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    text-decoration: none !important;
    color: #121212;
    font-size: 19px;
    transition: 0.3s;
}

.aw-item-trigger:hover, .aw-item-trigger.is-active, .aw-item-trigger.is-open {
    color: #3577f1 !important;
}

/* Arrow Minimale */
.aw-custom-arrow {
    width: 8px;
    height: 8px;
    border-top: 0.8px solid #121212;
    border-right: 0.8px solid #121212;
    transform: rotate(45deg);
    transition: transform 0.3s ease, border-color 0.3s ease;
    flex-shrink: 0;
}

.aw-item-trigger:hover .aw-custom-arrow,
.aw-item-trigger.is-active .aw-custom-arrow {
    border-color: #3577f1;
}

.aw-item-trigger.is-open .aw-custom-arrow {
    transform: rotate(135deg);
    border-color: #3577f1;
}

/* Colonna Destra (Immagine) */
.aw-content-display {
    width: 50%;
    padding: 40px;
    display: flex;
    align-items: center; /* Centra verticalmente l'immagine */
    justify-content: center;
}

#aw-content-target {
    width: 100%;
    opacity: 0;
}

.aw-img-fluid {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

/* Accordion */
.aw-accordion-pane {
    display: none;
}

.aw-accordion-inner {
    padding: 0 0 25px 0;
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

/* Responsive */
@media (max-width: 991px) {
    .aw-creative-wrapper {
        flex-direction: column;
        max-height: none !important; /* Disabilita max-height su mobile */
    }
    .aw-list-sidebar, .aw-content-display { width: 100%; padding: 20px 0; }
    .aw-content-display { display: none !important; }
    .aw-list-sidebar { border-right: none; }
}
