/* estilo-convocacao.css */

/* Container Principal Fixo */
.card-conteudo-wrapper {
    background: #ffffff;
    border-radius: 12px;
    padding: 36px 32px;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #e9ecef;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* Breadcrumb Sem Linhas */
.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #718096;
    margin-bottom: 16px;
}

.breadcrumb-nav a {
    color: #1b9be4;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-nav a:hover {
    color: #003063;
    text-decoration: underline;
}

.breadcrumb-separator {
    font-size: 0.8rem;
    color: #a0aec0;
}

/* Título da Página */
.page-title {
    font-size: 1.85rem;
    font-weight: 700;
    color: #003063;
    margin: 0 0 24px 0;
    padding: 0;
    border: none !important;
    line-height: 1.3;
}

/* Conteúdo CMS */
.cms-dynamic-content {
    color: #2d3748;
    line-height: 1.65;
    font-size: 1.1rem;
    width: 100%;
    box-sizing: border-box;
}

.cms-dynamic-content h3 {
    color: #003063;
    font-weight: 700;
    font-size: 1.3rem;
    margin-top: 28px;
    margin-bottom: 14px;
    border: none !important;
}

.cms-dynamic-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-align: justify;
}

/* Estilização de Listas Internas */
.cms-dynamic-content ul {
    margin-bottom: 24px;
    padding-left: 20px;
}

.cms-dynamic-content li {
    margin-bottom: 8px;
    font-size: 1.05rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .card-conteudo-wrapper {
        padding: 20px 16px;
    }

    .page-title {
        font-size: 1.4rem;
    }
}