/**
 * Auto Link Inserter - Frontend CSS
 */

.auto-link-sns {
    margin-top: 40px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sns-group {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.sns-label {
    font-weight: bold;
    font-size: 15px;
    color: #333;
    min-width: 120px;
}

.sns-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.sns-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
}

.sns-twitter {
    background: #000;
    color: #fff;
    min-width: 60px;
}

.sns-twitter:hover {
    background: #333;
    color: #fff;
    transform: translateY(-2px);
}

.sns-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
}

.sns-instagram:hover {
    opacity: 0.9;
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .auto-link-sns {
        padding: 15px;
    }
    
    .sns-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .sns-label {
        min-width: auto;
    }
    
    .sns-links {
        width: 100%;
    }
    
    .sns-link {
        flex: 1;
        text-align: center;
    }
}