/**
 * Footer Styles - Converted from Tailwind to Native CSS
 * 
 * @package Neofilm
 */

/* Footer Main Container */
.footer {
    background-color: #000000;
    position: relative;
    z-index: 100;
}

/* Footer Inner Container */
.footer__container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding-block: 60px;
}

@media (min-width: 768px) {
    .footer__container {
    }
}

@media (min-width: 1024px) {
    .footer__container {
    }
}

/* Footer Navigation */
.footer__navigation {
    margin-bottom: 1.25rem;
    overflow-x: auto;
}

/* Footer Menu */
.footer__menu {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    margin: 0;
    padding: 0;
}

@media (min-width: 768px) {
    .footer__menu {
        gap: 1rem;
    }
}

.footer__menu li {
    list-style: none;
}

.footer__menu a {
    text-decoration: none;
    color: inherit;
}

/* Footer Menu Links */
.footer__menu span {
    color: #888888;
    transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.footer__menu span:hover {
    color: #ffffff;
}

/* Footer Info Section */
.footer__info {
    min-height: 55px;
}

@media (min-width: 1024px) {
    .footer__info {
        padding-right: 300px;
    }
}

/* Footer List */
.footer__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .footer__list {
        gap: 0.75rem 1rem;
        max-width: 100%;
    }
}

/* Footer Items */
.footer__item {
    color: #888888;
    font-size: 0.75rem;
    line-height: 1.25rem;
    letter-spacing: -0.05em;
    flex-basis: calc(50% - 0.25rem);
}

@media (min-width: 768px) {
    .footer__item {
        font-size: 0.875rem;
        flex-basis: auto;
    }
}

/* Footer Links */
.footer__link {
    color: #888888;
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.75rem;
    margin-left: 0.25rem;
}

@media (min-width: 768px) {
    .footer__link {
        font-size: 0.875rem;
        margin-left: 0.5rem;
    }
}

/* Report Link Arrow */
.footer__link--report + span {
    display: inline-block;
    vertical-align: top;
    width: 0;
    height: 0;
    border: 4px solid transparent;
    border-left-color: #333333;
    margin-left: 7px;
    margin-top: 5px;
}

/* Social Links Container */
.footer__social {
    position: static;
    margin-top: 1.5rem;
    z-index: 0;
    display: flex;
    justify-content: center;
}

@media (min-width: 1024px) {
    .footer__social {
        position: absolute;
        margin-top: 0;
        top: 60px;
        right: -1px;
        justify-content: flex-end;
    }
}

/* Social Links */
.footer__social-link {
    display: inline-block;
    position: relative;
    color: #666666;
    font-size: 1.5rem;
    line-height: 1;
    letter-spacing: 0.1em;
    cursor: pointer;
    vertical-align: top;
    margin-right: 0.5rem;
    text-decoration: none;
}

@media (min-width: 768px) {
    .footer__social-link {
        font-size: 1.9375rem;
        margin-right: 0.75rem;
    }
}

/* Screen Reader Text for Social Links */
.footer__social-text {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}