/* Theme Name: Danilion Dossier Styles */

/* =========================================
   12. DOSSIER / PRESENTACIÓN
   ========================================= */
.dossier-main {
    padding-top: 0; 
}

.dossier-slide {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 20px;
    border-bottom: 2px solid #222;
}

.dossier-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.7); 
    z-index: 1;
}

.dossier-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.dossier-title {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 30px;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.1;
    overflow-wrap: break-word;
    word-break: break-word;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.dossier-text {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: #ffffff;
    line-height: 1.6;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
}

.dossier-text p {
    font-size: inherit;
    color: inherit;
    margin-bottom: 20px;
}

.dossier-text ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.dossier-text ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.dossier-text ul li::before {
    content: '■';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 1.2rem;
    line-height: 1;
}

.dossier-text strong {
    color: #fff;
    font-weight: 800;
}