/* --- OJS Manuscript Child Theme Footer Customization --- */

.ojs-custom-footer {
    background-color: #2364A9;
    color: #ffffff;
    font-family: inherit;
    padding: 40px 20px 20px 20px;
    margin-top: 40px;
}

.ojs-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.ojs-footer-col {
    flex: 1;
    min-width: 250px;
}

.ojs-custom-footer h3 {
    color: #ffffff;
    font-size: 1.15rem;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.ojs-custom-footer p, 
.ojs-custom-footer li {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 8px;
    color: #f0f4f8;
}

.ojs-custom-footer a {
    color: #ffffff;
    text-decoration: underline;
    transition: opacity 0.2s ease;
}

.ojs-custom-footer a:hover {
    opacity: 0.8;
    color: #e2e8f0;
}

.ojs-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ojs-footer-links li {
    margin-bottom: 6px;
}

.ojs-footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    font-size: 0.85rem;
    color: #d1d5db;
}

/* Responsive design for tablets and mobile */
@media (max-width: 768px) {
    .ojs-footer-container {
        flex-direction: column;
        gap: 20px;
    }
}