.dnn-container-title:empty {
    display: none;
}

.dnn-container-content-raw {
    all: unset;
    display: block;
    width: 100%;
}

.dnn-container-raw {
    margin-bottom: 0;
    background: none;
    border: none;
    box-shadow: none;
}

.dnn-container-raw .dnn-container-content-raw {
    position: static;
}

/* AAPG Start */
.content-box p:last-child {
	margin-bottom: 0;
}
/* AAPG End */

@keyframes containerFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dnn-container-content {
    animation: containerFadeIn 0.3s ease-out;
}

@media (prefers-reduced-motion: reduce) {
    .dnn-container-content {
        animation: none;
    }
} 