.au-page-wrapper {
    width: 100%;
    background: #ffffff;
}


.au-hero {
    margin-top: 79px !important;
    position: relative;
    width: 100%;
    background-color: #1a2847;
    background-image: url('https://joeblackentertainment.com/wp-content/uploads/2026/04/Banner-about-us.png');
    background-size: cover;
    /* Ancla la imagen un poco más arriba para no cortar la cabeza nunca */
    background-position: center 15%; 
    background-repeat: no-repeat;
    display: flex;
    align-items: center; /* Centrado vertical para equilibrar el texto */
    overflow: hidden;
}


@media (min-width: 768px) {
    .au-hero {
        aspect-ratio: 26 / 9; 
        min-height: auto; 
    }
}

.au-hero__overlay {
    position: absolute;
    inset: 0;
   
    z-index: 1;
}

.au-hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 60px 40px 60px 80px;
	margin-top: 280px;
}

.au-hero__title {
    margin: 0 0 20px;
    line-height: 1.05;
    font-weight: 700;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0 12px;
}

.au-title-1 {
    font-size: 35px;
    font-family: 'DelaGothicOne', sans-serif;
    color: #ffffff;
    font-weight: 700;
}

.au-title-2 {
    font-size: 35px;
    font-family: 'DelaGothicOne', sans-serif;
    color: #4A9FD8;
    font-weight: 700;
}

.au-hero__text {
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
    color: #ffffff;
    text-align: justify;
    max-width: 608px;
    font-family: 'Poppins';
}


.au-content {
    width: 100%;
    padding: 52px 80px 80px;
}

.au-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
    color: #333333;
    font-size: 15px;
}

.au-content h2 {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin: 48px 0 20px;
    color: #1a1a1a;
}

.au-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 32px 0 14px;
    color: #1a1a1a;
}

.au-content ul,
.au-content ol {
    padding-left: 0;
    list-style: none;
    margin: 0 0 24px;
}

.au-content ul li,
.au-content ol li {
    padding: 3px 0;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.6;
}

.au-content strong {
    font-weight: 700;
}


@media (max-width: 768px) {
    .au-hero {
        min-height: 450px !important; /* Altura fija para el móvil */
        background-position: 75% center !important; /* Movemos la foto para que se vea la cara */
        aspect-ratio: auto;
        background-image: url('https://joeblackentertainment.com/wp-content/uploads/2026/05/Banner-about-us_mobile.png');
		margin-top: 28px !important;
    }
    

    .au-hero__content {
        padding: 40px 20px;
        max-width: 100%;
        text-align: center; /* Todo centrado en móvil */
		margin-top: 255px;
    }
    
    .au-hero__title {
        justify-content: center;
    }
    
    .au-title-1,
    .au-title-2 {
        font-size: 40px;
    }
    
    .au-hero__text {
        text-align: center;
        margin: 0 auto;
    }
    
    .au-content {
        padding: 36px 20px 60px;
    }
}

@media (max-width: 480px) {
    .au-hero__content {
        padding: 24px 16px;
    }
    
    .au-title-1,
    .au-title-2 {
        font-size: 32px;
    }
    
    .au-content {
        padding: 28px 16px 48px;
    }
}