/**
 * Editorial Footer Styling
 * Consistent with Editorial Theme Design
 */

/* ========================================
   INDEXED BY SECTION
   ======================================== */

.editorial-indexed-section {
    background-color: #fafafa;
    padding: 40px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    display: block !important;
    visibility: visible !important;
}

.indexed_by {
    display: block !important;
}

/* Hide indexed_by if it has .hidden class specifically */
.indexed_by.hidden {
    display: none !important;
}

/* ========================================
   FOOTER STYLING
   ======================================== */

.editorial-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 40px 0;
    margin-top: 0;
    clear: both;
    display: block !important;
    width: 100%;
    opacity: 1 !important;
    visibility: visible !important;
}

.editorial-footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.editorial-footer-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #cccccc;
}

.editorial-footer-text p {
    margin: 0 0 16px 0;
}

.editorial-footer-text a {
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.2s ease;
}

.editorial-footer-text a:hover {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

.editorial-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 16px;
}

.editorial-footer-copyright p {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    color: #999999;
}

.editorial-footer-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.editorial-footer-version {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 13px;
    color: #666666;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .editorial-footer {
        padding: 40px 0 30px 0;
    }
    
    .editorial-footer-content {
        gap: 32px;
    }
    
    .editorial-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .editorial-footer-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .editorial-footer {
        padding: 32px 0 24px 0;
    }
    
    .editorial-footer-copyright p {
        font-size: 13px;
    }
}
