.ph-author-box-container {
    font-family: 'Onest', sans-serif;
    width: 100%;
    max-width: 1200px;
    margin: 48px auto;
    padding: 0;
    box-sizing: border-box;
}
.ph-author-box-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.ph-author-info {
    display: flex;
    align-items: center;
    gap: 16px;
}
.ph-author-avatar-image .ph-author-avatar-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}
.ph-author-text-content {
    display: flex;
    flex-direction: column;
}
.ph-author-full-name {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    line-height: 1.5;
}
.ph-author-job-title {
    font-size: 16px;
    font-weight: 400;
    color: #333134;
    margin: 0;
    line-height: 1.3;
}
.ph-author-share-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}
.ph-share-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background-color: #EF781B;
    border-radius: 50%;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.ph-share-button:hover {
    transform: scale(1.1);
    opacity: 0.9;
}
.ph-share-button img {
    width: 44px;
    height: 44px;
}
.ph-author-box-divider {
    border: 0;
    height: 1px;
    background-color: #DCE4F0;
    margin-top: 48px;
}

@media(min-width: 922px){
    .ast-separate-container.ast-two-container.ast-left-sidebar #secondary {
        margin-top: 0;
    }
    .ast-separate-container.ast-right-sidebar #primary, .ast-separate-container.ast-left-sidebar #primary {
        margin-top: 0;
    }
}





/* --- Estilos para o Banner de Post Personalizado --- */
.ph-custom-post-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 500px;
    padding: 40px 20px;
    background-size: cover;
    background-position: center;
    background-color: #333; /* Fallback se não houver imagem */
    border-radius: 15px;
    position: relative;
    box-sizing: border-box;
    margin: 20px 0; /* Espaçamento opcional */
}

/* Gradiente escuro sobre a imagem */
.ph-custom-post-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 40%, #000000 100%);
    z-index: 1;
    border-radius: 15px;
}

/* Container do conteúdo do banner */
.ph-hero-content {
    position: relative;
    z-index: 2;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 900px;
}

/* Categoria */
.ph-hero-category:hover ,
.ph-hero-category {
    background: linear-gradient(95.89deg, #EF781B 2.89%, #FF6600 100.54%);
    border-radius: 10px;
    padding: 4px 12px;
    font-family: 'Onest', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    text-decoration: none;
}

/* Título */
.ph-hero-title {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.15;
    color: #FFFFFF;
    margin: 0;
}

/* Meta (data e autor) */
.ph-hero-meta {
    font-family: 'Onest', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ph-hero-date {
    color: #FFC95C; /* Cor laranja/amarela para a data */
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Ícone de calendário */
.ph-hero-date::before {
    /*
    content: '';
    display: inline-block;
    width: 22px;
    height: 22px;
    background-color: #FFFFFF;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M128 0c17.7 0 32 14.3 32 32V64H288V32c0-17.7 14.3-32 32-32s32 14.3 32 32V64h48c26.5 0 48 21.5 48 48v48H0V112C0 85.5 21.5 64 48 64H96V32c0-17.7 14.3-32 32-32zM0 192H448V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V192z'/%3E%3C/svg%3E");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    */
}

.ph-custom-post-banner {
    width: 100%; /* Garante que o banner ocupe a largura do .ast-container */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 450px;
    padding: 40px 20px;
    background-size: cover;
    background-position: center;
    background-color: #333;
    border-radius: 15px;
    position: relative;
    box-sizing: border-box;
    margin-bottom: 40px;
    margin: 0;
}

@media(min-width: 922px){
    body.single.single-post .ast-container {
        width: 100%;
    }
}