/* Social Badge Styles to match LaunchIgniter */
.social-badge {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: transform 0.2s ease;
    border-radius: 6px; /* Match standard badge radius */
    border: 1px solid #e2e8f0; /* Subtle border like LaunchIgniter */
    background: white;
    padding: 6px 12px;
    height: 50px; /* Force same height */
    box-sizing: border-box;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    min-width: 160px; /* Ensure minimum width for consistency */
    gap: 10px;
}

.social-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Internal structure for custom badges (Peerlist/Founder Institute) */
.badge-logo {
    height: 28px; /* Fixed height for logos */
    width: auto;
    display: block;
}

.badge-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1;
    text-align: left;
}

.badge-label {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    color: #718096; /* Cool grey */
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.badge-brand {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #1a202c; /* Almost black */
    letter-spacing: -0.3px; /* Tighten for logo feel */
}

