/* ================================================
   TSV FOOTER
   ================================================ */

#colophon,
.site-footer {
    background: var(--tsv-dark) !important;
    color: rgba(255,255,255,0.7);
    padding: 40px 0 16px !important;
    margin-top: 48px;
    border-top: 3px solid var(--tsv-primary);
}

.tsv-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    max-width: var(--tsv-max-width);
    margin: 0 auto;
    padding: 0 20px 32px;
}

.tsv-footer-col h4 {
    color: var(--tsv-white);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.tsv-footer-col p,
.tsv-footer-col li {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,0.65);
}

.tsv-footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.tsv-footer-col ul li a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.15s;
}
.tsv-footer-col ul li a:hover { color: var(--tsv-white); }

.tsv-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 16px 20px 0;
    max-width: var(--tsv-max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
}

.tsv-footer-logo img { height: 32px; width: auto; opacity: 0.7; }

/* Suppress parent theme footer elements */
.site-info { display: none !important; }

@media (max-width: 767px) {
    .tsv-footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .tsv-footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ── Feature band ── */
.tsv-feature-band {
    background: var(--tsv-dark);
    padding: 48px 0;
    margin-top: 64px;
}
.tsv-feature-band__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.tsv-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.tsv-feature-item__icon {
    width: 52px;
    height: 52px;
    background: var(--tsv-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}
.tsv-feature-item__title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    margin-bottom: 6px;
}
.tsv-feature-item__desc {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
}

/* ── Feature band links ── */
.tsv-feature-item--link {
    text-decoration: none;
    transition: background 0.15s, transform 0.15s;
    border-radius: 8px;
    padding: 16px;
    margin: -16px;
}
.tsv-feature-item--link:hover {
    background: rgba(255,255,255,0.06);
    transform: translateY(-2px);
    text-decoration: none;
}
.tsv-feature-item--link .tsv-feature-item__title {
    color: #fff;
    text-decoration: none;
}
.tsv-feature-item--link:hover .tsv-feature-item__title {
    color: var(--tsv-primary);
}
.tsv-feature-item--link .tsv-feature-item__desc {
    color: rgba(255,255,255,0.55);
}
.tsv-feature-item--link .tsv-feature-item__title::after {
    content: ' \2192';
    font-size: 13px;
    opacity: 0;
    transition: opacity 0.15s;
}
.tsv-feature-item--link:hover .tsv-feature-item__title::after {
    opacity: 1;
}

/* ── Footer contact list ── */
.tsv-footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 13px;
    color: rgba(255,255,255,0.60);
    line-height: 2;
}
.tsv-footer-contact a { color: rgba(255,255,255,0.60); text-decoration: none; }
.tsv-footer-contact a:hover { color: #fff; }

/* ── Social links ── */
.tsv-contact-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.tsv-contact-social a {
    font-size: 13px;
    font-weight: 600;
    color: var(--tsv-primary);
    text-decoration: none;
    padding: 6px 14px;
    border: 1px solid var(--tsv-primary);
    border-radius: var(--tsv-radius);
    transition: background 0.15s, color 0.15s;
}
.tsv-contact-social a:hover {
    background: var(--tsv-primary);
    color: var(--tsv-white);
}

@media (max-width: 768px) {
    .tsv-feature-band { padding: 32px 0; margin-top: 40px; }
    .tsv-feature-band__inner { grid-template-columns: 1fr; gap: 24px; padding: 0 20px; }
}
