/* TDN Social Links Widget Styles
 * Designed to align with Front Row Vanguard / Trevor Decker News styling.
 */

.tdn-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.tdn-social-links__item {
    margin: 0;
}

.tdn-social-links__item a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 0.9rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border-color, #e5e5e5);
    background-color: var(--card-bg, #ffffff);
    color: var(--body-text, #222222);
    font-size: 0.875rem;
    line-height: 1.3;
    font-weight: 600;
    text-decoration: none;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.tdn-social-links__item a:hover {
    background-color: var(--tdn-red, #c00);
    color: #ffffff;
    border-color: var(--tdn-red, #c00);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04);
}

/* Mobile: make each button full-width for small screens */
@media (max-width: 480px) {
    .tdn-social-links {
        gap: 0.5rem;
    }

    .tdn-social-links__item {
        flex: 1 1 100%;
    }

    .tdn-social-links__item a {
        width: 100%;
        justify-content: center;
    }
}
