/* CSS FOR FOOTER  */

/* Postscript block styles*/
footer .postscript-footer {
    background: #e9eef2; 
    border-top: 1px solid #d0d6db;
    color: #222;
    font-family: "Titillium Web", sans-serif;
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}

footer .postscript-inner {
    display: flex;
    gap: 0;
    max-width: 1200px; /* matches container sizing, adjust if needed */
    margin: 0 auto;
    padding: 18px 0;
}

/* Each column */
footer .ps-col {
    flex: 1 1 0;
    padding: 18px 28px;
    box-sizing: border-box;
    /* border-right: 1px solid rgba(0,0,0,0.06); */
}

/* Remove right border on last column */
footer .ps-col.ps-last {
    border-right: none;
    padding-right: 28px;
}

/* Headings */
footer .ps-col h2 {
    color: #c76416;
    font-size: 14.4px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0 0 10px;
    /* letter-spacing: .04em; */
}

/* Link list */
footer .ps-links,
footer .ps-social-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer .ps-links li {
    padding: 8px 0;
    border-bottom: 1px solid #f3c3a01e;
}

footer .ps-links li:last-child {
    border-bottom: none;
}

footer .ps-links a {
    color: #222;
    text-decoration: none;
    display: inline-block;
    padding-right: 6px;
}

footer .ps-links a:hover {
    color: #d86c00;
    text-decoration: underline;
}

/* Social column special styling */
footer .ps-col.ps-social {
    font-family: "Titillium Web", sans-serif;
    background: #d0d4d8; /* darker panel for social column */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex: 1;
    height: 100%;
}

/* Social list items with icons */
footer .ps-social-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
}

footer .ps-social-list img {
    width: 26px;
    height: 26px;
    display: inline-block;
}

/* Remove underline for social media links, keep keyboard focus visible */
footer .ps-social-list a,
#social-links-icons a {
    text-decoration: none;
    border-bottom: none;
    background-image: none; /* in case underline was implemented with a background */
    color: inherit;         /* keep text color consistent */
    display: inline-flex;
    align-items: center;    /* keeps icon + label vertically aligned */
    gap: 8px;
}

footer .ps-social-list a:focus-visible,
#social-links-icons a:focus-visible {
    outline: 3px solid rgba(216,108,0,0.18); /* subtle orange focus ring */
    outline-offset: 3px;
}

/* Social directory link at bottom */
footer .social-directory {
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 12px;
    padding-top: 8px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

footer .social-directory a {
    color: #222;
    text-decoration: none;
    font-size: 14.4px;
}


/* Responsive: stack columns on narrow screens */
@media (max-width: 760px) {
    .postscript-inner {
        flex-direction: column;
    }
    .ps-col {
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.06);
    }
    .ps-col.ps-last {
        border-bottom: none;
    }
}