.telegram-links-container {
}

.telegram-links-heading {
    margin-bottom: 20px;
    font-weight: 600;
    color: #222;
}

.telegram-links-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.telegram-links-button {
    display: inline-flex;
    align-items: center;
    padding: 12px 22px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.25s ease;
}

.telegram-links-channel-button {
    background: #0088cc;
    color: #fff;
    border: none;
}

.telegram-links-channel-button:hover {
    background: #007bb3;
    transform: translateY(-1px);
}

.telegram-links-chat-button {
    background: #fff;
    color: #0088cc;
    border: 2px solid #0088cc;
}

.telegram-links-chat-button:hover {
    border-color: #007bb3;
    color: #007bb3;
    transform: translateY(-1px);
}

.telegram-links-button svg {
    margin-right: 10px;
}