.tc-footer {
    background-color: var(--primary-500);
    color: #ffffff;
    padding: 56px 0;
}

.tc-footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 679px;
    margin: 0 auto;
    text-align: center;
}

.tc-footer__logo {
    display: inline-flex;
    align-items: center;
    color: #ffffff;
}

.tc-footer__logo img {
    height: 30px;
    width: auto;
    display: block;
}

.tc-footer__social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.tc-footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #ffffff;
    transition: opacity 0.2s ease;
}

.tc-footer__social a:hover,
.tc-footer__social a:focus {
    opacity: 0.75;
}

.tc-footer__social img {
    width: 24px;
    height: 24px;
    display: block;
}

.tc-footer__copy {
    font-size: 12px;
    line-height: 1.4;
    color: #ffffff;
    margin: 0;
}

@media (max-width: 767.98px) {
    .tc-footer {
        padding: 56px 0;
    }
    .tc-footer__inner {
        max-width: 100%;
    }
}
