/* ============================================================
   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;
    }
}

/* ============================================================
   3. TÍTULO "IDIOMA" IGUAL AO TÍTULO DOS OUTROS BLOCOS
   ============================================================ */

.pkp_block.block_language h2.title {
    color: #005b96 !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    text-transform: uppercase !important;
    border-bottom: 3px solid #162b59 !important;
    padding-bottom: 14px !important;
    margin-bottom: 20px !important;
}

