/* ============================================================
   1. OCULTAR "EDIÇÃO ATUAL" DA PÁGINA INICIAL
   ============================================================ */

.current_issue {
    display: none !important;
}


/* ============================================================
   2. AJUSTAR AUTOMATICAMENTE O TÍTULO DA REVISTA
   ============================================================ */

/* Mantém o nome da revista em uma única linha */
.pkp_site_name {
    white-space: nowrap !important;
    max-width: 100% !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;

    /* Ajuste automático do tamanho da fonte */
    font-size: clamp(16px, 2.2vw, 32px) !important;

    /* Espaçamento vertical */
    line-height: 1.1 !important;
}


/* ============================================================
   AJUSTE DO LINK DO NOME DA REVISTA
   ============================================================ */

.pkp_site_name a {
    white-space: nowrap !important;
    max-width: 100% !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}


/* ============================================================
   AJUSTE PARA TELAS MENORES / CELULARES
   ============================================================ */

@media (max-width: 768px) {

    .pkp_site_name {
        font-size: clamp(14px, 4vw, 24px) !important;
        white-space: nowrap !important;
        max-width: 100% !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .pkp_site_name a {
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
}