.page.page_about {
    margin: 90px;
}

/* ============================================
   EPW Footer - Complete Style
   ============================================ */

.epw-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 35px 0 20px;
    font-family: Arial, Helvetica, sans-serif;
}

.epw-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Footer Grid - 4 Columns ===== */
.epw-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 0.7fr 1.4fr;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 25px;
}

/* ===== Brand Column ===== */
.epw-brand-col {
    padding-top: 3px;
}

.epw-brand {
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Times New Roman', Georgia, serif;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.epw-brand-description {
    color: #b0b0b0;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    max-width: 280px;
}

/* ===== Column Titles ===== */
.epw-col-title {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 12px 0;
    padding-bottom: 6px;
    border-bottom: 2px solid #c0392b;
    display: inline-block;
}

/* ===== Footer Lists ===== */
.epw-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.epw-footer-list li {
    margin-bottom: 5px;
    line-height: 1.5;
}

.epw-footer-list a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 12.5px;
    transition: color 0.2s ease;
}

.epw-footer-list a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* ===== Newsletter ===== */
.epw-newsletter-text {
    color: #b0b0b0;
    font-size: 12px;
    margin: 0 0 10px 0;
    line-height: 1.5;
}

.epw-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 280px;
}

.epw-newsletter-input {
    padding: 8px 12px;
    border: 1px solid #444;
    border-radius: 4px;
    background: #2a2a2a;
    color: #ffffff;
    font-size: 12px;
    outline: none;
    transition: border-color 0.2s ease;
}

.epw-newsletter-input:focus {
    border-color: #c0392b;
}

.epw-newsletter-input::placeholder {
    color: #888;
}

.epw-newsletter-btn {
    padding: 8px 20px;
    background: #c0392b;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
    align-self: flex-start;
}

.epw-newsletter-btn:hover {
    background: #a93226;
}

/* ===== Contact Section ===== */
.epw-contact-section {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 15px;
    text-align: center;
}

.epw-address {
    color: #b0b0b0;
    font-size: 12.5px;
    margin-bottom: 8px;
    line-height: 1.6;
}

.epw-contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 5px 8px;
    color: #b0b0b0;
    font-size: 12.5px;
}

.epw-contact-info a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.epw-contact-info a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.epw-sep {
    color: #555;
}

.epw-phone {
    display: inline-block;
}

.epw-email-item {
    display: inline-block;
}

/* ===== Footer Bottom ===== */
.epw-footer-bottom {
    text-align: center;
}

.epw-credit {
    color: #666;
    font-size: 11.5px;
    margin: 0;
}

.epw-credit a {
    color: #888;
    text-decoration: none;
    transition: color 0.2s ease;
}

.epw-credit a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* ============================================
   Responsive Design
   ============================================ */

/* Tablets */
@media (max-width: 1024px) {
    .epw-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 35px;
    }
    
    .epw-brand-col {
        grid-column: span 2;
    }
    
    .epw-brand-description {
        max-width: 100%;
    }
    
    .epw-newsletter-form {
        max-width: 100%;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .epw-footer {
        padding: 25px 0 15px;
    }
    
    .epw-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px 25px;
    }
    
    .epw-brand-col {
        grid-column: span 2;
        text-align: center;
    }
    
    .epw-brand {
        font-size: 32px;
    }
    
    .epw-brand-description {
        font-size: 11px;
        margin: 0 auto;
    }
    
    .epw-col-title {
        display: block;
        text-align: center;
        font-size: 11px;
    }
    
    .epw-footer-list {
        text-align: center;
    }
    
    .epw-footer-list a {
        font-size: 11.5px;
    }
    
    .epw-newsletter-text {
        text-align: center;
        font-size: 11px;
    }
    
    .epw-newsletter-form {
        max-width: 100%;
        align-items: center;
    }
    
    .epw-newsletter-btn {
        align-self: center;
    }
    
    .epw-address {
        text-align: center;
        font-size: 11px;
    }
    
    .epw-contact-info {
        justify-content: center;
        text-align: center;
        font-size: 11px;
        gap: 3px 6px;
    }
    
    .epw-credit {
        font-size: 10.5px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .epw-footer-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .epw-brand-col {
        grid-column: span 1;
    }
    
    .epw-brand {
        font-size: 28px;
    }
    
    .epw-col-title {
        font-size: 11px;
        display: inline-block;
    }
    
    .epw-footer-list {
        text-align: center;
    }
    
    .epw-footer-list a {
        font-size: 11px;
    }
    
    .epw-contact-info {
        flex-direction: column;
        gap: 3px;
        align-items: center;
    }
    
    .epw-sep {
        display: none;
    }
    
    .epw-email-item {
        display: block;
    }
}

/* ============================================
   OJS Overrides
   ============================================ */

.pkp_brand_footer {
    display: none !important;
}

.pkp_footer_content {
    padding: 0 !important;
    text-align: left;
}

.pkp_structure_footer_wrapper {
    background: #1a1a1a !important;
    border-top: 10px solid #c0392b !important;
}

.pkp_site_name_wrapper, .pkp_navigation_primary_wrapper, .pkp_navigation_user, .pkp_search_mobile, .pkp_structure_content, .pkp_structure_footer
 {
    position: relative;
    margin: 0px;
    padding-right: .714rem;
}


@media (min-width: 992px) {
    .pkp_structure_sidebar {
        float: right;
        width: 225px;
    }
}

@media (min-width: 1200px) {
    .pkp_site_name_wrapper, .pkp_navigation_primary_wrapper, .pkp_navigation_user, .pkp_search_mobile, .pkp_structure_content, .pkp_structure_footer {
        width: 100%;
    }
}

@media (min-width: 992px) {
    .pkp_navigation_user_wrapper {
        position: absolute;
        top: 0;
        left: 75%;
        transform: translateX(43%);
        padding-left: .714rem;
        padding-right: .714rem;
        text-align: right;
        padding-top: 0;
        margin-left: 145px;
        border-top: none;
        z-index: 1000;
    }
}


.pkp_site_name_wrapper {
    display: flex;
    gap: 20px;
    background-color: white;
    justify-content: end;
    align-items: end;
}

button.l-btn {
    width: 90px;
    height: 30px;
    border-radius: 25px;
    background-color: #d00101;
    border: none;
    color: white;
    font-size: 15px;
    margin-bottom: 10px;
}

@media (min-width: 1200px) {
    .has_site_logo .pkp_head_wrapper {
        width: 100%;
    }
}


@media (min-width: 992px) {
    .pkp_site_nav_menu {
        display: block;
        background-color: black;
    }
}


.pkp_structure_head{
    background-color: black;
    padding: 5px;
}

.pkp_navigation_primary_wrapper {
    padding: 5px;
}

.pkp_site_name {
    left: -374px;
}

@media (min-width: 992px) {
    .pkp_nav_list ul a {
        display: block;
        padding-left: .357rem;
        border-left: .357rem solid transparent;
        color: #d00101;
    }
}


.obj_article_summary {
    display: flex;
    flex-direction: column;
    width: 260px;
    height: 300px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
    transition: all .3s ease;
}

.obj_article_summary:hover{
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0,0,0,.18);
}

ul.cmp_article_list.articles {
    display: flex;
    gap: 20px;
}

.cover {
    min-height: 120px;
}

.obj_issue_toc .cover img {
    display: block;
    height: 100% !important;
    max-width: 100% !important;
}


@media(min-width: 992px) {
    .pkp_structure_main:first-child:last-child {
        margin-top: 0px;
    }
}


.page {
    margin-left: 120px;
    width: 80%;
    max-width: 100%;
    padding: 0;
}