/* 1. Base setup to match H1 styling (32px) */
.page_index_journal .homepage_about h2 {
    visibility: hidden;
    position: relative;
    /* Visual H1 styling */
    font-size: 32px;         /* Standard OJS H1 size */
    font-weight: 700;      /* Bold weight used in OJS themes */
    line-height: 1.2;
    margin-bottom: 20px;   /* Standard spacing below a main title */
    display: block;
}

/* 2. Add English "Welcome" */
.page_index_journal .homepage_about h2:lang(en):after {
    content: 'Welcome';
    visibility: visible;
    position: absolute;
    left: 0;
    top: 0;
}

/* 3. Add Portuguese "Bem-vindo" */
.page_index_journal .homepage_about h2:lang(pt):after {
    content: 'Bem-vindo';
    visibility: visible;
    position: absolute;
    left: 0;
    top: 0;
}
