/* --- FOOTER SECTION STYLES --- */

.pm-footer {
    background-color: #000000;
    width: 100%;
    position: relative;
}

/* Red Accent Bar at the very top */
.pm-footer-top-bar {
    width: 100%;
    height: 5px; /* Visual height of the red line */
    background-color: #E11B22;
}

.pm-footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 25px 20px; /* Vertical padding matching design */
}

.pm-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Common Typography */
.pm-footer-copyright, 
.pm-footer-designed {
    font-family: 'Neue Haas Grotesk Display Pro', 'Inter', 'Helvetica Neue', Arial, sans-serif;
    color: #ffffff;
    font-size: 14px;
    font-weight: 400; /* Regular weight for footer text */
    margin: 0;
    letter-spacing: 0.2px;
}

/* Designed by Link Styling */
.pm-footer-link {
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid #ffffff; /* Matches the white underline in design */
    padding-bottom: 1px;
    transition: opacity 0.3s ease;
}

.pm-footer-link:hover {
    opacity: 0.7;
}

/* --- MOBILE RESPONSIVENESS --- */

@media (max-width: 768px) {
    .pm-footer-container {
        padding: 20px 15px;
    }

    .pm-footer-content {
        flex-direction: column; /* Stack vertically on mobile */
        text-align: center;
        gap: 12px; /* Space between the two lines */
    }

    .pm-footer-copyright, 
    .pm-footer-designed {
        font-size: 13px; /* Slightly smaller for mobile screens */
    }
}