/**
 * Footer Styles (loaded async, non-render-blocking)
 *
 * @package SportBet
 */

/* Footer wrapper */
.wrapper__footer.bg__footer-dark {
    background: #030303;
    color: #999;
    padding: 50px 0 0;
    font-size: 14px;
}

/* Footer widget titles */
.footer-widget-title {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 25px;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #2ecc71;
    border-radius: 2px;
}

/* Footer about */
.footer-about .footer-logo img {
    max-width: 200px;
    height: auto;
}

.footer-about-text {
    color: #999;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 13px;
}

.footer-email {
    color: #999;
    font-size: 13px;
}

.footer-email .fa {
    color: #2ecc71;
    margin-right: 8px;
}

.footer-email a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-email a:hover {
    color: #2ecc71;
}

/* Footer post list */
.footer__post-list {
    margin: 0;
    padding: 0;
}

.footer__post-item {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__post-item:last-child {
    border-bottom: none;
}

.footer__post-item a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__post-item a:hover {
    color: #2ecc71;
}

.footer__post-thumb {
    width: 70px;
    min-width: 70px;
    height: 50px;
    border-radius: 4px;
    overflow: hidden;
}

.footer__post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer__post-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 3px;
    color: #ccc;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.footer__post-date {
    font-size: 11px;
    color: #777;
}

.footer__post-date .fa {
    margin-right: 4px;
}

/* Footer navigation */
.footer-nav {
    margin: 0;
    padding: 0;
}

.footer-nav li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-nav li:last-child {
    border-bottom: none;
}

.footer-nav a {
    color: #999;
    font-size: 13px;
    transition: all 0.3s ease;
    display: block;
}

.footer-nav a:hover {
    color: #2ecc71;
    padding-left: 5px;
}

.footer-nav a::before {
    content: '\f105';
    font-family: 'FontAwesome';
    margin-right: 8px;
    color: #2ecc71;
}

/* Footer bottom bar */
.footer-bottom {
    background: #000;
    padding: 15px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: #777;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 767px) {
    .wrapper__footer.bg__footer-dark {
        padding: 30px 0 0;
    }

    .footer-widget-title {
        margin-bottom: 15px;
    }

    .footer-bottom {
        margin-top: 20px;
    }
}
