/* PKP Brand Footer */
.pkp_brand_footer {
    display: none;
}

/* Article Details */
.obj_article_details .abstract,
.obj_article_details .author_bios {
    text-align: justify;
}

/* General Paragraph Styling */
.pkp_structure_main p {
    text-align: justify;
    font-size: 1.1em;
}

/* Centered Row - Hide */
.row.justify-content-center.text-center {
    display: none;
}

/* Banner/Logo Maximum Height */
@media (min-width: 992px) {
    .pkp_site_name .is_img img {
        max-height: 200px;
    }
}

/* FOOTER AREA START */
/************************** Footer 4 Blocks & Mobile View *******************************/

/* General Font */
body {
    font-family: Arial, sans-serif;
}

/* Footer Background and Styling */
.pkp_structure_footer footer {
    background: linear-gradient(90deg, #dbdbdb, #f6f6f6);
    color: #5d776e;
    padding: 30px 0;
}

/* Footer Content */
.pkp_footer_content {
    padding: 0.2rem;
    text-align: left;
}

/* Footer Container Layout */
.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
}

/* Individual Footer Column Styling */
.footer-column {
    flex: 1;
    margin: 0 15px;
    padding: 10px;
    min-width: 200px;
    /* Ensures a minimum width for each column */
}

/* Footer Column Header Styling */
.footer-column h3 {
    font-size: 1.2em;
    color: #424242;
    border-bottom: 2px solid #424242;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

/* Footer Column Text and List */
.footer-column p,
.footer-column ul {
    margin: 0 0 15px;
    font-size: 0.9em;
}

/* Footer Column List Style */
.footer-column ul {
    list-style: none;
    padding: 0;
}

/* Footer Column List Item Style */
.footer-column ul li {
    margin-bottom: 8px;
}

/* Footer Links */
.footer-column ul li a {
    color: #5d776e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #000000;
    /* Hover color */
}

/* Social Icons */
.social-icons a {
    color: #ffffff;
    margin-right: 10px;
    text-decoration: none;
}

.social-icons a:hover {
    color: #000000;
}

/* Twitter Feed Style */
.twitter-feed {
    background-color: #444;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    color: #ffffff;
}

.twitter-feed p {
    margin: 0;
}

.twitter-feed a {
    color: #1DA1F2;
    text-decoration: none;
}

.twitter-feed a:hover {
    text-decoration: underline;
}

/* Responsive Footer for Small Screens */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        padding: 0 10px;
    }

    .footer-column {
        margin: 15px 0;
    }
}

/* Alt Footer Copyright Section */
.pkp_structure_footer footer .altfooter_copyright {
    background-color: #5d776e;
    color: #ffffff;
    font-family: Arial, sans-serif;
    font-size: 12px;
    padding: 10px 0;
    text-align: center;
}

/* Structure Footer Wrapper */
.pkp_structure_page .pkp_structure_footer_wrapper {
    background-color: #5d776e;
    border-bottom: 0.1rem solid #5d776e;
}

/* FOOTER AREA END */

/* General Links Color */
a {
    color: #0a5038;
}