/* TarinShow custom footer */
.ts-site-footer {
    width: 100%;
    margin-top: 48px;
    background: #15171c;
    color: #fff;
    direction: rtl;
}

.ts-site-footer-inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 48px 0 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
}

.ts-footer-column h3 {
    margin: 0 0 18px;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
}

.ts-footer-brand .ts-footer-logo {
    display: inline-block;
    margin-bottom: 12px;
    color: #fff;
    text-decoration: none;
    font-size: 25px;
    font-weight: 800;
}

.ts-footer-brand p {
    margin: 0;
    max-width: 360px;
    color: rgba(255,255,255,.72);
    line-height: 1.9;
    font-size: 14px;
}

.ts-footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ts-footer-column li {
    margin: 0 0 11px;
}

.ts-footer-column li:last-child {
    margin-bottom: 0;
}

.ts-footer-column a {
    color: rgba(255,255,255,.76);
    text-decoration: none;
    transition: color .2s ease;
}

.ts-footer-column a:hover,
.ts-footer-brand .ts-footer-logo:hover {
    color: #fff;
}

.ts-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.10);
}

.ts-footer-bottom-inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 18px 0;
    color: rgba(255,255,255,.55);
    font-size: 13px;
    text-align: center;
}

@media (max-width: 700px) {
    .ts-site-footer {
        margin-top: 32px;
    }

    .ts-site-footer-inner {
        width: min(100% - 32px, 560px);
        padding: 36px 0 30px;
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .ts-footer-brand .ts-footer-logo {
        font-size: 23px;
    }

    .ts-footer-bottom-inner {
        width: min(100% - 32px, 560px);
        line-height: 1.8;
    }
}
