/* ═══════════════════════════════════════════════════════════
   social-icons.css
   Social media icon bar — footer only.
   Loaded site-wide via functions.php.
   ═══════════════════════════════════════════════════════════ */

/* ─── Footer reset ─── */

.site-footer {
    margin: 0 auto 40px !important;
}

/* ─── Label ─── */

.troqc-follow-label {
    font-family: var(--font-handwritten, 'Caveat', cursive);
    font-size: 36px !important;
    color: var(--text-secondary, rgba(0,0,0,0.55));
    text-align: center;
    margin-bottom: 12px;
    display: block;
}

/* ─── Container ─── */

.troqc-social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin: 0 auto 14px;
}

/* ─── Individual links ─── */

.troqc-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
    transition: opacity 0.2s ease, transform 0.2s ease;
    text-decoration: none !important;
    border: none !important;
    box-shadow: none !important;
}

.troqc-social-icons a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* ─── Icons ─── */

.site-footer .troqc-social-icons img {
    display: block !important;
    width: 64px !important;
    height: 64px !important;
    max-width: 64px !important;
    object-fit: contain !important;
}
